How to reorder or add an extra field on woocommerce product page
At first, we can see the hook used in woocommerce product page.
How to change woocommerce sort by text in shop page
Just copy and paste the code your active child theme of functions.php.(take a backup of your website before doing it) add_filter('woocommerce_catalog_orderby', 'wc_customize_product_sorting'); function wc_customize_product_sorting($sorting_options){ $sorting_options = array( 'menu_order' => __(…
Upload files from Woocommerce product page
WooCommerce Upload Files Free plugin available. In the free version, you can upload 1 picture at a time. File Uploads Addon for WooCommerce
Enable uploading .csv file type on your WordPress Website
Step 1: Copy the code below & paste it to your 'wp-config.php' file your WordPress website directory define('ALLOW_UNFILTERED_UPLOADS', true); Step 2: Copy the code below & paste it to your…
Image Gallery in Product page with JavaScript
Step 1: Copy the code below & paste it on your product page in the big image(change the src of image with your product image source) Step 2: Copy the…