Home › Forums › WoodMart support forum › Product not adding to cart › Reply To: Product not adding to cart
October 28, 2017 at 10:02 am
#22760
Pernilla
Participant
Thank you but it still does not work ;(
Did I add it correctly into functions.php?
It looks like this:
<?php
add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 1000 );
function woodmart_child_enqueue_styles() {
if( woodmart_get_opt( 'minified_css' ) ) {
wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.min.css', array('bootstrap') );
} else {
wp_enqueue_style( 'woodmart-style', get_template_directory_uri() . '/style.css', array('bootstrap') );
}
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('bootstrap') );
}
add_filter( 'basel_ajax_add_to_cart', '__return_false' );