
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 (2/3)
8
Reputation
-
Absolutely yes
-
Nope that is completely up to you.
-
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.
-
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.
-
WHMCS Security Advisory 2020-01-28
upalm replied to LukeDouglas's topic in Admin & Configuration Questions
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? -
WHMCS Security Advisory 2020-01-28
upalm replied to LukeDouglas's topic in Admin & Configuration Questions
Can anyone suggest for Litespeed? -
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; });
-
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; });
-
Wow! That just did the trick. Thank you so much for the help and support 🙂