shell bypass 403
<?php
/**
* The Template for displaying product archives, including the main shop page which is a post type archive
*
* This template can be overridden by copying it to yourtheme/jet-woo-builder/woocommerce/archive-product.php.
*
* @version 3.4.0
*/
defined( 'ABSPATH' ) || exit;
get_header( 'shop' );
do_action( 'jet-woo-builder/woocommerce/before-main-content' );
$wc_data = new WC_Structured_Data;
$wc_data->generate_product_data();
$template = jet_woo_builder()->woocommerce->get_custom_shop_template();
$taxonomy_template = get_term_meta( get_queried_object_id(), 'jet_woo_builder_template', true );
if ( is_product_taxonomy() && ! empty( $taxonomy_template ) ) {
$template = jet_woo_builder()->woocommerce->get_custom_product_taxonomy_template();
}
$template = apply_filters( 'jet-woo-builder/current-template/template-id', $template );
jet_woo_builder()->admin_bar->register_post_item( $template );
echo jet_woo_builder_template_functions()->get_woo_builder_content( $template );
do_action( 'jet-woo-builder/woocommerce/after-main-content' );
get_footer( 'shop' );