We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think that there is a minor error on the wishlist template.
<tbody id="wishlist-row<?php echo $product['product_id']; ?>"> <?php foreach ($products as $product) { ?> <tr>...</tr> <?php } ?> </tbody>
Instead of
<?php foreach ($products as $product) { ?> <tbody id="wishlist-row<?php echo $product['product_id']; ?>"> <tr>...</tr> </tbody> <?php } ?>
One <tbody> per <table>, right ?
<tbody>
<table>
PS : Is anyone here with a good github issues tutorial ?
The text was updated successfully, but these errors were encountered:
https://github.com/opencart/opencart/issues/2273
13ce3c1
28ad08f
about
no you can have as many as you want.
tbody was is used from grouping table rows.
Sorry, something went wrong.
No branches or pull requests
I think that there is a minor error on the wishlist template.
Instead of
One
<tbody>
per<table>
, right ?PS : Is anyone here with a good github issues tutorial ?
The text was updated successfully, but these errors were encountered: