shell bypass 403
<?php
/**
* The template for displaying product content within loops
*
* This template can be overridden by copying it to yourtheme/jet-woo-builder/woocommerce/content-product.php.
*
* @version 3.6.0
*/
defined( 'ABSPATH' ) || exit;
global $product;
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
$template = apply_filters( 'jet-woo-builder/current-template/template-id', jet_woo_builder()->woocommerce->get_custom_archive_template() );
$content = jet_woo_builder()->parser->get_template_content( $template, false, $product );
jet_woo_builder()->admin_bar->register_post_item( $template );
?>
<li <?php wc_product_class( ' jet-woo-builder-product jet-woo-builder-archive-item-' . $product->get_id(), $product ); ?> data-product-id="<?php echo $product->get_id(); ?>">
<?php echo apply_filters( 'jet-woo-builder/elementor-views/frontend/archive-item-content', $content, $template, $product ); ?>
</li>