How to configure wp ecommerce with roots?

How to configure wp ecommerce with roots?

I face problem with wp commerce with roots. wp ecommerce pages not show header and footer. In short its not load base file of roots theme.

Please help me to sort out this problem

Can you help share more details like maybe a demo link?

Hi ajmal
I findout to solved above problem. just put this function in cleanup.php file of roots theme,

add_action(‘init’, ‘no_wpec_templae_hierarchy’);
function no_wpec_templae_hierarchy() {
remove_action(‘template_redirect’, ‘wpsc_all_products_on_page’);
//the funcion ‘wpsc_all_products_on_page’ located in wpsc-includes/theme.functions.php hijacks template order.
}

Its help me to sort out wpecommerce with roots theme.

1 Like