Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/14/2018 in all areas

  1. The new version will include confirmation popovers on all irreversible action buttons, such as the "Delete" button. There is not yet available.
    1 point
  2. Check My admin tools plugin ; it has a feature to re activate a canceled service .
    1 point
  3. product out of stock shown but when in stock customer/subscriber received a mail. email field shown like: enter your email address to be notified when this server is back in stock:
    1 point
  4. TWO USEFUL TIPS: 1) - If you STILL see a two (2) Support Ticket widgets on the client dashboard you probably have the "User Manager Add-Ons" plugin installed and need to "disable" it. =============== 2) - If you want to dynamically connect your Admin Dashboard to read and display and URL link the ticket counter for the "Support Manager PRO" plugin... - You will need to open plugins/system_overview/controllers/admin_main.php - Change... $this->uses(['SupportManager.SupportManagerTickets']); $value = $this->SupportManagerTickets->getListCount('open'); $url = $this->base_uri . 'plugin/support_manager/admin_tickets/'; $icon = 'fa-ticket'; break; - To... //The 3 lines of codes below allows the admin to see how many tickets are open and also gives a link to the Admin ticket page. $this->uses(['SupportManagerpro.SupportManagerproTickets']); $value = $this->SupportManagerproTickets->getListCount('open') $url = $this->base_uri . 'plugin/support_managerpro/admin_tickets/'; $icon = 'fa-ticket'; break;
    1 point
  5. *** RESOLVED ( I believe )*** I believe this is a JS issue. And I believe I found the solution from within the forum ================== Please see... https://www.blesta.com/forums/index.php?/topic/2001-plugin-support-manager-pro-tickets-delete-merge-spam-multiple-tickets/&do=findComment&comment=41487 ================== To fix it just open the file /plugins/support_managerpro/support_managerpro_plugin.php Find on line 1233: if ($params['portal'] == "client") Replace with: if ($params['portal'] == "client" && $this->client) ================= So far everything is working fine using your NEW version on PHP 7.0 Thanks. You might consider adding this to YOUR version of "Support Manager PRO" .
    1 point
  6. People keep PM'ing me for download link for verison that works 5.6 and 7.0, so i am updating here to give download link, You can download here. I have made no other changes to this code than whats quoted in this thread by me and anothers, I DO NOT own this code, I DO NOT provide support for this plugin.
    1 point
  7. Here's the fix for the issues I've seen posted here so far, and have experienced personally. This runs just fine on PHP 5.x and 7.x, and Blesta 4.0. This requires some DB modifications and file changes so if you don't feel comfortable doing that you can either reach out to me for assistance or post here. The below is from a fresh install of the plugin. YMMV but I hope this at least helps bridge the gap between those who can and can't upgrade Blesta over a plugin. * When creating ticket, says ticket was created but no ticket actually shows * No tickets also show in admin panel * No ticket # is generated ERROR: ERROR 1364 (HY000): Field 'name' doesn't have a default value The same error occurred for the other 3 columns as well. CAUSE: The INSERT SQL is not using these columns, but they are marked as NOT NULL in the db, which is blocking the SQL from executing successfully. FIX: alter table support_ticketspro modify name varchar(255) null; alter table support_ticketspro modify reading varchar(255) null; alter table support_ticketspro modify readed varchar(255) null; alter table support_ticketspro modify cfields varchar(255) null; * Badge not rendering CAUSE: On the initial load of pages with the tab, there's validation to ensure that the user is a client or staff, where as the $this->{type} property does not exist. Which is causing PHP to throw an error. An alternative fix is to have property_exists($this, {type}) before the $this->{type} but seeing as how everyone is wanting to move to 4.x I decided to ignore that solution. FIX: Edit file support_managerpro_plugin.php Line 1209: remove "&& $this->staff" (property does not exist anymore on class) Line 1233: remove "&& $this->client" (property does not exist anymore on class) * Enabling this causes extra padding at top of page due to jQuery to get the ticket count due to response being full HTML page instead of expected single line, so instead of just rendering the badge data it's rendering a full HTML page CAUSE: I'm not really sure what the cause is here. It's basically an HTML page without any real content, but it was breaking the design. But, since this was an Ajax call being made anyways I don't know why the original author just did not go this route to begin with. The method has existed since Blesta 3.x FIX: Edit file support_managerpro_plugin.php Line 1218: change newRowCount.trim() to newRowCount.content.trim() Line 1223: repeat change above Line 1242: repeat change above Line 1247: repeat change above Edit file controllers/admin_tickets_count.php At end of index() method add this: return $this->renderAjaxWidgetIfAsync(true); Edit file controllers/client_tickets_count.php At end of index() method add this: return $this->renderAjaxWidgetIfAsync(true);
    1 point
  8. LogicBoxes Extended LogicBoxes Extended For Blesta is a module created specially for LogicBoxes API to enable you to automate the provisioning and management of domains in your Blesta system. With its help you will be able to set up your TLDs & gTLDs with just a few clicks to start reselling them to your customers right away! Features: Edit All The Contact Information (Whois) Change Name Servers Set Forwarder Set Child Name Servers Get Authorization Code Change Authorization Code Ability To Sell Private Whois (Using Options) Automatic Synchronization of Expire Date for Transfered Domains DNS Manager Versions: Update 1.0: First Version Released. Update 1.1: Optimized for Blesta 4.0. Update 1.2: DNS Manager NOTE: If you want sell "Private Whois", you need add a Option like the following screenshoot. Screenshots: Download: LogicBoxes Extended is available in the Blesta Marketplace for only $49.99 per year or $199.99 one time and you can order here https://marketplace.blesta.com/#/extensions/32-LogicBoxes Extended
    1 point
×
×
  • Create New...