Jump to content

turner2f

Members
  • Posts

    614
  • Joined

  • Last visited

  • Days Won

    14

Reputation Activity

  1. Like
    turner2f got a reaction from Jono in How to Add "Quick Links" onto the Admin "Home" Dashboard   
    @Jono
    Works great.
    How do we make it so that the "target" is "Blank"  ?
    (  target="_blank"  )
    ===================
    Look forward to your reply.
  2. Like
    turner2f reacted to Jono in How do we prevent Weak C-Panel Passwords in Blesta ?   
    If cPanel allows weak passwords then I don't think Blesta should be stepping in and creating arbitrary restrictions.  The client could just as easily log in to cpanel and change their password to a weak one.  One thing we could be though is to make the password generator on the page which will let users automatically generate strong passwords.  https://dev.blesta.com/browse/CORE-3946
  3. Like
    turner2f reacted to Jono in How to Add "Quick Links" onto the Admin "Home" Dashboard   
    Visit the page and click the star icon just below the nav on the left side of the screen
  4. Thanks
    turner2f reacted to Jono in Need a " + " and " - " Sign to See Extra Billing Details on Client Dashboard   
    https://dev.blesta.com/browse/CORE-1935
  5. Like
    turner2f got a reaction from Michael in How to create your own Email Template within CKEditor   
    Happy to say that the issue is [ RESOLVED ].

    According to the Support post at . . .

    https://www.blesta.com/forums/index.php?/topic/14174-can-no-longer-add-an-email-template-for-wysiwyg-in-ck-editor/#comment-67637
     
    https://dev.blesta.com/browse/CORE-2871 Jono ( developer ) wrote: " We moved ckeditor to vendors/blesta/ckeditor. I wasn't directly involved but it looks like we did so in order to maintain some custom changes. "

    ___________________________________________
     
    As of September 17, 2020    (  In Blesta 4.11.2 )


    STEP 1 ) - So now you go to  /vendors/blesta/ckeditor/plugins/templates/templates/default.js


    STEP 2 ) - Make the code changes to add in your own template.

    ONLINE EXAMPLE:
    https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/templates/templates/default.js

    STEP 3 ) - If you do not physically see your new custom template from within the front-end 
                      WYSIWYG for CKEditor , try clearing your browser's cache.



    =========
    Here is a bonus link see some different examples on how you can use these Custom Templates  . . .
    https://youtu.be/wxTCJasKLYI

    Please  " Vote this Up "  if you like it. 
     
    ...
  6. Thanks
    turner2f got a reaction from Kal in Friendly URLs   
    I voted on it.
    Been wanting this.
  7. Like
    turner2f reacted to Kal in Friendly URLs (permalinks)   
    Friendly URLs are, in my opinion, an essential element of any content management system. No one likes a long, ugly URL. But more importantly, no one likes link rot—least of all the site owner who may lose their precious search engine rank when a URL changes. For this reason, a URL should never be dependant on the underlying platform. Here's an example of such a URL, from Blesta's Knowledge Base plugin:
    https://blesta.example.com/plugin/support_manager/knowledgebase/view/12/testing-your-website-before-it-goes-live/5/
    Aside from being unnecessarily long, the URL also includes the following, platform-specific data:
    Blesta's Knowledge Base is a 'plugin'. The plug-in is called 'Support Manager'. The article is the 12th one that was added to the database. The article belongs to the 5th category that was added to the database. Each of these is a point at which the URL is likely to break if and when the underlying software platform changes. A platform agnostic URL, or permalink, is a URL that should never change, and it's a critical element of website design/development. Tim Berners-Lee stated this firmly in the 1998 article, Cool URIs don't change, where he espoused the concept of URI design.
    I request that Blesta introduce a permalink feature, which is accessible via the UI, easy to use, and central to the design of the whole system. The Knowledge Base, perhaps, needs special attention, so that database table row IDs are never part of the article URLs. (routes.php does not fulfil these requirements.)
    Without this feature, the user must go to considerable effort to manually create many individual redirects using Apache configuration files or .htaccess files.
  8. Like
    turner2f reacted to Kal in Friendly URLs   
    I've now made this a feature request: Friendly URLs (permalinks).
  9. Haha
    turner2f got a reaction from Michael in Need a " + " and " - " Sign to See Extra Billing Details on Client Dashboard   
    Need a Tool Tip to See Extra Billing Details on Client Dashboard.

    SEE ATTACHED SCREENSHOT

     
     

  10. Like
    turner2f got a reaction from Joseph H in RE-Creating the "C-Panel Logins" link that was removed prior to 4.11.2   
    @Paul

    Or maybe just add a Tool Tip via a rollover so the client knows to click the bar.


    SEE ATTACHED SCREENSHOT.



     

  11. Like
    turner2f got a reaction from Jono in How to create your own Email Template within CKEditor   
    How to create your own Email Template within CKEditor

    I successfully created my own custom newsletter-style template, with its own graphical header within CKEditor

    This is for those of you wanting to know how to create your own custom HTML template when you go to  "Account Actions" - - > "Email Client" - - > from within your Admin panel
    =========================
    Within the CKEditor folder open up the Default JS file found at...
     
    /vendors/ckeditor/plugins/templates/templates/default.js
     
    ( as of september 17, 2020 in Blesta 4.11.2 this no longer the path. See the new path at . . . https://www.blesta.com/forums/index.php?/topic/10716-how-to-create-your-own-email-template-within-ckeditor/&do=findComment&comment=67645 ) ================
     
    Make certain to place every HTML tag and every line of text between two (2) commas ,  along with a plus-sign at the end of each of the ending-commas.
    FYI - The plus-sign should NOT come after the VERY LAST HTML tag.
    =========================

    CODE EXAMPLE:
                            '<span style="font-size:18px">'+
                            '<strong>'+
                            '<span style="color:#003366">'+
                            '<span style="font-family:Arial,Helvetica,sans-serif">'+
                            'Here is some sample text'+
                            '</span>'+
                            '</span>'+
                            '</strong>'+
                            '</span>'
     
    ========================
    ONLINE EXAMPLE:
    https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/templates/templates/default.js
    =========================
     
    If you do not see any changes from within the front-end  WYSIWYG for CKEditor , try clearing your browser's cache.
     
    Please  " Vote this Up "  if you like it.
     
     
  12. Like
    turner2f got a reaction from Jono in How to create your own Email Template within CKEditor   
    Happy to say that the issue is [ RESOLVED ].

    According to the Support post at . . .

    https://www.blesta.com/forums/index.php?/topic/14174-can-no-longer-add-an-email-template-for-wysiwyg-in-ck-editor/#comment-67637
     
    https://dev.blesta.com/browse/CORE-2871 Jono ( developer ) wrote: " We moved ckeditor to vendors/blesta/ckeditor. I wasn't directly involved but it looks like we did so in order to maintain some custom changes. "

    ___________________________________________
     
    As of September 17, 2020    (  In Blesta 4.11.2 )


    STEP 1 ) - So now you go to  /vendors/blesta/ckeditor/plugins/templates/templates/default.js


    STEP 2 ) - Make the code changes to add in your own template.

    ONLINE EXAMPLE:
    https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/templates/templates/default.js

    STEP 3 ) - If you do not physically see your new custom template from within the front-end 
                      WYSIWYG for CKEditor , try clearing your browser's cache.



    =========
    Here is a bonus link see some different examples on how you can use these Custom Templates  . . .
    https://youtu.be/wxTCJasKLYI

    Please  " Vote this Up "  if you like it. 
     
    ...
  13. Like
    turner2f got a reaction from Jono in Can No longer add an email template for WYSIWYG in CK Editor   
    @Jono
    Thank you SO much !

    I use this "template" function regularly .

    I will update my "Contribute" post to reflect this at . . .
     
    https://www.blesta.com/forums/index.php?/topic/10716-how-to-create-your-own-email-template-within-ckeditor/&do=findComment&comment=67645
    ?
  14. Like
    turner2f got a reaction from Kal in How do we PREVIEW the output of the Email Templates ?   
    How Do We Preview the Output of the  Email Templates ?

    We just had a situation where a "Payment Reminder" email went out and had our install URL path as the  web link for accessing the client area.
    Keep in mind that we did not alter this template.
    This was the default message.
    ============
    So is there a way to "trigger" the email to go out so that we can see ( or preview ) what its final output looks like for the email template ?
    This way we can make necessary changes immediately to any discrepancies we see.
    Look forward to your reply
  15. Like
    turner2f got a reaction from Paul in Can I upgrade from version 4.0.1 to 4.1.10 by just PATCHING an existing install   
    @paul
    Thanks a bunch.
    Looking forward to upgrading.

    I really like the recent features that have been added, and it seems the feature requests are now being actively worked on in faster succession.
    Thanks again.
  16. Like
    turner2f got a reaction from Blesta Addons in [Components] Html Invoice   
    It seems I will need to UP-Grade my version of Blesta first so that I can use the recommended ION Cube.
  17. Like
    turner2f reacted to si458 in [Plugin] Notification Center   
    a notification option for SMS by TextLocal would be amazing!
    http://api.txtlocal.com/docs/sendsms
    it would allow us to enter the clients mobile number and the platform then texts the client when bills are due, etc, just like the emails!
  18. Like
    turner2f reacted to Blesta Addons in [Plugin] Notification Center   
    i will add this to our todo list, and will reply when i get speaking with the guys.
    EDIT : this option is for clients and not admins or staff . i think this will need us to make more change in the plugin or write a new plugin for the SMS part.
  19. Like
    turner2f got a reaction from PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    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;  
     
  20. Like
    turner2f got a reaction from PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    *** 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" .

  21. Like
    turner2f got a reaction from PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    Thanks Paulo V. 
    Are there any screenshots of the new features ?
    Or is there a changelog concerning the updates so that we can test those features within the plugin once released ?
  22. Like
    turner2f got a reaction from PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    I second that thought.
    And thank you.
  23. Like
    turner2f got a reaction from PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    2ND Suggestion:
     
    https://www.blesta.com/forums/index.php?/topic/10945-is-there-a-way-to-only-send-ticket-response-to-the-contact-that-submitted-it/
    AND...
    https://www.blesta.com/forums/index.php?/topic/10737-reply-support-tickets-to-a-sub-account-email-get-sent-to-the-primarys-email-too/&do=findComment&comment=56848
     
  24. Like
    turner2f got a reaction from PauloV in [Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.   
    Welcome back Paulo V. 
    One significant suggestion would be for a WYSIWYG to be integrated  into the Support Ticket like...
    - Tiny MCE
    - CKEditor
    I believe Blesta already has CKEditor built in.
    Would be great if it could be used for the Support Manager Pro plugin
  25. Like
    turner2f reacted to Blesta Addons in [Module] Generic Domains   
    Generic Domain Module For Blesta
    we have released our first release of Generic Domain Module, the module is support almost all Extension list in the IANA website and use Whois Library that didn't require any Settings or Subscription;
    The client/ Admins can register or transfer domain .
    As the module isn't tie to any registrar, so no tabs for clients, and registration outside blesta should be done manually.
    this Module require a the Pro (Silver) subscription . Order Link
×
×
  • Create New...