Jump to content

jmginer

Member
  • Posts

    64
  • Joined

  • Last visited

About jmginer

Recent Profile Visitors

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

jmginer's Achievements

Member

Member (2/3)

0

Reputation

  1. Hello @brian! I've created a hook file: <?php # Configure Domain Settings For Products # Written by brian! add_hook("ClientAreaPageCart",1,function($vars){ global $productinfo; if ($productinfo['pid'] == "257") { return array( "registerdomainenabled" => "", "transferdomainenabled" => "", "owndomainenabled" => ""); } }); But is not running for me: https://cli.ginernet.com/cart.php?a=add&pid=257 Can you help me please?
  2. Yes, I know that. The problem is that the pro-rata information is not shown in the cart. The litespeed guys must have touched something in the template, but I can't figure out how they did it. Thanks
  3. Hello, when I try to order a license for Litespeed: https://store.litespeedtech.com/store/cart.php?a=add&pid=74 I see they provide information about the prorata. How can I do the same? 🙂 Thanks!
  4. Is there an alternative to ioncube?
  5. Hello, is either of these two options available? - In an invoice with several products, the customer can "split" a product by himself without having to contact the admin. - That the products of a customer, never make "merge" and always generate individual invoices for each product. Thank you!
  6. I really appreciate the dedication you put into your response and I agree with you 100%. Thank you.
  7. But the user cannot change it, only the staff can do it? What is the reason for this implementation? I don't see a scenario where a user wants to change his e-mail and has to check it on 2 different sites.
  8. Hi, we have found that when a customer changes the email address in their profile, the change is not made in their user account (owner). Is this normal?
  9. Hello, I'm also interested to do an action when a credit card has been added or modified. But the hook #clientareapagecreditcard is not valid because it does not allow to parameterize the actions. Any idea? Thanks!
  10. Thanks, this is the reuqest: https://requests.whmcs.com/topic/registrantadministrativetechnical-contact-during-the-order
  11. Hello, I've been a WHMCS customer for 12 years and I'm writing this message to report my discomfort with WHMCS and their lack of interest in correcting the problems. Basically the domain name registration process at WHMCS is bullshit and the problem is that no one at WHMCS cares. - It doesn't allow to define different owner/admin/tech contacts to a domain, all must be the same by obligation, why? Simply because WHMCS has decided that it has to be - We register several domains in one order and all domains must have the same contactID, we force the customer to generate different orders, why? Simply because WHMCS has decided that this is the way it has to be - We talked to WHMCS at CloudFest, they understand our problem... And even after 3 years! everything still works that badly. How is it possible that such a basic functionality as domain registration is so obsolete? How is it possible that after notification by ticket the answer is: This is just the way it is It doesn't show the slightest interest in escalating the failure and being interested in improving the product. I'm really outraged. I don't understand how a panel that is supposed to be for a hosting company has such a bad domain registration process? I really don't understand. How is it possible that after reporting the problem on CloudFest for 3 years in a row, this request is still being ignored? You're going to tell me that I have to make a feature request... Ok, it's been done, for 3 years now! I opened a new request (for a different topic) 1 week ago and it's still in moderation... I'm getting more and more disgusted with this panel...
  12. Hello, I've started using MailChimp and find that the WHMCS connection is not working properly. When the user ticks in whmcs the box to cancel their subscription, this change is not updated in Mailchimp.
  13. Hello, we're having a BIG issue because we have sent the GDPR mail to all customers. We detected that the Opt-out link is only taking effect if the client has Opt-in = 1 For clients with Opt-Out = 0 and Opt-In = 0 (both = 0) the opt-out link is not taking effect, dont setup Opt-Out = 1
  14. Just received a responde by PM, I post here: for everybody I was recently asked to write some code to reproduce the generation of the keys used in those links (they were using an external program for the mass mailing), so I can give you some basic SQL queries that may help you... if a client has opted in, the tblclients.marketing_emails_opt_in value will be 1 and emailoptout is 0; if they have opted out, then those values are reversed.. if they've done nothing, then both should be 0.... SELECT tblclients.email FROM tblclients WHERE tblclients.marketing_emails_opt_in = 0 AND tblclients.emailoptout = 0; so, the above code should give you a list of email addresses of clients who have neither opted in or out... the only caveat I will add is that I wrote that after running the marketing converter, so what that does to the database values I don't know... but if you haven't ran it, then just compare your values to those I describe above and spot of there are any differences...
  15. Hello, I've not still do the Marketing Email Opt-In functionality conversion. I've sent a mass mail to all clients with both links: {$email_marketing_optin_url} and {$email_marketing_optout_url} Now, I want to query a list of clients that don't have clicked any of the links (clients with consent history empty??) How can I filter this clients in the datbase? Thanks!
×
×
  • 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