Jump to content

Juanzo

Member
  • Content Count

    288
  • Joined

  • Last visited

  • Days Won

    1

Juanzo last won the day on March 7 2019

Juanzo had the most liked content!

Community Reputation

2 Neutral

About Juanzo

  • Rank
    Level 2 Member

Recent Profile Visitors

2282 profile views
  1. We just recently found Product Data Feeds to easily maintain pricing updated at our WordPress. Just add a javascript and have the pricing printed! Does anyone know a way of removing decimals from the output? <script language="javascript" src="feeds/productsinfo.php?pid=1&get=price&billingcycle=monthly"></script> Not sure if there is a way via regex or maybe a native way.
  2. Module for CaribeHost works perfectly, hopefully it's updated for PHP 8 soon.
  3. It seems the feature request shows a 404 now, not even a feature request for this now? The inflation is growing everywhere, but imagine living in Argentina where it's always 2 digits yearly. This module worked fine but not yet for PHP 8, hopefully there is a native feature for this, to mass update the pricing of all services to match the price configured at the product.
  4. Not sure why there is lack of documentation available on this, and MailChimp seems to be the only alternative that is integrated without an external addon.
  5. Does the native official MailChimp integration works properly for abandoned cart emails? Surprised client sync is still manual, and that there are no automatic alternatives AFAIK: https://docs.whmcs.com/Mailchimp#Importing_Existing_Customers
  6. @VirtualWorldGlobal has a valid point. I understand this is a security feature, and I could understand some big hosting companies with outsourced support, that could need this. But on smaller teams, or on teams where only the owners of the hosting company reply to tickets, it makes things harder. It might sound strange but there are many people that have trouble resetting a password, maybe there is a way for future WHMcs updates to allow enabling this option again.
  7. At the latest version, there is no way to manually set a user's password? Indeed it makes hard for clients that have a hard time reseting passwords, maybe there must be a way to enable this.
  8. The old AutoRelease server module, which was removed on previous WHMcs versions, was useful to track services that have no integration with WHMcs. This was requested as a feature request, stating: Yet, I found no other way to track services we provide that have no integration with WHMcs. Any idea or alternative to group services with no server integration, same as we did before with the AutoRelease module?
  9. We are enjoying Crisp.chat as a front desk for our WHMcs support tickets (great since it integrates chat and social networks). Their integration with WHMcs made things easier, but now I'm trying to improve their code to be able to show actvice services for identified clients. Any ideas on how could we insert active services? This is their hook now: <?php if(!defined("WHMCS")) { die("This file cannot be accessed directly"); } use WHMCS\Database\Capsule; function hook_crisp_footer_output($vars) { $website_id = Capsule::table('tbladdonmodules')->where('module', 'crisp')->where('setting', 'website_id')->value('value'); if(!$website_id) { return; } $output = "<script type='text/javascript'> window.CRISP_READY_TRIGGER = function() { "; if ($vars['clientsdetails']['email']) { $email = $vars['clientsdetails']['email']; $output .= "\$crisp.set('user:email', '$email');"; } // First and last name if ($vars['clientsdetails']['firstname']) { $name = $vars['clientsdetails']['firstname'] . " " . $vars['clientsdetails']['lastname']; $output .= "\$crisp.set('user:nickname', '$name');"; } // Information apart from First & Lastname that should be imported. Must exist in the clientsdetails-array. if(isset($vars['clientsdetails'])) { $merge_fields = [ 'id', 'companyname', 'address1', 'address2', 'city', 'state', 'postcode', 'country', 'phonenumber' ]; foreach($merge_fields as $merge_field) { if(isset($vars['clientsdetails'][$merge_field])) { $output .= "\$crisp.set('session:data', ['" . $merge_field . "', '" . $vars['clientsdetails'][$merge_field] . "']);"; } } } $output .= "};</script> <script type='text/javascript'>CRISP_WEBSITE_ID = '$website_id';(function(){d=document;s=d.createElement('script');s.src='https://client.crisp.chat/l.js';s.async=1;d.getElementsByTagName('head')[0].appendChild(s);})();</script> "; return $output; } add_hook('ClientAreaFooterOutput', 1, 'hook_crisp_footer_output');
  10. Hopefully this kind of sad measures makes cPanel competition grow, and allow us to choose better alternatives in the future.
  11. Mind confirming if this works with latest WHMcs 7.7 and PHP 7.3? Does it involve overwriting the autorelease module or it's a folder added to addons directory?
  12. Good one @DewlanceHosting, It seems this has been requested before here. Upvoted!
  13. It seems search at the knowledgebase is done using POST, making it a little bit harder to link to specific searches, and tracking what people search with Google Analytics. This is what Google says about tracking POST searches, but I'm not sure if anyone else has done this. Knowing what people search at our help center can greatly help create more useful content, and helping clients help themselves.
  14. I'd love to know if there is an alternative for this as well. On the meantime, I'd advice everyone interested to vote here.
  15. Hopefully WHMcs marketplace keeps improving over time and reaches quality standards of other bigger, but not so focused marketplaces.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated