Leaderboard
Popular Content
Showing content with the highest reputation on 11/05/2016 in all areas
-
let me give you a pm on this because I don't want this thread to be another "firestorm" over something that can be handed privately.3 points
-
Welcome blesta 4 Lutfi Theme 100% free. Written more than 300 element and write with love Its clean design & powerful premium functionality allows you to creating profesional hosting site. Designed for starup hosting, small hosting company to save expenses Easy to change colors of elements, modify the parameters of elements, also you can add more shortcode from basic bootstrap element up to 100+ combination. Free But Premium Features? Completed HTML Demo File Powerful, Minimal and Clean Design Include features for hosting site Bootstrap 3.3.7 Super Responsive User-friendly & 100% validate Code Sticky Header Mega Menu Font Awesome icons Flat icons Themefy icons Fully customization Minimum Blesta 3.6.2 Download Lutfi Demo Main Site | Blesta Demo Ony Image More functionality & active support? This theme is free version from Kit Material Theme Note: Element not same with kit Need integration, customization or rebuild theme? please don't hesitate to contact us hendra@jawanet.com Or Submit Ticket1 point
-
Awesome! Thanks for the quick reply! If I get the patch working, I'll issue a pull request for you to review and consider in your future version release.1 point
-
Hi, Thanks for your feedback, cPanel extended has many bugs inherited from the ModulesGarden Version, We are working in new version with many of the functions rewriten from scratch using our Code Style like another Modules that we made from Scratch like SolusVM Extended. Everybody are welcome to make pull requests in the Github Repo.1 point
-
Looks really good Nice and clean looking.1 point
-
Two names for payment gateways
INUMIO-Rob reacted to Paul for a topic
Merchant payment gateways do not show the name. For example, the customer will never see "Authorize.net", but rather "Credit Card". So, I see this exclusively for non-merchant gateways, and the example of showing simply "PayPal" instead of "PayPal Payments Standard" and "Bitcoin" instead of "Bitpay" are excellent examples. If we have to localize the names of gateways, then that sort of pushes us toward language files. I'm not convinced that gateway names like "PayPal" or "2Checkout" translate well into other languages. Are they not known by their names in other languages? The simplest solution is to be able to set a single name to "override" the build in gateway name. So, for non-merchant gateways, we could potentially add a new field when managing the gateway called something like "Display Name", which would default to the gateway name. For PayPal, this might say "PayPal Payments Standard", but could be modified to say anything you want. Thoughts on this kind of implementation?1 point -
The anxiety is very much real :P
INUMIO-Rob reacted to Paul for a topic
Where did you get the logo? Something that mixes the idea of chemical and servers together would make more sense. For example, a test tube coming out of a rectangular box or something. Still, better than the old one1 point -
Is this possible?
INUMIO-Rob reacted to Michael for a topic
Thanks mate let's make a thread and upload it free to download now we've got a working one1 point -
Is this possible?
INUMIO-Rob reacted to Blesta Addons for a topic
now the template side, add a jquery request to fetch the numbers and add the response to a div class that has the id count_ticket . <div id="count_ticket">0</div> <?php $this->Javascript->setInline(' $(document).ready(function() { fetchCountTickets(); }); function fetchCountTickets() { $(this).blestaRequest("GET", "' . $this->Html->safe($this->base_uri . "plugin/count_tickets/main") . '", null, function(data) { if (data) $("#count_ticket").html(data); }, null, {dataType:"json"}); } '); ?>1 point -
Is this possible?
INUMIO-Rob reacted to Blesta Addons for a topic
controllers/main.php <?php /** */ class Main extends CountTicketsController { /** * Pre-action */ public function preAction() { parent::preAction(); $this->uses(["CountTickets.CountTicketsModel")); $this->client_id = $this->Session->read("blesta_client_id"); } /** * Portal Newe index */ public function index() { if ($this->isAjax()) { $response = $this->CountTicketsModel ->getCountTickets($this->client_id, "open"); // JSON encode the AJAX response $this->outputAsJson($response); return false; } return false; } }1 point -
Is this possible?
INUMIO-Rob reacted to Blesta Addons for a topic
models/count_tickets_model.php <?php class CountTicketsModel extends AppModel { /** * Constructor */ public function __construct() { parent::__construct(); // You Can Load Language here } /** * Retrieves ticket count * * @return string */ public function getCountTickets( $client_ticket_id, $status_opened ) { $ticket_numbers = $this->Record->select()-> from("support_tickets")-> where('client_id', $client_ticket_id)-> where('status', $status_opened)-> fetch(); return count($ticket_numbers); } }1 point -
Is this possible?
INUMIO-Rob reacted to Blesta Addons for a topic
count_tickets_controller.php <?php class MyTestController extends AppController { public function preAction() { $this->structure->setDefaultView(APPDIR); parent::preAction(); // Override default view directory $this->view->view = "default"; $this->orig_structure_view = $this->structure->view; $this->structure->view = "default"; } } count_tickets_model.php <?php class CountTicketsModel extends AppModel { } Next is coming1 point -
Is this possible?
INUMIO-Rob reacted to Blesta Addons for a topic
@Licensecart relax, take a pen and paper . cup of coffee ... i will teach you in 5 min !!!!!. create the fallowing directory files structure . count_tickets Lــــــــــ count_tickets_controller.php Lــــــــــ count_tickets_model.php Lــــــــــ controllers Lــــــــــ main.php Lــــــــــ models Lــــــــــ count_tickets.php next step is the content of each file .1 point -
Is this possible?
INUMIO-Rob reacted to Michael for a topic
yeah mate so we can show the tickets open on the structure page like client overview and maybe if we can get that sorted maybe be able to pull other content from the database like "How many active services" a client has active etc :).1 point -
Is this possible?
INUMIO-Rob reacted to Blesta Addons for a topic
The simple way is to create a simple plugin that fetch the request and show the result as json, then in your template just add a blestarequest ajax to fetch the data and show it in DIV . something like the balance credit of client in his profile .1 point