If I add a product in cart, when I click on cart, the product is gone? Why?

It’s most likely that you have a shared hosting. How to solve that,on your wordpress root folder, edit wp-settings and turn globals off.


// Turn register_globals off. wp_unregister_GLOBALS();

becomes :

// Turn register_globals off. //wp_unregister_GLOBALS();

Back To Top