Resource icon

NULLED WHMCS THEME Lagom-V2.2.5 2.2.5

No permission to download

Client Area​

  • New Compatibility with WHMCS 8.10.0 and 8.10.1.
  • Fix Resolved an issue where enabling the currency dropdown in the theme navigation caused search engines to index URLs with currency parameters. These links will no longer be indexed - Case #859.
  • Fix Resolved an issue where the icon for the notification menu item was missing when the notification list was empty - Case #864.
  • Fix Other minor appearance fixes.

Order Process​

  • New Compatibility with WHMCS 8.10.0 and 8.10.1.
  • Fix Resolved an issue with with price calculation, when domain addons were set to 0, and when the "Show TLD Cycle Switcher" option was enabled in our addon - Case #862.
  • Fix Fixed an issue where illustrations were missing on the domain configuration page when the "Display No Hosting Information More Prominently" option was enabled in our addon - Case #855.
  • Fix Other minor appearance fixes.
Author
ONFangeOne
First release
Last update

Ratings

5.00 star(s) 2 ratings

Latest Reviews

If you’re getting this error after activating the Lagom (or Lagoon) theme on WHMCS:



Error: Call to undefined method WHMCS\Utility\Captcha\LocalImage::getSiteKey()



Here’s the fix 👇

This happens because newer WHMCS versions (8.9+) changed how the captcha system works — the LocalImage type no longer has the method getSiteKey(), which older themes still try to call.



Open your theme’s file:

/templates/yourtheme/includes/head.tpl



Find this line:

recaptchaSiteKey = "{if $captcha}{$captcha->recaptcha->getSiteKey()}{/if}";



Replace it with:

{capture assign=recaptchaKey}
{if isset($captcha)
&& isset($captcha->recaptcha)
&& is_object($captcha->recaptcha)
&& method_exists($captcha->recaptcha,'getSiteKey')}
{$captcha->recaptcha->getSiteKey()}
{/if}
{/capture}
recaptchaSiteKey = "{$recaptchaKey}";


Then clear your template cache (in WHMCS admin: Utilities → System → Clear Template Cache) and reload the page. Or mannualy remove all files inside templates_c directory.



This makes the theme compatible with newer WHMCS versions — it will only use getSiteKey() if reCAPTCHA is active and won’t break when using LocalImage.
Works perfect with some knowledge
Back
Top