When editing or adding text to a product, the text in the top part of the page is what appears in the product tabs (below the product image, price, etc.). The short description is what appears right under the title, next to the product image. The short description is...
WooCommerce
PayPal Procedure to Intergrade the Advanced Version Check Out
I had to look up the word intergrade when I first came across the directions for this process. In a nutshell it means to merge gradually one with another through a continuous series of intermediate forms. Seems to me it is a fancy word for upgrade or update. In this...
Some Helpful Plugins for use with WooCommerce Plugins
There are many plugins out there to enhance Woo-Commerce functionality. Here are some of my favorite helpful plugins for use with WooCommerce. This list may be added to over time: Side Cart WooCommerce https://wordpress.org/plugins/side-cart-woocommerce/ Google...
Remove Default Selected State from WooCommerce Checkout Billing Fields
Please put this code in functions.php file. //default checkout state add_filter( 'default_checkout_billing_state', 'change_default_checkout_state' ); add_filter( 'default_checkout_shipping_state', 'change_default_checkout_state' ); function...
Do it Myself or Hire it Done?
I believe this article applies mostly to people operating a small business. Especially if what you do on the web is primarily a business endeavor for you. This type of question is always one of the many you face regarding completing webwork on your website. There are...
Removing the WooCommerce Product Long Description metabox
In order to remove the product long description metabox, simply add the following snippet to your website's functions.php file: function remove_pages_editor(){ remove_post_type_support( 'product', 'editor' ); } add_action( 'init', 'remove_pages_editor' ); Note: This...
Save Money in the Long Run with a Customized e-Commerce Website
In today's world, it's no secret that having an online presence is essential for any business. With the rise of e-Commerce, having a functional and user-friendly website is more important than ever. When it comes to building an e-Commerce website, there are two...