You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In admin (version 1.11.1) removing featured products from the list is not working. The error is in the file "admin\view\template\module\featured.tpl". To correct the error:
Code at Line 303:
$('#featured-product div img').live('click', function() {
$(this).parent().remove();
Must be changed to:
$('#featured-product').delegate( 'img', 'click', function() {
$(this).parent().remove();
The text was updated successfully, but these errors were encountered:
In admin (version 1.11.1) removing featured products from the list is not working. The error is in the file "admin\view\template\module\featured.tpl". To correct the error:
Code at Line 303:
$('#featured-product div img').live('click', function() {
$(this).parent().remove();
Must be changed to:
$('#featured-product').delegate( 'img', 'click', function() {
$(this).parent().remove();
The text was updated successfully, but these errors were encountered: