Espace réservé aux bonne idées et suggestions pour Joomlack.
VM addToCart CK fix
4 years 3 months ago - 4 years 3 months ago #57258
by galicin
VM addToCart CK fix was created by galicin
Hi!
There are a few imperfections with the plugin.
1. When you click add to cart on the category page, the effect is applied to the images of all products.
2. The "jswing" transition does not exist, that's right - "swing".
3. After scrolling the page, if the cart has a fixed positioning, the product image moves past the cart.
Fixes:
1. File vmaddtocarteffectck.php line 69
change to
2. File vmaddtocarteffectck.xml line 33
to
3. File vmaddtocarteffectck.php line 60
add (if fixed position cart, then when scrolling, the position of the cart changes relative to the top of the page )
There are a few imperfections with the plugin.
1. When you click add to cart on the category page, the effect is applied to the images of all products.
2. The "jswing" transition does not exist, that's right - "swing".
3. After scrolling the page, if the cart has a fixed positioning, the product image moves past the cart.
Fixes:
1. File vmaddtocarteffectck.php line 69
Code:
var imgtodrag = $('.".$categorycontainerclass." img.".$categoryimageclass."');
Code:
var imgtodrag = el.closest('.".$categorycontainerclass."').find('img.".$categoryimageclass."');
Code:
<option value="jswing">jswing</option>
Code:
<option value="swing">swing</option>
add (if fixed position cart, then when scrolling, the position of the cart changes relative to the top of the page )
Code:
$(window).scroll(function () {
vmcartck.top = vmcartck.offset().top;
vmcartck.left = vmcartck.offset().left;
})
Last edit: 4 years 3 months ago by galicin.
Please Log in or Create an account to join the conversation.
4 years 3 months ago #57263
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic VM addToCart CK fix
Hi
thank you for your effort and sharing the solution
I will check that and let you know soon
CEd
thank you for your effort and sharing the solution
I will check that and let you know soon
CEd
Joomlack Webmaster and Developer
Please Log in or Create an account to join the conversation.
4 years 3 months ago #57294
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic VM addToCart CK fix
can you please confirm which version of Joomla and Virtuemart you are using with the plugin ?
Joomlack Webmaster and Developer
Please Log in or Create an account to join the conversation.
4 years 3 months ago - 4 years 3 months ago #57345
by galicin
Replied by galicin on topic VM addToCart CK fix
Joomla 3.9.20
Virtuemart 3.4.2
php 7.3
Virtuemart 3.4.2
php 7.3
Last edit: 4 years 3 months ago by galicin.
Please Log in or Create an account to join the conversation.
4 years 3 months ago #57349
by ced1870
Joomlack Webmaster and Developer
Replied by ced1870 on topic VM addToCart CK fix
thank you
I'm checking but I don't have the same line number as you .. can you please send me the whole ZIP of your plugin version ? so that I can compare
I will the update it on joomlack.fr so that other people can download it
I'm checking but I don't have the same line number as you .. can you please send me the whole ZIP of your plugin version ? so that I can compare
I will the update it on joomlack.fr so that other people can download it
Joomlack Webmaster and Developer
Please Log in or Create an account to join the conversation.
4 years 3 months ago - 4 years 3 months ago #57351
by galicin
Replied by galicin on topic VM addToCart CK fix
Hi!
plg_vmaddtocarteffectck_1.1.0_j25.zip
If you mean line 60, it is empty in the plugin.
Simply put, you need to change lines 58-59
to
or, as I suggested earlier, add to line 60
In the first post, I attached an archive with files that require fix. You can compare plugin files with archive files.
plg_vmaddtocarteffectck_1.1.0_j25.zip
If you mean line 60, it is empty in the plugin.
Simply put, you need to change lines 58-59
Code:
vmcartck.top = vmcartck.offset().top;
vmcartck.left = vmcartck.offset().left;
Code:
vmcartck.top = vmcartck.offset().top;
vmcartck.left = vmcartck.offset().left;
$(window).scroll(function () {
vmcartck.top = vmcartck.offset().top;
vmcartck.left = vmcartck.offset().left;
})
Code:
$(window).scroll(function () {
vmcartck.top = vmcartck.offset().top;
vmcartck.left = vmcartck.offset().left;
})
Last edit: 4 years 3 months ago by galicin.
Please Log in or Create an account to join the conversation.
Time to create page: 0.247 seconds