Jump to content

Ragonz

Member
  • Posts

    102
  • Joined

  • Last visited

About Ragonz

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Ragonz's Achievements

Senior Member

Senior Member (3/3)

2

Reputation

  1. Its early days yet but I suspect we will be moving away from WHMCS as well. Our price increase would be 8400%! per month
  2. Since the update to WHMCS 8.1 and using a new template I've not be able to work out how to redirect users on logout to a different page rather than index. The logout.tpl file no longer seems to exist and several hooks I've found online don't work either. I assume its to do with the new account system in 8.1. Does anyone know an easy way to set the page the logout button goes to for customers?
  3. Is it possible to create a hook that will produce a popup box on the order page of a product if the following are true product id = x config option 3 = >60 I was playing around with tooltips but they are not visible enough so having somthing pop out and have to be closed by the customer would be ideal but I'm not sure if thats possible
  4. The visit website button I've hidden for now, what I'd ideally like to do is have it only show up if the product they are looking at is a specified value, ie. if product being looked at is webhosting show visit website, if otherwise hide.
  5. much appreciated, based on the hook to hide the support bits I applied logic and did the addons one <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar) { $client = Menu::context('client'); if (!is_null($client) && !is_null($primaryNavbar->getChild('Services'))) { $primaryNavbar->getChild('Services')->removeChild('View Available Addons'); } }); I am learning (slowly) honest
  6. We have had to move away from the six template to the new twenty one template as I believe some old bits in our template was preventing googles inivisible recaptcha from working. However thats thrown up a bunch of new things we need to do, could anyone let me know a hook that would hide the following (anything with a red box around it) Also on each service page, remove these 2 highlighted boxes by default unless the product is a specific product ID
  7. This change seems to have stopped working since version 8, it now displays How do I go about making sure the biling cycle just displays
  8. as well excellent as always Brian 👍
  9. Hmm, is there a way to also display the tooltip over the icon as well?
  10. Is there a way to validate information customers sign up with against each other? We have swapped to fraudlabspro from maxmind and its picking up on things like the country code for phone number being incorrect (which is both a good and bad thing) so I'm looking for a way to say display to customers hold on a sec, you have selected your country as Brazil but your phone number country code is UK things like that Ideally I'm looking for a way to validate country against phone number country code and vice versa post/zipcode against country and vice versa
  11. Hi Brian Thank you very much for that, I was expecting more of a check this place and this place and maybe some code, not for you to do the whole thing for me (but I'm certainly not complaining) Real MVP over here you are 😄 I made a slight change to the configureproduct.tpl file <div class="form-group"><i class="fas fa-info-circle"></i> <label for="inputConfigOption{$configoption.id}" {if $configoption.tooltiptext}data-toggle="tooltip" data-placement="{$configoption.tooltipplace}" title="{$configoption.tooltiptext}"{/if}>{$configoption.optionname}</label> Just adds a little info icon to prompt people to hover over the text
  12. doh, totally missed that option, thanks Brian
  13. As we sell globally but are based in the UK we use UK date formats ie. DD/MM/YYYY however when we get US customers who are used to MM/DD/YYY I was wondering if there is a way we can show the dates as words (ie. 2nd March 2021 rather than 02/03/2021)
  14. Had numerous goes at this but simply cannot get it to work, I don't suppose anyone would be kind enough to point me in the right direction?
×
×
  • 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