Hi! Please, I need your help:
– I need to change an icon on the product page
– I need to delete a box (sort) of the product page
See image: http://www.autoschinos.cl/wp-content/uploads/2015/01/image-change.jpg
Thanks
Hi alfincobain!
Thank you for using Enfold.
Try to use this on Quick CSS to remove the sort display filter:
ul.sort-param.sort-param-count {
display: none !important;
}
Use this on functions.php to change the cart icon:
function avia_add_custom_icon($icons) {
$icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue859');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
Adjust the icon key value.
Best regards,
Ismael