File manager - Edit - /home/buyherba/public_html/wp-content/themes/flatsome/inc/extensions/flatsome-wc-quick-view/flatsome-quick-view.php
Back
<?php /** * Add Button to Grid Tools */ function flatsome_lightbox_button() { if ( get_theme_mod( 'disable_quick_view', 0 ) ) { return; } // Run Quick View Script. wp_enqueue_script( 'wc-add-to-cart-variation' ); global $product; $atts = [ 'href' => '#quick-view', 'class' => 'quick-view', 'role' => 'button', 'data-prod' => esc_attr( $product->get_id() ), 'aria-haspopup' => 'dialog', 'aria-expanded' => 'false', ]; echo '<a ' . flatsome_html_atts( $atts ) . '>' . esc_html__( 'Quick View', 'flatsome' ) . '</a>'; } add_action( 'flatsome_product_box_actions', 'flatsome_lightbox_button', 50 ); /* Add stuff to lightbox */ add_action( 'flatsome_single_product_lightbox_summary', 'woocommerce_template_single_price', 10 ); add_action( 'flatsome_single_product_lightbox_summary', 'woocommerce_template_single_excerpt', 20 ); add_action( 'flatsome_single_product_lightbox_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'flatsome_single_product_lightbox_product_gallery', 'woocommerce_show_product_sale_flash', 20 ); if ( get_theme_mod( 'product_info_meta', 1 ) ) { add_action( 'flatsome_single_product_lightbox_summary', 'woocommerce_template_single_meta', 40 ); } /** * Quick View Output */ function flatsome_quickview() { global $post, $product; if ( ! isset( $_POST['product'] ) ) { wp_die( 'No product id specified.', 'Bad Request', [ 'response' => 400 ] ); } $prod_id = absint( $_POST['product'] ); $product = wc_get_product( $prod_id ); if ( ! is_a( $product, 'WC_Product' ) || ! $product->is_visible() ) { wp_die( 'Product not found or unavailable.', 'Not Found', [ 'response' => 404 ] ); } $post = get_post( $prod_id ); ob_start(); add_filter( 'woocommerce_add_to_cart_form_action', '__return_empty_string' ); // Disable form action that causes redirect. wc_get_template( 'content-single-product-lightbox.php' ); remove_filter( 'woocommerce_add_to_cart_form_action', '__return_empty_string' ); echo ob_get_clean(); // phpcs:ignore WordPress.Security.EscapeOutput wp_die(); } add_action( 'wp_ajax_flatsome_quickview', 'flatsome_quickview' ); add_action( 'wp_ajax_nopriv_flatsome_quickview', 'flatsome_quickview' );
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Generation time: 0.09 |
proxy
|
phpinfo
|
Settings