@Admin
Fantastic addition, but I do not see this option in WP eStore/Settings/Payment Gateway Settings manual checkout area. Currently using Version v5.9.9.3. Perhaps there is a newer version. Is it a paid upgrade? Let me know.
@Admin
Fantastic addition, but I do not see this option in WP eStore/Settings/Payment Gateway Settings manual checkout area. Currently using Version v5.9.9.3. Perhaps there is a newer version. Is it a paid upgrade? Let me know.
Yeah, this was added recently so get a new build from here to get this feature (eStore updates are free):
http://support.tipsandtricks-hq.com/update-request
I just updated the plug-in and adding the manual checkout to a Wordpress page does not function properly on my site. Running in the Genesis Framework: Version: 1.7.1. http://www.studiopress.com/
I create a new page that is full width (one column) as to allow the manual checkout from to fit widthwise, then I place "[wp_eStore_on_page_manual_gateway_form]" into the page. When the page is saved, rather than saving the page, Wordpress loads mydomain.com/wp-admin/post.php and shows the left column of the Manual checkout form and the page ends with this error.
"Warning: Cannot modify header information - headers already sent by (output started at /home/myUser/public_html/wp-content/plugins/wp-cart-for-digital-products/eStore_manual_gateway_functions.php:8) in /home/myUser/public_html/wp-includes/pluggable.php on line 934"
I then navigate away and proceed to adding the newly created page URL to the Setting/Payment Gateway section, it redirects to the new page fine, but it is missing the right hand column. In other words, is does not show the products and total of order, only the place to enter name etc. Must have something to do with the error when saving.
Tried deleting page and doing the whole process again and get the same results.
Running the latest: WP eStore v 6.1.2 in Wordpress 3.2.1
Thoughts?
The on page manual checkout form does not show the right hand column because it won't fit in a normal WordPress page. You can simply add the shopping cart to your sidebar or above the form to show your customer what items are in the cart.
Thanks for the explanation. Any thoughts on the error produced when saving the page with the "[wp_eStore_on_page_manual_gateway_form]" in it?
"Warning: Cannot modify header information - headers already sent by (output started at /home/myUser/public_html/wp-content/plugins/wp-cart-for-digital-products/eStore_manual_gateway_functions.php:8) in /home/myUser/public_html/wp-includes/pluggable.php on line 934"
Again, I get this when saving the newly created page with the short code in it. Oddly, the page saves (just not normally) and can be accessed by WP eStore once I add the page link to the gateway page. The initial error concerns me though.
To me that looks like your system is trying to execute that shortcode when you save the post. It won't cause you any harm (it shouldn't try to execute the shortcode when you save the post).
Do this and let me know if it helps. Open the "wp_eStore1.php" file and search for the following line of code:
add_shortcode('wp_eStore_on_page_manual_gateway_form', 'wp_eStore_on_page_manual_gateway_form_handler');
Once you find it change it with the following:
if (!is_admin()){
add_shortcode('wp_eStore_on_page_manual_gateway_form', 'wp_eStore_on_page_manual_gateway_form_handler');
}
Let me know if that helps.
You must log in to post.