shell bypass 403
<?php
$spin_woocommerce_sc = spin_get_theme_option( 'front_page_woocommerce_products' );
if ( ! empty( $spin_woocommerce_sc ) ) {
?><div class="front_page_section front_page_section_woocommerce<?php
$spin_scheme = spin_get_theme_option( 'front_page_woocommerce_scheme' );
if ( ! empty( $spin_scheme ) && ! spin_is_inherit( $spin_scheme ) ) {
echo ' scheme_' . esc_attr( $spin_scheme );
}
echo ' front_page_section_paddings_' . esc_attr( spin_get_theme_option( 'front_page_woocommerce_paddings' ) );
if ( spin_get_theme_option( 'front_page_woocommerce_stack' ) ) {
echo ' sc_stack_section_on';
}
?>"
<?php
$spin_css = '';
$spin_bg_image = spin_get_theme_option( 'front_page_woocommerce_bg_image' );
if ( ! empty( $spin_bg_image ) ) {
$spin_css .= 'background-image: url(' . esc_url( spin_get_attachment_url( $spin_bg_image ) ) . ');';
}
if ( ! empty( $spin_css ) ) {
echo ' style="' . esc_attr( $spin_css ) . '"';
}
?>
>
<?php
// Add anchor
$spin_anchor_icon = spin_get_theme_option( 'front_page_woocommerce_anchor_icon' );
$spin_anchor_text = spin_get_theme_option( 'front_page_woocommerce_anchor_text' );
if ( ( ! empty( $spin_anchor_icon ) || ! empty( $spin_anchor_text ) ) && shortcode_exists( 'trx_sc_anchor' ) ) {
echo do_shortcode(
'[trx_sc_anchor id="front_page_section_woocommerce"'
. ( ! empty( $spin_anchor_icon ) ? ' icon="' . esc_attr( $spin_anchor_icon ) . '"' : '' )
. ( ! empty( $spin_anchor_text ) ? ' title="' . esc_attr( $spin_anchor_text ) . '"' : '' )
. ']'
);
}
?>
<div class="front_page_section_inner front_page_section_woocommerce_inner
<?php
if ( spin_get_theme_option( 'front_page_woocommerce_fullheight' ) ) {
echo ' spin-full-height sc_layouts_flex sc_layouts_columns_middle';
}
?>
"
<?php
$spin_css = '';
$spin_bg_mask = spin_get_theme_option( 'front_page_woocommerce_bg_mask' );
$spin_bg_color_type = spin_get_theme_option( 'front_page_woocommerce_bg_color_type' );
if ( 'custom' == $spin_bg_color_type ) {
$spin_bg_color = spin_get_theme_option( 'front_page_woocommerce_bg_color' );
} elseif ( 'scheme_bg_color' == $spin_bg_color_type ) {
$spin_bg_color = spin_get_scheme_color( 'bg_color', $spin_scheme );
} else {
$spin_bg_color = '';
}
if ( ! empty( $spin_bg_color ) && $spin_bg_mask > 0 ) {
$spin_css .= 'background-color: ' . esc_attr(
1 == $spin_bg_mask ? $spin_bg_color : spin_hex2rgba( $spin_bg_color, $spin_bg_mask )
) . ';';
}
if ( ! empty( $spin_css ) ) {
echo ' style="' . esc_attr( $spin_css ) . '"';
}
?>
>
<div class="front_page_section_content_wrap front_page_section_woocommerce_content_wrap content_wrap woocommerce">
<?php
// Content wrap with title and description
$spin_caption = spin_get_theme_option( 'front_page_woocommerce_caption' );
$spin_description = spin_get_theme_option( 'front_page_woocommerce_description' );
if ( ! empty( $spin_caption ) || ! empty( $spin_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
// Caption
if ( ! empty( $spin_caption ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<h2 class="front_page_section_caption front_page_section_woocommerce_caption front_page_block_<?php echo ! empty( $spin_caption ) ? 'filled' : 'empty'; ?>">
<?php
echo wp_kses( $spin_caption, 'spin_kses_content' );
?>
</h2>
<?php
}
// Description (text)
if ( ! empty( $spin_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<div class="front_page_section_description front_page_section_woocommerce_description front_page_block_<?php echo ! empty( $spin_description ) ? 'filled' : 'empty'; ?>">
<?php
echo wp_kses( wpautop( $spin_description ), 'spin_kses_content' );
?>
</div>
<?php
}
}
// Content (widgets)
?>
<div class="front_page_section_output front_page_section_woocommerce_output list_products shop_mode_thumbs">
<?php
if ( 'products' == $spin_woocommerce_sc ) {
$spin_woocommerce_sc_ids = spin_get_theme_option( 'front_page_woocommerce_products_per_page' );
$spin_woocommerce_sc_per_page = count( explode( ',', $spin_woocommerce_sc_ids ) );
} else {
$spin_woocommerce_sc_per_page = max( 1, (int) spin_get_theme_option( 'front_page_woocommerce_products_per_page' ) );
}
$spin_woocommerce_sc_columns = max( 1, min( $spin_woocommerce_sc_per_page, (int) spin_get_theme_option( 'front_page_woocommerce_products_columns' ) ) );
echo do_shortcode(
"[{$spin_woocommerce_sc}"
. ( 'products' == $spin_woocommerce_sc
? ' ids="' . esc_attr( $spin_woocommerce_sc_ids ) . '"'
: '' )
. ( 'product_category' == $spin_woocommerce_sc
? ' category="' . esc_attr( spin_get_theme_option( 'front_page_woocommerce_products_categories' ) ) . '"'
: '' )
. ( 'best_selling_products' != $spin_woocommerce_sc
? ' orderby="' . esc_attr( spin_get_theme_option( 'front_page_woocommerce_products_orderby' ) ) . '"'
. ' order="' . esc_attr( spin_get_theme_option( 'front_page_woocommerce_products_order' ) ) . '"'
: '' )
. ' per_page="' . esc_attr( $spin_woocommerce_sc_per_page ) . '"'
. ' columns="' . esc_attr( $spin_woocommerce_sc_columns ) . '"'
. ']'
);
?>
</div>
</div>
</div>
</div>
<?php
}