Contents
Ngoài những themes đẹp dành cho Woocommerce và các plugin để mở rộng chức năng của nó, chúng ta có thể tận dụng những hook có sẵn của nó để tùy biến lại trang bán hàng theo ý của mình.
Nếu như bạn đang dùng Woocommerce, sẽ rất có ích nếu bạn xem qua 24 đoạn code dưới đây. Bạn chỉ cần xem cái nào phù hợp với nhu cầu của bạn và đơn giản là bạn chỉ cần copy & paste đoạn code đó vào file functions.php trong theme bạn đang sử dụng.
Xóa chữ “Product” trên thanh điều hướng
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* * Hide "Products" in WooCommerce breadcrumb */ function woo_custom_filter_breadcrumbs_trail ( $trail ) { foreach ( $trail as $k => $v ) { if ( strtolower ( strip_tags ( $v ) ) == 'products' ) { unset( $trail [ $k ] ); break ; } } return $trail ; } add_filter( 'woo_breadcrumbs_trail' , 'woo_custom_filter_breadcrumbs_trail' , 10 ); |
Tự thêm sản phẩm vào giỏ mỗi khi khách truy cập vào
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* * Add item to cart on visit */ function add_product_to_cart() { if ( ! is_admin() ) { global $woocommerce ; $product_id = 64; $found = false; //check if product already in cart if ( sizeof( $woocommerce ->cart->get_cart() ) > 0 ) { foreach ( $woocommerce ->cart->get_cart() as $cart_item_key => $values ) { $_product = $values [ 'data' ]; if ( $_product ->id == $product_id ) $found = true; } // if product not found, add it if ( ! $found ) $woocommerce ->cart->add_to_cart( $product_id ); } else { // if no products in cart, add it $woocommerce ->cart->add_to_cart( $product_id ); } } } add_action( 'init' , 'add_product_to_cart' ); |
Thêm ký hiệu tiền tệ theo ý mình
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
add_filter( 'woocommerce_currencies' , 'add_my_currency' ); function add_my_currency( $currencies ) { $currencies [ 'VNĐ' ] = __( 'Vietnam Dong' , 'woocommerce' ); return $currencies ; } add_filter( 'woocommerce_currency_symbol' , 'add_my_currency_symbol' , 10, 2); function add_my_currency_symbol( $currency_symbol , $currency ) { switch ( $currency ) { case 'VNĐ' : $currency_symbol = '$' ; break ; } return $currency_symbol ; } |
Thay chữ “Add to Cart” hoặc “Thêm vào giỏ”
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/** * Change the add to cart text on single product pages */ function woo_custom_cart_button_text() { return __( 'My Button Text' , 'woocommerce' ); } add_filter( 'single_add_to_cart_text' , 'woo_custom_cart_button_text' ); /** * Change the add to cart text on product archives */ function woo_archive_custom_cart_button_text() { return __( 'My Button Text' , 'woocommerce' ); } add_filter( 'add_to_cart_text' , 'woo_archive_custom_cart_button_text' ); |
Tự chuyển tới trang thanh toán sau khi thêm vào giỏ
1
2
3
4
5
6
7
8
9
10
11
12
|
/** * Redirect subscription add to cart to checkout page * * @param none */ function add_to_cart_checkout_redirect() { wp_safe_redirect( get_permalink( get_option( 'woocommerce_checkout_page_id' ) ) ); die (); } add_action( 'woocommerce_add_to_cart' , 'add_to_cart_checkout_redirect' , 11 ); |
Gửi email sau khi thanh toán bằng coupon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/** * WooCommerce Extra Feature * -------------------------- * * Send an email each time an order with coupon(s) is completed * The email contains coupon(s) used during checkout process * */ function woo_email_order_coupons( $order_id ) { $order = new WC_Order( $order_id ); if ( $order ->get_used_coupons() ) { $to = 'youremail@yourcompany.com' ; $subject = 'New Order Completed' ; $headers = 'From: My Name ' . "\r\n" ; $message = 'A new order has been completed.\n' ; $message .= 'Order ID: ' . $order_id . '\n' ; $message .= 'Coupons used:\n' ; foreach ( $order ->get_used_coupons() as $coupon ) { $message .= $coupon . '\n' ; } @wp_mail( $to , $subject , $message , $headers ); } } add_action( 'woocommerce_thankyou' , 'woo_email_order_coupons' ); |
Thay đổi số lượng sản phẩm liên quan
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/** * WooCommerce Extra Feature * -------------------------- * * Change number of related products on product page * Set your own value for 'posts_per_page' * */ function woo_related_products_limit() { global $product ; $args = array ( 'post_type' => 'product' , 'no_found_rows' => 1, 'posts_per_page' => 6, 'ignore_sticky_posts' => 1, 'orderby' => $orderby , 'post__in' => $related , 'post__not_in' => array ( $product ->id) ); return $args ; } add_filter( 'woocommerce_related_products_args' , 'woo_related_products_limit' ); |
Không cho hiển thị sản phẩm trong category nào đó ở trang Shop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** * Remove products from shop page by category * */ function woo_custom_pre_get_posts_query( $q ) { if ( ! $q ->is_main_query() ) return ; if ( ! $q ->is_post_type_archive() ) return ; if ( ! is_admin() && is_shop() ) { $q ->set( 'tax_query' , array ( array ( 'taxonomy' => 'product_cat' , 'field' => 'slug' , 'terms' => array ( 'shoes' ), // Don't display products in the shoes category on the shop page 'operator' => 'NOT IN' ))); } remove_action( 'pre_get_posts' , 'custom_pre_get_posts_query' ); } add_action( 'pre_get_posts' , 'woo_custom_pre_get_posts_query' ); |
Tắt các tab như Review, Description trong sản phẩm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/** * Remove product tabs * */ function woo_remove_product_tab( $tabs ) { unset( $tabs [ 'description' ] ); // Remove the description tab unset( $tabs [ 'reviews' ] ); // Remove the reviews tab unset( $tabs [ 'additional_information' ] ); // Remove the additional information tab return $tabs ; } add_filter( 'woocommerce_product_tabs' , 'woo_remove_product_tab' , 98); |
Thay chữ “Free” thành một chữ bất kỳ
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/** * WooCommerce Extra Feature * -------------------------- * * Replace "Free!" by a custom string * */ function woo_my_custom_free_message() { return "Liên hệ để lấy giá" ; } add_filter( 'woocommerce_free_price_html' , 'woo_my_custom_free_message' ); |
Ẩn các phương thức vận chuyển khác khi phương thức miễn phí kích hoạt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Hide ALL shipping options when free shipping is available add_filter( 'woocommerce_available_shipping_methods' , 'hide_all_shipping_when_free_is_available' , 10, 1 ); /** * Hide ALL Shipping option when free shipping is available * * @param array $available_methods */ function hide_all_shipping_when_free_is_available( $available_methods ) { if ( isset( $available_methods [ 'free_shipping' ] ) ) : // Get Free Shipping array into a new array $freeshipping = array (); $freeshipping = $available_methods [ 'free_shipping' ]; // Empty the $available_methods array unset( $available_methods ); // Add Free Shipping back into $avaialble_methods $available_methods = array (); $available_methods [] = $freeshipping ; endif ; return $available_methods ; } |
Sửa thông báo sau khi thêm vào giỏ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/** * Custom Add To Cart Messages * Add this to your theme functions.php file **/ add_filter( 'woocommerce_add_to_cart_message' , 'custom_add_to_cart_message' ); function custom_add_to_cart_message() { global $woocommerce ; // Output success messages if (get_option( 'woocommerce_cart_redirect_after_add' )== 'yes' ) : $return_to = get_permalink(woocommerce_get_page_id( 'shop' )); $message = sprintf( '<a href="%s">%s</a> %s' , $return_to , __( 'Continue Shopping →' , 'woocommerce' ), __( 'Product successfully added to your cart.' , 'woocommerce' ) ); else : $message = sprintf( '<a href="%s">%s</a> %s' , get_permalink(woocommerce_get_page_id( 'cart' )), __( 'View Cart →' , 'woocommerce' ), __( 'Product successfully added to your cart.' , 'woocommerce' ) ); endif ; return $message ; } |
Tự thêm tỉnh/thành (States)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/** * Code goes in functions.php or a custom plugin. Replace XX with the country code your changing. */ add_filter( 'woocommerce_states' , 'custom_woocommerce_states' ); function custom_woocommerce_states( $states ) { $states [ 'XX' ] = array ( 'XX1' => 'State 1' , 'XX2' => 'State 2' ); return $states ; } |
Thay số lượng ảnh thumbnail trong sản phẩm
1
2
3
4
5
6
|
add_filter ( 'woocommerce_product_thumbnails_columns' , 'xx_thumb_cols' ); function xx_thumb_cols() { return 4; // .last class applied to every 4th thumbnail } |
Hiển thị ảnh đại diện cho category sản phẩm ở trang Category
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
add_action( 'woocommerce_archive_description' , 'woocommerce_category_image' , 2 ); function woocommerce_category_image() { if ( is_product_category() ) { global $wp_query ; $cat = $wp_query ->get_queried_object(); $thumbnail_id = get_woocommerce_term_meta( $cat ->term_id, 'thumbnail_id' , true ); $image = wp_get_attachment_url( $thumbnail_id ); if ( $image ) { echo '<img src="' . $image . '" alt="" />' ; } } } |
Sửa đường link nút “Add to Cart”
1
2
3
4
5
6
7
8
9
10
|
add_filter( 'add_to_cart_redirect' , 'custom_add_to_cart_redirect' ); function custom_add_to_cart_redirect() { /** * Replace with the url of your choosing * e.g. return 'http://www.yourshop.com/' */ return get_permalink( get_option( 'woocommerce_checkout_page_id' ) ); } |
Kéo dài field nhập địa chỉ
1
2
3
4
5
6
7
8
9
|
add_filter( 'woocommerce_billing_fields' , 'custom_woocommerce_billing_fields' ); function custom_woocommerce_billing_fields( $fields ) { $fields [ 'billing_address_1' ][ 'class' ] = array ( 'form-row-wide' ); $fields [ 'billing_address_2' ][ 'class' ] = array ( 'form-row-wide' ); return $fields ; } |
Ví dụ của vòng lặp hiển thị sản phẩm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<ul> <?php $args = array ( 'post_type' => 'product' , 'posts_per_page' => 12 ); $<a href= "http://thachpham.com/wordpress/wordpress-development/tim-hieu-wordpress-query-va-loop.html" title= "loop" ><strong>loop</strong></a> = new WP_Query( $args ); if ( $loop ->have_posts() ) { while ( $loop ->have_posts() ) : $loop ->the_post(); woocommerce_get_template_part( 'content' , 'product' ); endwhile ; } else { echo __( 'No products found' ); } wp_reset_postdata(); ?> </ul><!--/.products--> |
Sửa số lượng sản phẩm hiển thị ở mỗi trang
1
2
|
// Display 24 products per page. Goes in functions.php add_filter( 'loop_shop_per_page' , create_function( '$cols' , 'return 24;' ), 20 ); |
Ẩn sản phẩm liên quan
1
2
3
4
5
6
7
8
9
10
11
12
|
/* * wc_remove_related_products * * Clear the query arguments for related products so none show. * Add this code to your theme functions.php file. */ function wc_remove_related_products( $args ) { return array (); } add_filter( 'woocommerce_related_products_args' , 'wc_remove_related_products' , 10); |
1
|
remove_action( 'woocommerce_before_shop_loop' , 'woocommerce_catalog_ordering' , 30 ); |
Ảnh sản phẩm bo tròn
1
|
.woocommerce .woocommerce-tabs {border: 1px solid #e6e6e6} |
Đưa mô tả sản phẩm vào bên dưới ảnh sản phẩm
1
|
add_action( 'woocommerce_after_shop_loop_item_title' , 'woocommerce_template_single_excerpt' , 5); |
Tắt chức năng mã SKU
1
|
add_filter( 'wc_product_sku_enabled' , '__return_false' ); |
Còn rất nhiều chức năng hay khác nhưng đối với các chức năng phức tạp thì chúng ta nên dùng plugin sẽ hay hơn.
Nguồn: thachpham.com