';
}
// add the action
add_action('woocommerce_before_main_content', 'theme_woocommerce_before_main_content', 10, 2);
// define the woocommerce_archive_description callback
function theme_woocommerce_archive_description() {
echo '
';
}
// add the action
add_action('woocommerce_archive_description', 'theme_woocommerce_archive_description', 10, 2);
// define the woocommerce_archive_description callback
function theme_woocommerce_before_single_product() {
echo '
';
}
// add the action
add_action('woocommerce_before_single_product', 'theme_woocommerce_before_single_product', 10, 2);
// define the woocommerce_archive_description callback
function theme_woocommerce_sidebar() {
echo '
'
. '
'
. '
';
}
// add the action
add_action('woocommerce_sidebar', 'theme_woocommerce_sidebar', 10, 2);
remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
function theme_woocommerce_after_main_content() {
echo '
'
. '
';
}
add_action('woocommerce_after_main_content', 'theme_woocommerce_after_main_content', 10);