Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicartists.events.overlookedtracks.com
/
wp-content
/
themes
/
muzicon
/
front-page
/
Editing: section-woocommerce.php
<?php $muzicon_woocommerce_sc = muzicon_get_theme_option( 'front_page_woocommerce_products' ); if ( ! empty( $muzicon_woocommerce_sc ) ) { ?><div class="front_page_section front_page_section_woocommerce<?php $muzicon_scheme = muzicon_get_theme_option( 'front_page_woocommerce_scheme' ); if ( ! empty( $muzicon_scheme ) && ! muzicon_is_inherit( $muzicon_scheme ) ) { echo ' scheme_' . esc_attr( $muzicon_scheme ); } echo ' front_page_section_paddings_' . esc_attr( muzicon_get_theme_option( 'front_page_woocommerce_paddings' ) ); if ( muzicon_get_theme_option( 'front_page_woocommerce_stack' ) ) { echo ' sc_stack_section_on'; } ?>" <?php $muzicon_css = ''; $muzicon_bg_image = muzicon_get_theme_option( 'front_page_woocommerce_bg_image' ); if ( ! empty( $muzicon_bg_image ) ) { $muzicon_css .= 'background-image: url(' . esc_url( muzicon_get_attachment_url( $muzicon_bg_image ) ) . ');'; } if ( ! empty( $muzicon_css ) ) { echo ' style="' . esc_attr( $muzicon_css ) . '"'; } ?> > <?php // Add anchor $muzicon_anchor_icon = muzicon_get_theme_option( 'front_page_woocommerce_anchor_icon' ); $muzicon_anchor_text = muzicon_get_theme_option( 'front_page_woocommerce_anchor_text' ); if ( ( ! empty( $muzicon_anchor_icon ) || ! empty( $muzicon_anchor_text ) ) && shortcode_exists( 'trx_sc_anchor' ) ) { echo do_shortcode( '[trx_sc_anchor id="front_page_section_woocommerce"' . ( ! empty( $muzicon_anchor_icon ) ? ' icon="' . esc_attr( $muzicon_anchor_icon ) . '"' : '' ) . ( ! empty( $muzicon_anchor_text ) ? ' title="' . esc_attr( $muzicon_anchor_text ) . '"' : '' ) . ']' ); } ?> <div class="front_page_section_inner front_page_section_woocommerce_inner <?php if ( muzicon_get_theme_option( 'front_page_woocommerce_fullheight' ) ) { echo ' muzicon-full-height sc_layouts_flex sc_layouts_columns_middle'; } ?> " <?php $muzicon_css = ''; $muzicon_bg_mask = muzicon_get_theme_option( 'front_page_woocommerce_bg_mask' ); $muzicon_bg_color_type = muzicon_get_theme_option( 'front_page_woocommerce_bg_color_type' ); if ( 'custom' == $muzicon_bg_color_type ) { $muzicon_bg_color = muzicon_get_theme_option( 'front_page_woocommerce_bg_color' ); } elseif ( 'scheme_bg_color' == $muzicon_bg_color_type ) { $muzicon_bg_color = muzicon_get_scheme_color( 'bg_color', $muzicon_scheme ); } else { $muzicon_bg_color = ''; } if ( ! empty( $muzicon_bg_color ) && $muzicon_bg_mask > 0 ) { $muzicon_css .= 'background-color: ' . esc_attr( 1 == $muzicon_bg_mask ? $muzicon_bg_color : muzicon_hex2rgba( $muzicon_bg_color, $muzicon_bg_mask ) ) . ';'; } if ( ! empty( $muzicon_css ) ) { echo ' style="' . esc_attr( $muzicon_css ) . '"'; } ?> > <div class="front_page_section_content_wrap front_page_section_woocommerce_content_wrap content_wrap woocommerce"> <?php // Content wrap with title and description $muzicon_caption = muzicon_get_theme_option( 'front_page_woocommerce_caption' ); $muzicon_description = muzicon_get_theme_option( 'front_page_woocommerce_description' ); if ( ! empty( $muzicon_caption ) || ! empty( $muzicon_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) { // Caption if ( ! empty( $muzicon_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( $muzicon_caption ) ? 'filled' : 'empty'; ?>"> <?php echo wp_kses( $muzicon_caption, 'muzicon_kses_content' ); ?> </h2> <?php } // Description (text) if ( ! empty( $muzicon_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( $muzicon_description ) ? 'filled' : 'empty'; ?>"> <?php echo wp_kses( wpautop( $muzicon_description ), 'muzicon_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' == $muzicon_woocommerce_sc ) { $muzicon_woocommerce_sc_ids = muzicon_get_theme_option( 'front_page_woocommerce_products_per_page' ); $muzicon_woocommerce_sc_per_page = count( explode( ',', $muzicon_woocommerce_sc_ids ) ); } else { $muzicon_woocommerce_sc_per_page = max( 1, (int) muzicon_get_theme_option( 'front_page_woocommerce_products_per_page' ) ); } $muzicon_woocommerce_sc_columns = max( 1, min( $muzicon_woocommerce_sc_per_page, (int) muzicon_get_theme_option( 'front_page_woocommerce_products_columns' ) ) ); echo do_shortcode( "[{$muzicon_woocommerce_sc}" . ( 'products' == $muzicon_woocommerce_sc ? ' ids="' . esc_attr( $muzicon_woocommerce_sc_ids ) . '"' : '' ) . ( 'product_category' == $muzicon_woocommerce_sc ? ' category="' . esc_attr( muzicon_get_theme_option( 'front_page_woocommerce_products_categories' ) ) . '"' : '' ) . ( 'best_selling_products' != $muzicon_woocommerce_sc ? ' orderby="' . esc_attr( muzicon_get_theme_option( 'front_page_woocommerce_products_orderby' ) ) . '"' . ' order="' . esc_attr( muzicon_get_theme_option( 'front_page_woocommerce_products_order' ) ) . '"' : '' ) . ' per_page="' . esc_attr( $muzicon_woocommerce_sc_per_page ) . '"' . ' columns="' . esc_attr( $muzicon_woocommerce_sc_columns ) . '"' . ']' ); ?> </div> </div> </div> </div> <?php }
Save
Cancel