function.php
CSS Theme:
/* Khắc phục lỗi xô lệch hiển thị trong Chrome 39 */
.sf-menu a { white-space: nowrap }
.footernav ul li a { white-space: nowrap }
/* Tạo 2 cột ở Chân trang khi duyệt từ mobile */
@media (max-width: 480px) {
.kad_product {
width: 50%;
float:left;
}
}
/* Bỏ chân trang và lề trang khi duyệt từ di động,
tức là xoay điện thoại vẫn hiện đủ: */
@media (max-width: 480px) {
aside.kad-sidebar, #containerfooter {display: none;}
}
/* hide the posts date, author and category info */
.subhead, .postdate, .kad-hidedate, .postdatetooltip {display:none;}
.posttags {display:none;}
Cách sử dụng chỉ là copy và paste vào file functions.php trong theme bạn đang sử dụng
Thay chữ “Free” thành một chữ bất kỳ
/**
* 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');