#wordpress – Hùng Bun – Phạm Việt Hùng

Popup form in Woocommerce

Add script blow to function.php function hdev_popup_form() { if (is_singular('product')): ?> <div id="dathang" class="lightbox-by-id lightbox-content mfp-hide lightbox-white"> <div class="row"> <div class="col medium-6"> <?php the_post_thumbnail(); ?> <?php woocommerce_template_single_title(); //Get TITLE ?> <?php woocommerce_template_single_price(); // Get PRICE ?> <?php woocommerce_template_single_excerpt(); // Get…

Xem chi tiết

Limit search to post titles only

Adding this snippet to the functions.php of your wordpress theme will limit search to post titles only. function __search_by_title_only( $search, &$wp_query ) { global $wpdb; if ( empty( $search ) ) return $search; // skip processing – no search term…

Xem chi tiết
Load more...