Today i am sharing small snippet that removes Pagination Trail from WooCommerce breadcrumbs. Some shop owners may dislike this built-in feature and would like remove WooCommerce pagination links from WooCommerce navigation breadcrumb. First let’s see how is before-after state of this change. Before: After: Now let’s write a snippet for that:
Today i’m sharing with you some useful codes for creating WooCommerce orders at backend side, via your own code. Let’s get started:
Plugin Description Most WooCommerce store owners just ignores their website’s search section and lose a lot of potential customers due to this. That’s why they keep their theme’s poor search module unchanged. Or in best case they use simple live ajax search, which is not much effective and which is really slow.(in each simple typing …
Continue reading “Make your WooCommerce search smarter and increase your conversions & sales”
2 days ago we, Totheme Labs team released new plugin for WooCommerce, called “Recently Viewed Products for WooCommerce”. It is beautiful product history plugin for WooCommerce. Shop owner can create separated page, widget, footer popups to display this data to his customers. Once it is activated, it collects the customer visit data, and shows his history …
Continue reading “Amazon like Last Visited Products for WooCommerce”
Usually WooCommerce themes have their own search forms, from simple “input-submit” to advanced “input-filter1-filter2-…-checkbox1-submit” ones. But sometimes shop owners meet a such problem: Their search form takes the visitor to WP search results page instead of WooCommerce rich search result one. What is the difference between these two results page? WP Search results page is simple – …
Continue reading “Make any search form to take a visitor to WooCommerce Search Results page instead of default WP Search Results page”
Time-saving Tools for the Modern Web – Free and Instant, No Signup Needed. Welcome to your one-stop solution for digital tools, web services, and resourceful blog content centered around WordPress (WP) and WooCommerce development. Delve into my suite of instant and user-friendly converters like the CSV to Chart converter and List to Chart tool, which …
Continue reading “Essential Web Tools in One Place”
To remove independent function from WP actions/filters is easy thing, we know. We just set remove_action(‘action_name’, ‘function_name’, PRIORITY); and that’s all. But this simple way doesn’t work for Class Methods. That’s why there is another approach for classes. Well, in some cases this method doesn’t help us either. f.e. When we shouldn’t re-construct that class. …
Continue reading “Removing added Class Methods from Action/Filters in WordPress”
If you want to check this inside the some hook, which runs after plugins_loaded hook, it is very simple. Just check some plugin specific constant or function exists or not. For example, to check WooCommerce we will need to check any WOO constant is defined or not. Or it is enough to check if class …
Continue reading “Check if some plugin installed & active or not”