Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.
Mục lục
Các đoạn code hay dùng cho theme bán hàng Flatsome: Nói về các Theme bán hàng bằng WordPress thì phải nói ngay đến Flatsome vì nó là lựa chọn hàng đầu cho các Dev khi phát triển Web vì khả năng tùy biến cực cao và dễ dàng. Trong bài viết này Blog thủ thuật máy tính WCT sẽ tổng hợp các đoạn code hay dùng cho theme bán hàng này.
Các đoạn code hay dùng cho theme bán hàng Flatsome
Mình không phải chuyên Code nên có một số cái mình tổng hợp từ các nguồn trên Internet và một số là do mình tự làm , nếu các bạn thấy phù hợp với nhu cầu của mình thì các bạn có thể tham khảo các đoạn code hay dùng cho theme bán hàng Flatsome nhé.
1. Code liên hệ trước hoặc sau chỗ thêm giỏ hàng
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 |
<span class="title-hotline"><a href="tel:0972939830">GỌI TƯ VẤN</a></span> <span class="chat-zalo"><a href="/huong-dan-mua-hang/">HƯỚNG DẪN MUA HÀNG</a></span> <style> *, *:before, *:after { box-sizing: border-box; } .chat-zalo { width: 49%; background-color: #fd6e1d; padding: 8px 15px; display: inline-block; text-align: center; border-radius: 5px; line-height: 20px; } .chat-zalo a { color: #fff; } .title-hotline { width: 49%; background-color: #fd6e1d; padding: 8px 10px; display: inline-block; text-align: center; border-radius: 5px; line-height: 20px; margin-bottom: 10px; } .title-hotline a { color: #fff; } </style> |
2. 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 |
/* * 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 ); |
3. 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 |
/* * 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' ); |
4. 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 |
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; } |
5. 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 |
/** * 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' ); |
6. Tự chuyển tới trang thanh toán sau khi thêm vào giỏ
Hiện tại tính năng này không cần sử dụng code nữa mà bạn có thể bật trong Woocommerce -> Settings -> Products -> Display và chọn Redirect to the cart page after successful addition.
7. 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 |
/** * 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' ); |
8. 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 |
/** * 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' ); |
9. 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); |
10. Thay chữ “Free” thành một chữ bất kỳ
1 2 3 4 5 6 7 8 9 10 11 12 |
/** * 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'); |
11. 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 22 23 |
/** * 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" class="button">%s</a> %s', $return_to, __('Continue Shopping →', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') ); else : $message = sprintf('<a href="%s" class="button">%s</a> %s', get_permalink(woocommerce_get_page_id('cart')), __('View Cart →', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') ); endif; return $message; } |
12. 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; } |
13. Thay số lượng ảnh thumbnail trong sản phẩm
1 2 3 4 |
add_filter ( 'woocommerce_product_thumbnails_columns', 'xx_thumb_cols' ); function xx_thumb_cols() { return 4; // .last class applied to every 4th thumbnail } |
14. 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 |
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="" />'; } } } |
15. Sửa đường link nút “Add to Cart”
1 2 3 4 5 6 7 8 9 |
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') ); } |
16. Sửa số lượng sản phẩm hiển thị ở mỗi trang
1 2 3 |
// Display 24 products per page. Goes in functions.php add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 ); |
17. Ẩn sản phẩm liên quan
1 2 3 4 5 6 7 8 9 10 11 |
/* * 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); |
18. Ảnh sản phẩm bo tròn
1 |
.woocommerce .woocommerce-tabs {border: 1px solid #e6e6e6} |
19. Đư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); |
20. Tắt chức năng mã SKU
1 |
add_filter( 'wc_product_sku_enabled', '__return_false' ); |
21. Code tự động lưu ảnh từ web khác về sever mình
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
class Auto_Save_Images{ function __construct(){ add_filter( ‘content_save_pre’,array($this,’post_save_images’) ); } function post_save_images( $content ){ if( ($_POST[‘save’] || $_POST[‘publish’] )){ set_time_limit(240); global $post; $post_id=$post->ID; $preg=preg_match_all(‘/<img.*?src=”(.*?)”/’,stripslashes($content),$matches); if($preg){ foreach($matches[1] as $image_url){ if(empty($image_url)) continue; $pos=strpos($image_url,$_SERVER[‘HTTP_HOST’]); if($pos===false){ $res=$this->save_images($image_url,$post_id); $replace=$res[‘url’]; $content=str_replace($image_url,$replace,$content); } } } } remove_filter( ‘content_save_pre’, array( $this, ‘post_save_images’ ) ); return $content; } function save_images($image_url,$post_id){ $file=file_get_contents($image_url); $post = get_post($post_id); $posttitle = $post->post_title; $postname = sanitize_title($posttitle); $im_name = “$postname-$post_id.jpg”; $res=wp_upload_bits($im_name,”,$file); $this->insert_attachment($res[‘file’],$post_id); return $res; } function insert_attachment($file,$id){ $dirs=wp_upload_dir(); $filetype=wp_check_filetype($file); $attachment=array( ‘guid’=>$dirs[‘baseurl’].’/’._wp_relative_upload_path($file), ‘post_mime_type’=>$filetype[‘type’], ‘post_title’=>preg_replace(‘/\.[^.]+$/’,”,basename($file)), ‘post_content’=>”, ‘post_status’=>’inherit’ ); $attach_id=wp_insert_attachment($attachment,$file,$id); $attach_data=wp_generate_attachment_metadata($attach_id,$file); wp_update_attachment_metadata($attach_id,$attach_data); return $attach_id; } } new Auto_Save_Images(); |
22. Nếu sản phẩm không có giá sẽ hiển thị Liên hệ
1 2 3 4 5 6 7 |
add_filter(‘woocommerce_empty_price_html’, ‘custom_call_for_price’); function custom_call_for_price() { return ‘<span class=”lien-he-price”>Liên hệ</span>’; } |
23. Thêm 1 Tab mới trong Woocormerce
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 |
add_filter( ‘woocommerce_product_tabs’, ‘woo_new_product_tab’ ); function woo_new_product_tab( $tabs ) { // Adds the new tab $tabs[‘test_tab’] = array( ‘title’ => __( ‘Lịch trình chi tiết’, ‘woocommerce’ ), ‘priority’ => 50, ‘callback’ => ‘woo_new_product_tab_content’ ); return $tabs; } function woo_new_product_tab_content() { // The new tab content echo “Nội dung”; } |
24. Thêm text tùy chọn vào sau giá
1 2 3 4 5 6 7 |
add_filter( 'woocommerce_get_price_html', 'devvn_price_prefix_suffix', 99, 2 ); function devvn_price_prefix_suffix( $price, $product ){ if(is_singular('product')) { $price = $price . '(Chưa bao gồm VAT)'; } return apply_filters( 'woocommerce_get_price', $price ); } |
25. Code tạo nút liên hệ đẹp cột trái
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<div class=”icon-bar”> <a target=”_blank” rel=”noopener noreferrer” href=”https://www.facebook.com/congtygophuongnam/” class=”float-shadow”> <img src=”/wp-content/uploads/2019/05/facebook-1.png” alt=”Facebook” title=”Facebook” width=”48″ height=”48″> </a> <a target=”_blank” rel=”noopener noreferrer” href=”https://zalo.me/1656335684749387114″ class=”float-shadow”> <img src=”/wp-content/uploads/2019/05/zalo-1.png” width=”48″ height=”48″ alt=”Zalo” title=”Zalo”> </a> <a target=”_blank” rel=”noopener noreferrer” href=”https://www.youtube.com/channel/UCJ3wQAJiZBzum9RWN1TLUYA?view_as=subscriber” class=”float-shadow”> <img src=”/wp-content/uploads/2019/05/youtube-1.png” width=”48″ height=”48″ alt=”youtube” title=”youtube”> </a> </div> |
1 2 3 |
.icon-bar { position: fixed; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); z-index: 999; } .icon-bar a { display: block; text-align: center; padding: 6px; transition: all 0.3s ease; color: white; font-size: 20px; } .icon-bar a:hover { -ms-transform: scale(1.1); /* IE 9 */ -webkit-transform: scale(1.1); /* Safari 3-8 */ transform: scale(1.1); } |
Kết luận
Trên đây là một số các đoạn code hay dùng cho theme bán hàng Flatsome mà mình đã tìm tổng hợp từ các Dev, mình cũng đã áp dụng cho các Web bán hàng của mình. Hy vọng nó sẽ có ích với các bạn, chúc bạn thành công.
Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.