How to Create Your Own WordPress Shortcodes // Create Your Own Simple Custom Shortcode In WordPress function lorem_function() { // Your stuffs goes here return 'Lorem ipsum dolor s... Tuesday, January 22, 2019
Remove Main Description Editor from Woocommerce // Remove Main Description Editor from Woocommerce function remove_product_editor() { remove_post_type_support( 'product', 'ed... Wednesday, January 16, 2019
WooCommerce Change Number of Related Products // WooCommerce Change Number of Related Products add_filter( 'woocommerce_output_related_products_args', 'woo_change_number_re... Thursday, January 10, 2019
Remove Sidebar @ Single Product Page // Remove Sidebar @ Single Product Page add_action( 'wp', 'bbloomer_remove_sidebar_product_pages' ); function bbloomer_rem... January 10, 2019
Change or Translate "You may also like..." Text - WooCommerce Upsell/Cross Sale Products /* Change "You may also like..." Text - WooCommerce */ add_filter( 'gettext', 'upsell_text_translate_like' ); ... Wednesday, January 9, 2019
Remove cross-sells at cart (You May be Interested in… SECTION) // Remove cross-sells at cart remove_action( 'woocommerce_cart_collaterals', 'woocommerce_cross_sell_display' ); Tuesday, January 8, 2019
Show Widget anywhere in WordPress using Hook /* Show Widget anywhere in WordPress using Hook */ function show_widget_anywhere_byhook() { if ( !function_exists('dynamic_sidebar... Monday, January 7, 2019
Disable plugin update notifications in WordPress /* Disable plugin update notifications in WordPress */ function filter_plugin_updates( $value ) { unset( $value->response['PLUGI... Saturday, January 5, 2019 WooCommerce WordPress
Shortcode to get WordPress current theme directory URL /* Shortcode to get WordPress current theme directory URL */ function theme_url_shortcode( $attrs = array (), $content = '' ) { ... January 05, 2019 WooCommerce WordPress
Adding a New Widget Area to Your WordPress Site 1. Registering a custom widget area To registering a widget area add following code in your theme’s functions.php file. function head... Friday, January 4, 2019 WooCommerce WordPress
Number of products to show on shop page in a row /* -- Number of items to show on shop page in a row -- */ if (!function_exists('loop_columns')) { function loop_columns() ... January 04, 2019 WooCommerce WordPress
WordPress Password Retrieval/Reset via PhpMyAdmin Navigate to phpMyAdmin under Databases Select your database (Your web host will help you can’t find your database) Navigate ... Thursday, January 3, 2019 PhpMyAdmin WooCommerce WordPress
Change YITH Compare Button Position or Add it on Product Items /*-- Change YITH Compare Button Position or Add it on Product Items --*/ if ( class_exists( 'YITH_Woocompare_Frontend' ) ) { g... January 03, 2019 WooCommerce WordPress YITH
Show YITH Wishlist Button on Product Items in WooCommerce /* -- Show YITH Wishlist Button on Product Lists in WooCommerce -- */ function yith_wcwl_add_wishlist_to_loop(){ echo do_shortcode( ... January 03, 2019 WooCommerce WordPress YITH