Jump to content

Basheer

Member
  • Posts

    112
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Basheer

  1. Please find the compressed rar file. and whmcs version:7.3.1 swiftmodders_cart.rar
  2. If i set carttpl in url , it's loading the template Y with out issue.
  3. HI Brain, I have checked all files and there is no reference to standard cart.
  4. ha ha , I am not trying to hide anything , i just reduce the characters of the post 🙂 Yes X = standard_cart and Y is the modified template from standard_cart. And it contains all the order form pages.
  5. HI, My default order template is X and in my new product group i used template Y as order template. But it is not working as needed. In product configuration page (/cart.php?a=confproduct&i=2) templae Y is loading but in other pages like cart summery(cart.php?a=view) and checkout loading template X. Any help
  6. HI, We are using 'OpenTicket' api call for create a new ticket and ticket is created successfully . But my clients get emails when they open a ticket but my admins don't. If ticket created from whmcs client area itself all process are working fine, both admin and client notification mail will send.
  7. Thank you brian! ... Or at least is possible to stop the invoice creation of particular clients ?
  8. Hi, We are using automation for all activities like invoice creation mail notification etc. And we want to stop this activities for particular clients products, but these products are still active. Is there any option for this ?
  9. HI, I have a doubt regarding payment methods in view invoice page. In my WHMCS i enabled 3 types of payment gateways, paypal, 2checkout and Credit card. And in one of product group I selected only 2 , paypal and credit card (settings->product).And from client area if choose the product under this product group and in checkout page i can see only 2 gateways (paypal and credit card), that's Ok. If i didn't pay at the time of order place and try to pay that invoice from client area, in viewinvoice page there is a drop down for payment methods , in this stage i can see all 3 payment gateways. How it happened ? I only pointed 2 gateways to this type of product . I hope you understand what i am saying
  10. If i disable this option , i think system will not create any invoices if there is any unpaid invoice. But we are not happy with that . We need only block the invoice creation if product is suspended.
  11. sorry , not cancelled ,if suspended
  12. Hi, How can prevent invoice creation on a particular point, like if product is canceled etc. And i can't find any hook point for before invoice creation/ pre invoice creation .
  13. I created a hook for that, It's worked. add_hook('EmailPreSend', 1, function($vars) { $merge_fields = []; if ($vars['messagename'] =='Invoice Payment Reminder') { //get customer id fom invoice id $invoice_id = $vars['relid']; $invoice_sql = Capsule::table('tblinvoices') ->where('id','=',$invoice_id) ->first(); $userid = $invoice_sql->userid; $blocked_ids = array(11,12); if(in_array($userid,$blocked_ids)) { $merge_fields['abortsend'] = true; } } return $merge_fields; });
  14. Hi, Is there any option to prevent sending invoice payment reminder for a particular customer, if i am enabled the automation ?
  15. Hi, Where exactly does it store clients details of invoices if i enable 'Store Client Data Snapshot' option in invoice settings ? database table ?
  16. No, mark as paid and create a negative invoice for that
  17. Hi, I know when customer click the disable auto renew button in client area whmcs will cancel the all outstanding invoices for that domain, and if customer click the renew button also cancel the invoice (if there is unpaid invoice we have already created) and generate new invoice(We are not using automation in invoice generation ). But in my country canceled invoices is not allowed and i want to prevent this invoice cancellation , how can it possible ? Please help
  18. Thank you very much brain and remitur
  19. Hi, Is there any option to download all previous invoices in a single click or using any api or script?
×
×
  • 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