Patrik
Forum Replies Created
-
AuthorPosts
-
Hi Rafaela,
Please provide us FTP details in private reply so that we can modify the code you have done in functions.php.
Regards,
PatrikIt works in chrome for me as well. Try clearing browser cache or use the private browsing mode to check.
Regards,
PatrikHi James,
You can use the following code in your functions.php file of the currently active theme:
add_filter( 'login_url', 'login_url_cb', 10, 2 ); function login_url_cb($login_url, $redirect){ $login_page_id = uwp_get_page_id('login_page', false); $redirect_page_id = uwp_get_option('login_redirect_to', -1); if ($login_page_id) { $login_page = get_permalink($login_page_id); if($redirect){ $login_url = add_query_arg( 'redirect_to', $redirect, $login_page ); }elseif(isset($redirect_page_id) && (int)$redirect_page_id == -1 && wp_get_referer()) { $redirect_to = esc_url(wp_get_referer()); $login_url = add_query_arg( 'redirect_to', $redirect_to, $login_page ); }elseif($redirect_page_id){ $redirect_to = get_permalink($redirect_page_id); $login_url = add_query_arg( 'redirect_to', $redirect_to, $login_page ); }else{ $login_url = $login_page; } } return $login_url; }
Let me know if it works for you or not.
Regards,
PatrikHi,
I have made the changes in the file and it should be fixed now. Please check from your side and let me know how it goes.
Regards,
PatrikHi James,
We need more information on the problem you have. Can you please explain in details with steps or example? It would be great if you can provide your website admin login details in private reply to look more into this.
Regards,
PatrikHi,
The problem is due to the ACF plugin and Invoicing plugin conflicts. It will be fixed in the next release of the plugin. If you want to apply the changes on your site then you can provide us the FTP details in private reply and we will fix it for you or you can do the changes by yourself from here: https://github.com/AyeCode/invoicing/pull/176/commits/f56a6b30a5831787ceb88cafe32b85156f3cc00c
Regards,
PatrikHi Vladimire,
Thanks for reporting this. We have done the changes and will be available in next release of the plugin. If you want to apply the changes on your site then let me know the FTP details in private reply and I will do that for you.
Regards,
PatrikThis reply has been marked as private.Hi,
The issue is due to the default fonts used in PDF doesn’t support the language. “DejaVu Sans” font supports utf-8 so, I have added following code in functions.php of current active theme and it works now:
add_action('wpinv_pdf_head', 'wpinv_pdf_head_cb'); function wpinv_pdf_head_cb(){ ?> <style type="text/css"> * {font-family: DejaVu Sans !important;} </style> <?php }
Let me know if you have any queries.
Regards,
PatrikSeptember 21, 2018 at 6:27 am in reply to: Invoices Marking Subscriptions as Expired – But they aren't! #2105Hi Darrell,
Can you please check from your PayPal account if the recurring profile is active or not? There may be some issues with payments and it set to expired status.
Can you please provide us admin and FTP details in private reply for more look into this issue?
Regards,
PatrikThis reply has been marked as private.This reply has been marked as private.Hi Martin,
We suggest you create a clone of the live site without sensitive data and let us know the admin and FTP details in private reply so that we can look into it.
Regards,
PatrikHi Martin,
Can you please provide us admin details and FTP details in private reply to look more into this? We need to know which language you are using and all.
Regards,
PatrikHi Martin,
We already have two add-ons which provide similar kind of functionalities:
https://wpinvoicing.com/downloads/contact-form-7/
https://wpinvoicing.com/downloads/gravity-forms/Thy work with other plugins to grab the invoice data with forms. You will require some customization to achieve your requirements. We do not provide support for customization here. You can hire the developer to do that.
Let me know if you have any questions.
Regards,
Patrik -
AuthorPosts