/* Increase the image size in the slider */ .container { width: 100%; max-width: 90%; /* margin: 0 auto; */ } .custom-slider.slick-initialized.slick-slider { position: absolute; width: 111.11%; /* Set width to 100% to make it stretch */ top: -45px; /*…Continue reading
if (is_front_page()) : ?>Continue reading
/* Reset some default styles */ body, h1, ul { margin: 0; padding: 0; } /* Hide the container by default for larger screens */ .mobile-bottom-menu-container { display: none; } /* Column styles */ .mobile-bottom-menu-column { flex: 1; text-align: center;…Continue reading
Home Shop Cart AccountContinue reading
/* Style the footer container */ #custom-footer { background-color: #fff; /* White background */ padding: 1px; width: 1200px; max-width: 90%; margin: 0 auto; } /* Reduce the margin bottom for elements within .footer-column */ .footer-column h3 { margin-bottom: 5px; /*…Continue reading
About Us “Ilavanam is a farm in Tiruppur. Ilavanam is trying to lead sustainable living. The motto of this farm is not to earn more profit in agriculture but to lead a happy and healthy life with some sharing 😊🍃”…Continue reading
/** * Show a user’s display name/user name in a WordPress menu. * Once this code is added to your site, you may add {{username}} to the link text. * Follow this guide to add code to your WordPress site…Continue reading
.woocommerce table.shop_table .product-remove { text-align: center !important; display: none; }Continue reading
add_filter( ‘woocommerce_cart_item_permalink’, ‘custom_remove_cart_product_link’, 10 ); function custom_remove_cart_product_link() { return __return_null(); }Continue reading
/** * Snippet Name: Remove the Order Notes field section from the WooCommerce checkout. * Snippet Author: ecommercehints.com */ add_filter( ‘woocommerce_enable_order_notes_field’, ‘__return_false’, 9999 ); add_filter( ‘woocommerce_checkout_fields’ , ‘remove_order_notes’ ); function remove_order_notes( $fields ) { unset($fields[‘order’][‘order_comments’]); return $fields; }Continue reading