Jump to content

jeebee123

Member
  • Content Count

    35
  • Joined

  • Last visited

Community Reputation

0 Neutral

About jeebee123

  • Rank
    Member

Recent Profile Visitors

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

  1. Hi! I have a question, and I really hope it is possible with WHMCS. I'm looking for a solutions to add a front page and last page on quotes. We have a front page (PDF format) in our corporate identity which we would like to add before the quote itself. Is there a module our hook out there that makes this possible?
  2. Ah nevermind. It works. Only this function doesn't work: add_hook("ClientAreaPage", 1, function($vars){ add_hook("ClientAreaPage", 1, function($vars){ /** * Overdue Invoices Limit * * If client has overdue invoices more than this number a restriction will be applied * Default is 0, mean if client has 1 or more overdue invoices */ $overdueInvoicesLimit = 0; The invoices limit dont work.
  3. Looks good, I've uploaded it into the hooks directory, doesn't work :(. If I look into the code, I thought it would work. But for some reason it doesn't.
  4. Hmm, that would be to much work. It would be best to just disable access to the client area, except the invoices. There are clients with 200 domains, would be a lot of work to hide all of this domains.
  5. Hi! So, we're having a problem with a client which has chargeback the automatic payments. Is there a way to disable access to the client area, untill the payments have been received? So that the client is able to make a payment, but can't access services.
  6. Hey! No idea. This is how it looks in the back-end.
  7. Hi! Since a while I have a strange problem with my WHMCS installation. My links (ahrefs) that I'm using in my e-mails arent displaying correctly. It looks like the HTML is not working. See attachment. It happens on all the places in every mail. Anyone a possible cause?
  8. Hi, I have a problem with my domain sync, but maybe it is a setting in WHMCS. 1. The experation date of the domain is syncing perfectly with the registar. 2. The next due date in WHMCS is not syncing at all. Is it possible to have these 2 synct together? A solution for this would be a life-and-time-saver.
  9. Hi, So I came across this problem for a few times now The nameserver are displaying very weird. Please see attachment. Nameservers 1 & 2 are displaying in the 3th and 4th field, and there is a random charachter in the seconden field. There are some more hosting companys with this problem. Any idea how to fix?
  10. Any other solution to track completed orders with Facebook?
  11. Hmm okay. I found this code and placed it into the viewinvoice.tpl template file. {if $status eq "Paid" || $paymentSuccessAwaitingNotification || $paymentSuccess || $paymentInititated} {assign var=total_amt value=$total|replace:'€':''|replace:'EUR':''|replace:' ':''} <!-- Facebook Pixel Code --> {literal} <script> !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', 'XXXXXXXXXX'); // Insert your pixel ID here. fbq('track', 'Purchase', { currency: 'EUR', amount: '{/literal}{$total_amt}{literal}', }); </script> {/literal} <!-- DO NOT MODIFY --> <!-- End Facebook Pixel Code --> {/if} I will test the code today.
  12. Hi, So, I've added the Facebook Pixel to WHMCS with succes, but I'm trying to figure out how to set-up e-commerce tracking in WHMCS. As example: <script> fbq('track', 'AddPaymentInfo', { value: x, currency: 'EUR', }); </script> I need to place this with the order button. If someone clicks on the "Add to cart button", this script needs to be triggered. So far thats not a problem. Currently I use: <div class="package-footer" style="margin-bottom:25px"> <a href="{$WEB_ROOT}/cart.php?a=add&{if $product.bid}bid={$product.bid}{else}pid={$product.pid}{/if}" class="btn btn-lg btn-primary" id="product{$product@iteration}-order-button AddToCart"> {$LANG.ordernowbutton} </a> {if $product.qty || $product.qty == "0"} <div class="package-qty"> {$product.qty} {$LANG.orderavailable} </div> {/if} {literal} <script type="text/javascript"> $('#$AddToCart').click(function() { fbq('track', 'AddToCart', {currency: "EUR", value: {$product.pricing.minprice.price}{if $product.pricing.type !=="free" && $product.pricing.type !=="onetime"}{/if}); }); </script> {/literal} </div> The problem is: after the value: x, it needs to show the product price. What is the correct way of doing this in WHMCS?
  13. Hi, So on the configure domain page (cart.php?a=confdomains) there isn't a delete button to delete a domain from your cart. Is there a reason for it? Or is it possible to enable this?
  14. This is not true.. Your URL structure does affect rankings in Google. https://www.searchenginejournal.com/technical-seo/url-structure/ It's not just the ranking, but also it just looks bad. A redirect, common. It's 2020.
×
×
  • 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