Make all WooCommerce Pages Full Width in Genesis (including Product Pages)
You can set all of WooCommerce pages including all product pages to be full width content inside of a Genesis Theme by adding a function and filter to your functions.php file. So in the above the WooCommerce shop, cart and checkout pages are targeted in an array plus the custom post type ‘Products’ which is…
Read MoreChanging the WooCommerce Payment Gateway Order
You can change the Woocommerce payment gateway order in the checkout page, it’s pretty easily without touching any code, here is how you can move Stripe above Paypal or re-arrange the order at your will – just go to WordPress Dashboard > WooCommerce > Settings > Checkout. Scroll down to the payment gateways and click…
Read MoreRemove Password Strength Rules in WooCommerce Checkout
You can remove the password strength rules in WooCommerce checkout page when signing up for an account password, obviously this is less secure but may lessen cart abandonment by your customers – I have a few sites whereby this is a pain point for users. This snippet from @WPprodigy will take the strength-o-meter policy away…
Read MoreRemove Related Products on Product Page in WooCommerce
To remove related products on a WooCommerce product page…
Read MoreAdding Product Content Description Above the Product in WooCommerce
By default in WooCommerce the product description of a product sits inside the ‘Description’ tab, with the Short Description displayed more prominent alongside the product. Here is how to swap that order and display the product content at the head of the page and remove the tab description (…as it will display twice). So in…
Read MorePosition Genesis Simple Share Icons in WooCommerce Products and Shop Page
By default when using Genesis Simple Share icons in WooCommerce products, the placement of these icons are not great. If you where to position the icons above or below the content in the Settings of Genesis Simple Share for WooCommerce Products, this is where they would end up… In a regular WordPress post the placement is fine…
Read MoreAdd a WooCommerce Sidebar with Genesis Simple Sidebars
Here is how to add a separate sidebar for WooCommerce pages using Genesis Simple Sidebars. One of the ways to make WooCommerce and Genesis play nicely is using a plugin called Genesis Connect for WooCommerce , but users are having issues with its code and from my own experience it is troublesome if also using Genesis Simple Sidebars,…
Read MoreRemove Default Sort in WooCommerce and ‘Showing All Results’ Notice
In an e-commerce environment using WooCommerce when there is only a few products to sell, it is cleaner and more intuitive to rid the space of some clutter – such as the ‘Default Sorting‘ options dropdown and the display notice ‘Showing all x results‘. Add this code in your themes functions.php file and you will have…
Read MoreHide WooCommerce for Unregistered Users in WordPress
You can hide the core pages of WooCommerce from unregistered users using a simple WordPress redirect function called template_redirect. This may come in handy if the woocommerce component is still in development or has a delayed release or is for WordPress registered users only. Add to your functions.php file The code will essentially redirect any…
Read MoreAdd Text After the Price in a WooCommerce Product
You can add a bit of static text after the price in a WooCommerce Product by using a woocommerce filter woocommerce_get_price_html. For the above product I want to add some text just after the price to a certain range of products. Here below is the code to do that: So I have set my target products in…
Read More