Jump to content

upalm

Member
  • Posts

    35
  • Joined

  • Last visited

About upalm

Recent Profile Visitors

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

upalm's Achievements

Member

Member (2/3)

8

Reputation

  1. https://github.com/cloudlinkd-networks/WHMCS-WhatsApp-Notification Features Client Sign-In Notice. New Client Registration Alert Client Password Update Warning Customizable Message Configuration & Alert Templates Invoice Generation Alert Payment Confirmation Notice Invoice Due Reminder Initial Overdue Invoice Warning Second Overdue Invoice Alert Final Overdue Invoice Notification Service Activation Notice Service Suspension Alert Service Reactivation Notice Service Termination Warning Service Password Modification Alert Cancellation Request Update Domain Registration Confirmation Domain Transfer Notice Domain Renewal Reminder Domain Overdue Alerts (First, Second, and Third Tiers) Support Ticket Reply via WhatsApp Personalized Message with Registered WHMCS User’s Phone Number Easy install Step 1 : Sign up at https://wa.cloudlinkd.com Step 2 : Under ' Devices ' add your WhatsApp Number Step 3 : Scan the QR being displayed Step 4 : Upload the addon under ' /modules/addons ' Step 5 : Activate the addon from WHMCS Backend by heading to ' Settings -> Apps & Integration ' or ' Addon Modules ' Step 6 : Assign ' Full Administrator ' rights Step 7 : Paste the API Key from under ' Addons -> CloudLinkd Whmcs Module ' Step 8 : Have fun! Credits All credits to the Team CloudLinkd and the original creators of these files. All credits to the WHMCS Team for their great platform.
  2. Hello, I have been receiving this error 'Could not determine which URL to request: Stripe\PaymentMethod instance has invalid ID: ' while adding a card to WHMCS via Stripe. The problem started ever since we updated to WHMCS 8.8 Is there a fix to this? Regards
  3. Edit the header.tpl or head.tpl file of your template and include the favicon URL including SSL (https) https://docs.whmcs.com/Help:Contents
  4. Kindly use SSL for your favicon - put https instead of http as the link under the > General Settings
  5. Hello, Could someone guide me through a hook that could hide the 'Active' and 'Suspended' status text via a hook? Thank you in advance! Edit: Solved! You can go ahead and edit the language overrides.
  6. Even I am getting '404' page not found result on LiteSpeed 1.6.6 after making changes to the folder permissions as the default Deny from all does not seem to be working (tells me that my /vendor folder is accessible which it is but the other htaccess's seem to be work fine as the 404 landing page also displays properly) and this is the only sole website on this hosting account. Is there a way to fix it via editing the Vhosts file?
  7. Hello, Greetings! Could someone help me with the popover as I am always landing up with 'Remote Transaction Failure' with 'Stripe' as the only change from my template and the default 'six' is that I can see is that the popover for the 3dsecure is not coming and neither does it come for the 2FA (basically it does not load the stripe.js in the footer) according to view source, I've been trying to wrap my head around this for weeks now but I cannot seem to solve it. Please if anybody could help me it would be highly appreciated. Is there a way to add the hook manually to the template? add_hook("AdminAreaFooterOutput", 1, function (array $vars) { $filename = $vars["filename"]; $return = ""; if ($filename == "clientssummary") { $return = "<script type=\"text/javascript\" src=\"https://js.stripe.com/v3/\"></script>"; } return $return; }); add_hook("ClientAreaFooterOutput", 1, function (array $vars) { $filename = $vars["filename"]; $template = $vars["templatefile"]; $return = ""; $requiredFiles = array("cart", "creditcard"); $requiredTemplates = array("account-paymentmethods-manage", "invoice-payment"); if (in_array($filename, $requiredFiles) || in_array($template, $requiredTemplates)) { $return = "<script type=\"text/javascript\" src=\"https://js.stripe.com/v3/\"></script>"; } return $return; });
  8. Hey @brian! Could you help me with the popover as I am always landing up with 'Remote Transaction Failure' with 'Stripe' as the only change from my template and the default 'six' is that I can see is that the popover for the 3dsecure is not coming and neither does it come for the 2FA (basically it does not load the stripe.js) according to view source, I've been trying to wrap my head around this for weeks now but I cannot seem to solve it. Please if you could help us it would be highly appreciated. Is there a way to add the hook manually to the template? add_hook("AdminAreaFooterOutput", 1, function (array $vars) { $filename = $vars["filename"]; $return = ""; if ($filename == "clientssummary") { $return = "<script type=\"text/javascript\" src=\"https://js.stripe.com/v3/\"></script>"; } return $return; }); add_hook("ClientAreaFooterOutput", 1, function (array $vars) { $filename = $vars["filename"]; $template = $vars["templatefile"]; $return = ""; $requiredFiles = array("cart", "creditcard"); $requiredTemplates = array("account-paymentmethods-manage", "invoice-payment"); if (in_array($filename, $requiredFiles) || in_array($template, $requiredTemplates)) { $return = "<script type=\"text/javascript\" src=\"https://js.stripe.com/v3/\"></script>"; } return $return; });
  9. Wow! That just did the trick. Thank you so much for the help and support 🙂
×
×
  • 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