Using Selenium library for updating products in WooCommerce? Yes it’s possible…

Using Selenium library for updating products in WooCommerce? Yes it’s possible…

Selenium is a popular library made for internet apps browser tests. But are there other ways of using it? Sure, Selenium automates browsers. It can do nearly anything you can do in a web browser. Let’s imagine that you have a big e-commerce site with hundreds of products. You need to change all the prices…

Automation Tests for your WordPress site – worth of attention?

Automation Tests for your WordPress site – worth of attention?

Writing tests is a common practice in big IT projects. It’s normal if you’re writing a new app, but is this practice worth your attention when you have a WordPress site? Like always, there are “yes” or “no”, it depends… If you have a small site with 5 subpages, it does not make much sense….

Adding Conditional to WooCommerce Display Product Logic – Category Conditionals

Adding Conditional to WooCommerce Display Product Logic – Category Conditionals

Many times we want to make one or more categories display in different way in our WooCommerce shop. WordPress and WooCommerce API give us possibilities of using hooks in conditionals to display content elements we want. Lets imagine that we want add or remove something if product belong to certain category ( for example we…

Hiding ‘Add to the card’ button in WooCommerce

Hiding ‘Add to the card’ button in WooCommerce

There are plenty of ways of hiding ‘Add to the card’ button in WooCommerce. You can edit functions.php file adding filter or action removing or hiding part of WooCommerce template. But in my opinion easiest way of do it is just change you css in wp-admin panel. You can do it adding this code at Appearance/Customize/Additional…