- πΊπΈUnited States TomTech
Automatically closed because Drupal 7 security and bugfix support has ended β as of 5 January 2025. If the issue verifiably applies β to later versions, please reopen with details and update the version.
If you have a product listing like the following:
http://www.domain.com/taxonomy/term/1234/all?items_per_page=5&page=1
Then when you add a product to your cart from this page, the add to cart confirmation dialogue may not display any product information. The reason is because the "pager" in the add to cart confirmation view is colliding with the pager in the containing page.
I believe the solution to this problem is to change line 31 in commerce_add_to_cart_confirmation.views_default.inc from:
$handler->display->display_options['pager']['type'] = 'full';
To:
$handler->display->display_options['pager']['type'] = 'none';
I can't think of any problems this should cause since you are generally only adding one product to the cart at a time anyway.
Hope this helps!
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed because Drupal 7 security and bugfix support has ended β as of 5 January 2025. If the issue verifiably applies β to later versions, please reopen with details and update the version.