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
Suggested bugfix:
The reason it fails in OCMOD is because of the index-attribute!
The index attribute should be 1-based, as in VQMOD, not zero-based.
In admin/controller/extension/modification.php, the lines around
// Get all the matches
$i = 0;
should be replaced with
// Get all the matches
$i = 1;
The text was updated successfully, but these errors were encountered:
The following OCMOD xml results in an unexpected 'Not Found' error for OpenCart 2.0.1.1:
The corresponding VQMOD xml works as expected:
Suggested bugfix:
The reason it fails in OCMOD is because of the index-attribute!
The index attribute should be 1-based, as in VQMOD, not zero-based.
In admin/controller/extension/modification.php, the lines around
should be replaced with
The text was updated successfully, but these errors were encountered: