Patrik
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi,
For multiple items, you need to pass the id and quantity to the shortcode values with pipe separated for example [wpinv_items wpinv_cf7_items “10|1” “11|1” “12|1”]. So you can use jQuery to change the values of items based on age group selected. This is the customization task so you can take the help of a developer to do this as we do not provide support for customization here.
Regards,
PatrikHi,
Thanks for your suggestion. We don’t have this functionality by default in add on for now but we can definitely consider this as a future enhancement. You can achieve this by customization if you want.
Regards,
PatrikHi,
You can just put the below CSS code in Settings->Misc->Custom CSS->Invoice Template CSS and save it.
body.wpinv-print .wpinv-top-bar a.btn-warning { display: none; }
This will be easy for you.
Regards,
PatrikHi,
You can’t change the payment method once the invoice is paid. You can change its status to draft and then change the payment method for repaying but this would be not the solution for you as it would require 2nd-time payment.
Regards,
PatrikHi,
Please put the following code in functions.php file of currently active theme and let me know if it works for you or not:
add_action('wpinv_invoice_print_head', 'wpinv_invoice_print_head_cb'); function wpinv_invoice_print_head_cb(){ ?> <style type="text/css"> body.wpinv-print .wpinv-top-bar a.btn-warning { display: none; } </style> <?php }
Regards,
PatrikThis reply has been marked as private.Hi,
Can you please let me know which package/item you want to remove? I think “1 year membership for business” but want to confirm from you. I will remove the item you want to remove by programming as that item can only be removed from the packages of GD pricing manager plugin and this item seems to be from the previous version of GD or something.
The pre-bank transfer method will not work for recurring payments. It will only work for normal payments. Let me know if it doesn’t work for normal payments.
If there is a 30 days trial period then first billing will be done after 30 days.
Regards,
PatrikHi,
The issue is fixed. The issue was due to redirects set by Yoast SEO plugin. So when you change the slug of the page, it will create redirects. I have removed all the redirects related to WPI and checkout page is working fine now. Please check from your side and let me know if any issues.
Regards,
PatrikHi,
We have mostly provided hooks and filters where ever required which you can use. Look for the following filters in our plugin and you can use them according to your requirements:
‘wpi_invoice_table_columns’ => For adding the new column
‘wpi_invoice_table_sortable_columns’ => For making column sortable
‘wpinv_payments_table_column’ => For displaying column valueYou can look into the file invoicing->includes->admin->wpinv-admin-functions.php for more details.
We have mostly followed the default WordPress way so you may get help from Google as well. If you need any help just let us know.
Regards,
PatrikHi,
Try the following code and let me know if it resolves your issue or not:
add_filter( 'wpinv_register_post_type_invoice', '_my_rewrite_slug' ); function _my_rewrite_slug( $args ) { $args['rewrite'] = array( 'slug' => 'invoices'); return $args; }
Please reset the permalink from Settings->Permalink after putting the above code in functions.php file of the currently active theme.
Regards,
PatrikHi,
Please provide us the admin and FTP details to look more into this. Kindly check session path should be writable on your server.
Regards,
PatrikHi,
There are some changes in the Authorize.net API on which we are working right now. We will update you here once done.
Regards,
PatrikNo, that plugin is not for GD. It is for invoicing plugin to add custom type to the Invoicing item.
No, The field “wpinv_customer_website” is for the customer and it will be not visible in the invoice listing. It will be visible in edit invoice page only.
-
AuthorPosts