Exel
Exel
admin\view\template\marketplace\marketplace_list.twig Find: ``` ``` Replace with: ``` ``` TLDR; Remove the un-used call to download(), not sure why that's there
That's an easy fix. catalog\view\template\checkout\cart.twig Find `$('#shopping-cart').on('click', '.btn-danger', function(e) {` Replace with: `$('#shopping-cart').on('click', '#output-cart .btn-danger', function(e) {` TLDR; the coupon delete button also has the .btn-danger class so it was...
extension\opencart\admin\view\template\report\customer_activity.twig Looks like changing this: ``` $('#customer-activity').on('click', '.pagination a', function(e) { e.preventDefault(); console.log(this.href); $('#customer-activity').load(this.href); }); ``` to this: ``` $('#customer-activity').on('click', '.pagination a', function(e) { e.preventDefault(); console.log(this.href); $('#report').load(this.href); }); ``` fixes...
@pemaier, easier solution that I think is actually the more correct one: Revert the changes above, so keep it: `$('#customer-activity').load(this.href);` extension\opencart\admin\controller\report\customer_activity.php Find: ``` $data['pagination'] = $this->load->controller('common/pagination', [ 'total' => $activity_total,...
admin\view\template\sale\order.twig Find: `$('input[name^=\'selected\']').on('change', function() {` Replace with: `$('#content').on('change', 'input[name^=\'selected\']', function() {` Why does this work? The old code attaches the event handler only to the input elements that exist at...