jQuery( function ( $ ) {
$('.td-quantity-button').on('click', function () {
var $this = $(this);
var $input = $this.parent().find('input');
var $quantity = $input.val();
var $new_quantity = 0;
if ($this.hasClass('plus')) {
var $new_quantity = parseFloat($quantity) + 1;
} else {
if ($quantity > 0) {
var $new_quantity = parseFloat($quantity) - 1;
}
}
$input.val($new_quantity);
});
});
]]>I love this great theme. However, it is no longer compatible with Worpdress 5.6. Because the slider and other javascript files are obsolete.
When i install wordpress 5.6, the old jquery js was not working.
Please fix it problem ? Thank you.
]]>Hi,
running a multisite installation wp ver 4 with geotheme buddypress child theme in use. After update the lates buddypress ver 2.1 the JQuery Mega menu structure of the site is ruinned.
Find here a screen shot –
Tried to resolve by deactivating the plugins jQuerey mega (vertical) menue and jQuery mega menu as well buddypress plugin, BUT no positive result.
The structure is still ruinned.
Need advice to get the latest update version to work with jQuery mega menu too.
Alex
https://www.ads-software.com/plugins/jquery-vertical-mega-menu/
]]>wp_deregister_script('jquery');
If I delete it most plugin stop work, slideshow working perfect then.
I was trying register jquery to slideshows.php
function SlideshowPluginMain() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
add_action('wp_enqueue_scripts', 'SlideshowPluginMain');
Plugin working after that but most plugins don’t.
How to register properly JQuery in slideshow plugin ?
https://www.ads-software.com/extend/plugins/slideshow-jquery-image-gallery/
]]>We are really grateful and impressed with your plugin. However we are noticing that this plugin broke all the javascript on our website. Our website is https://logos.solutions-lab.net – When we disable your plugin the site returns working fine. I am going to leave the plugin active for the time being in order for you to debug. Many thanks for your work
Matthew
https://www.ads-software.com/extend/plugins/jquery-accordion-slideshow/
]]>