BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
themes
/
porto
/
woocommerce
/
loop
📤 Upload
📝 New File
📁 New Folder
Close
Editing: add-to-cart.php
<?php /** * Loop Add to Cart * * @version 9.2.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $porto_settings, $product, $woocommerce_loop; $legacy_mode = apply_filters( 'porto_legacy_mode', true ); $wishlist_mode = ( $legacy_mode && ! empty( $porto_settings['product-wishlist'] ) ) || ! $legacy_mode; $wishlist = class_exists( 'YITH_WCWL' ) && $wishlist_mode; $quickview = isset( $porto_settings['product-quickview'] ) ? $porto_settings['product-quickview'] : true; $compare = false; if ( defined( 'YITH_WOOCOMPARE' ) ) { if ( ( $legacy_mode && ! empty( $porto_settings['product-compare'] ) ) || ! $legacy_mode ) { $compare = true; } } $porto_woo_version = porto_get_woo_version_number(); $aria_describedby = isset( $args['aria-describedby_text'] ) ? sprintf( ' aria-describedby="woocommerce_loop_add_to_cart_link_describedby_%s"', esc_attr( $product->get_id() ) ) : ''; ?> <div class="add-links-wrap"> <div class="add-links<?php echo ! $wishlist && ! $quickview ? ' no-effect' : ''; ?> clearfix"> <?php global $porto_settings; $viewcart_style = 'viewcart-style-' . ( ! empty( $porto_settings['add-to-cart-notification'] ) ? (int) $porto_settings['add-to-cart-notification'] : '1' ); $catalog_mode = false; if ( ! empty( $porto_settings['catalog-enable'] ) ) { if ( $porto_settings['catalog-admin'] || ( ! $porto_settings['catalog-admin'] && ! ( current_user_can( 'administrator' ) && is_user_logged_in() ) ) ) { if ( ! $porto_settings['catalog-cart'] ) { $catalog_mode = true; } } } if ( ! $catalog_mode ) { if ( version_compare( $porto_woo_version, '3.3', '<' ) ) { echo apply_filters( 'woocommerce_loop_add_to_cart_link', // WPCS: XSS ok. sprintf( '<%s rel="nofollow" href="%s" data-quantity="%s" data-product_id="%s" data-product_sku="%s" class="' . $viewcart_style . ' %s" %s>%s</%s>', ( $product->is_purchasable() && $product->is_in_stock() && isset( $porto_settings['category-addlinks-convert'] ) && $porto_settings['category-addlinks-convert'] ) ? 'span' : 'a', esc_url( $product->add_to_cart_url() ), esc_attr( isset( $args['quantity'] ) ? $args['quantity'] : 1 ), esc_attr( $product->get_id() ), esc_attr( $product->get_sku() ), esc_attr( ( isset( $args['class'] ) ? $args['class'] : 'button' ) . ( $product->is_purchasable() && $product->is_in_stock() ? '' : ' add_to_cart_read_more' ) ), isset( $args['attributes'] ) ? wc_implode_html_attributes( $args['attributes'] ) : '', esc_html( $product->add_to_cart_text() ), ( $product->is_purchasable() && $product->is_in_stock() && isset( $porto_settings['category-addlinks-convert'] ) && $porto_settings['category-addlinks-convert'] ) ? 'span' : 'a' ), $product, $args ); } else { echo apply_filters( 'woocommerce_loop_add_to_cart_link', // WPCS: XSS ok. sprintf( '<%s href="%s"%s data-quantity="%s" class="' . $viewcart_style . ' %s" %s>%s</%s>', ( $product->is_purchasable() && $product->is_in_stock() && isset( $porto_settings['category-addlinks-convert'] ) && $porto_settings['category-addlinks-convert'] ) ? 'span' : 'a', esc_url( apply_filters( 'porto_cpo_add_to_cart_url', $product->add_to_cart_url(), $product ) ), $aria_describedby, esc_attr( isset( $args['quantity'] ) ? $args['quantity'] : 1 ), esc_attr( ( isset( $args['class'] ) ? $args['class'] . ( ! in_array( 'button', explode( ' ', $args['class'] ) ) ? ' button' : '' ) : 'button' ) . ( $product->is_purchasable() && $product->is_in_stock() ? '' : ' add_to_cart_read_more' ) ), isset( $args['attributes'] ) ? wc_implode_html_attributes( $args['attributes'] ) : '', esc_html( $product->add_to_cart_text() ), ( $product->is_purchasable() && $product->is_in_stock() && isset( $porto_settings['category-addlinks-convert'] ) && $porto_settings['category-addlinks-convert'] ) ? 'span' : 'a' ), $product, $args ); } } elseif ( ! empty( $porto_settings['catalog-readmore'] ) ) { $more_link = $product->get_permalink(); $more_target = ''; if ( 'all' === $porto_settings['catalog-readmore-archive'] ) { $link = get_post_meta( $product->get_id(), 'product_more_link', true ); if ( $link ) { $more_link = $link; } $more_target = $porto_settings['catalog-readmore-target'] ? 'target="' . esc_attr( $porto_settings['catalog-readmore-target'] ) . '"' : ''; } echo apply_filters( 'woocommerce_loop_add_to_cart_link', // WPCS: XSS ok. sprintf( '<a href="%s"%s rel="nofollow" data-product_id="%s" data-product_sku="%s" data-quantity="%s" class="button ' . $viewcart_style . ' %s product_type_%s" %s %s>%s</a>', esc_url( $more_link ), $aria_describedby, esc_attr( $product->get_id() ), esc_attr( $product->get_sku() ), esc_attr( isset( $args['quantity'] ) ? $args['quantity'] : 1 ), 'add_to_cart_read_more', esc_attr( $product->get_type() ), $more_target, isset( $args['attributes'] ) ? wc_implode_html_attributes( $args['attributes'] ) : '', esc_html( $porto_settings['catalog-readmore-label'] ) ), $product, $args ); } ?> <?php if ( isset( $args['aria-describedby_text'] ) ) : ?> <span id="woocommerce_loop_add_to_cart_link_describedby_<?php echo esc_attr( $product->get_id() ); ?>" class="screen-reader-text"> <?php echo esc_html( $args['aria-describedby_text'] ); ?> </span> <?php endif; ?> <?php // Hide for Fibosearch if ( ! wp_doing_ajax() || ( empty( $_REQUEST['action'] ) || 'dgwt_wcas_result_details' != $_REQUEST['action'] ) ) { if ( $wishlist ) { echo do_shortcode( '[yith_wcwl_add_to_wishlist]' ); } if ( $quickview && ( ! isset( $woocommerce_loop['addlinks_pos'] ) || 'onimage2' !== $woocommerce_loop['addlinks_pos'] ) ) { $label = ( ( isset( $porto_settings['product-quickview-label'] ) && $porto_settings['product-quickview-label'] ) ? $porto_settings['product-quickview-label'] : __( 'Quick View', 'porto' ) ); echo '<div class="quickview" data-id="' . absint( $product->get_id() ) . '" title="' . esc_attr( $label ) . '">' . esc_html( $label ) . '</div>'; } if ( $compare ) { do_action( 'porto_template_compare' ); } } ?> </div> <?php if ( isset( $woocommerce_loop['addlinks_pos'] ) && 'onimage2' == $woocommerce_loop['addlinks_pos'] ) { $label = ( ( isset( $porto_settings['product-quickview-label'] ) && $porto_settings['product-quickview-label'] ) ? $porto_settings['product-quickview-label'] : __( 'Quick View', 'porto' ) ); echo '<div class="quickview" data-id="' . absint( $product->get_id() ) . '" title="' . esc_attr( $label ) . '">' . esc_html( $label ) . '</div>'; } ?> </div>
Save
Cancel