/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}


add_action('woocommerce_after_shop_loop_item', 'custom_view_product_button', 20);

function custom_view_product_button() {
    global $product;

    echo '<a href="' . get_permalink($product->get_id()) . '" class="view-detail-btn">Xem chi tiết sản phẩm</a>';
}