add_filter( 'woocommerce_product_reviews_tab_title', 'add_stars_to_reviews_tab_item', 98 ); function add_stars_to_reviews_tab_item( $title ) { global $product; $average_rating = $product->get_average_rating();read more...
add_action( 'wp_enqueue_scripts', 'ets_deactivate_pass_strength_meter', 10 ); function ets_deactivate_pass_strength_meter() { wp_dequeue_script( 'wc-password-strength-meter' ); } read more...
function example_admin_bar_remove_logo() { global $wp_admin_bar; $wp_admin_bar->remove_menu( 'wp-logo' ); } add_action( 'wp_before_admin_bar_render', 'example_admin_bar_remove_logo', 0 ); read more...
function remove_footer_admin () { echo 'Designed by <a href=" https://ecommtrics.com " target="_blank">ecommtrics.com </a></p>'; } add_filter('admin_footer_text',read more...
SiteGround hosting Every website needs hosting. Unless you happen to operate a web hosting agency,read more...
Yoast Plugin Search Engine Optimization (SEO) can be a very technical field. It is alsoread more...
WP Rocket Plugin WP Rocket is a WordPress plugin that facilitates faster page loads andread more...
Google Search console Google Search Console is a free tool from Google that helps youread more...
Google Analytics Google analytics is a free service provided by Google that helps webmasters, siteread more...
add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 ); function shorten_woo_product_title( $title, $id ) { if ( !read more...
add_filter( 'woocommerce_checkout_fields' , 'ets_add_field_and_reorder_fields' ); function ets_add_field_and_reorder_fields( $fields ) { // Add New Fields $fields['billing']['billing_houseno']read more...
add_action( 'woocommerce_after_shop_loop_item', 'ets_show_stock_shop', 10 ); function ets_show_stock_shop() { global $product; echo wc_get_stock_html( $product ); }read more...