Eli
Forum Replies Created
-
Forum: Reviews
In reply to: [WooCommerce Quantity Increment] Works Great & Here is the fix for Woo 2.6.0I recently:
– deactivated WooCommerce Quantity Increment plugin
– changed the code of wc-quantity-increment.js file that is located under wp-content/plugins/woocommerce-quantity-increment/assets/js folder with your code
– after that created minified version wc-quantity-increment.min.js using online tool
– activated the plugin back and refreshed the page.
There are no changes.After that I tried using separate javascript:
– deactivated WooCommerce Quantity Increment plugin
– copied the file wc-quantity-increment.min.js with your content inside to
wp-content/themes/mystile-child/js/ folder
– added following code to wp-content/themes/mystile-child/functions.php:
/****************************/
function theme_js() {
wp_enqueue_script( ‘theme_js’, get_stylesheet_directory_uri() . ‘/js/wc-quantity-increment.min.js’, array( ‘jquery’ ), ‘1.0’, true );
}
add_action(‘wp_enqueue_scripts’, ‘theme_js’);
/****************************/
and I still can’t see any changes.Nor the increment buttons nor quantity (for example 1) is visible, only Add to cart button as before.
- This reply was modified 8 years, 1 month ago by Eli.
Forum: Reviews
In reply to: [WooCommerce Quantity Increment] Works Great & Here is the fix for Woo 2.6.0Hi there,
where should I put this code?
Forum: Plugins
In reply to: [Polylang] Put Polylang language switcher into header.phpHi
I see that you have found a solution. How did you make it?
Regards
Forum: Fixing WordPress
In reply to: Windows 10 – logging in problemYou can do the following and try again.
Go to Start, type in services.msc
Scroll down in the Services window to find the World Wide Web Publishing Service.
Right click on it and select Stop.
This should make port 80 free and restarting WAMP/XAMPP should get you up and running!Forum: Fixing WordPress
In reply to: Windows 10 – logging in problemHi, as I remember you have to disable one service which comes enabled as default with Win 10 but I can’t remember the name. I have written its name at work.
Forum: Fixing WordPress
In reply to: Windows 10 – logging in problemHello,
I’m having the same problem. Did you guys found any solution?