- This topic has 15 replies, 4 voices, and was last updated 13 years ago by .
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore General Questions › customize manual page
Tagged: Custom Value, customize, Manual Checkout
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.