- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2020
11:18 AM
09-22-2020
11:18 AM
I am trying to show the wishlist sidebar on a custom page, I have tried the following but cant seem to get it to show
{{block class="Magento\Wishlist\Block\Customer" name="customer.wishlist" template="sidebar.phtml"}}
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2020
03:31 AM
09-23-2020
03:31 AM
Hello @miller75
Check if your custom page layout is not 1 column it could be layout="2columns-left" or layout="2columns-right" c
Change that and check again.
After the layout is changed, if you still get the issue, add this to xml file:
<referenceContainer name="sidebar.additional"> <block class="Magento\Wishlist\Block\Customer\Sidebar" name="wishlist_sidebar_c" as="wishlistc" template="Magento_Wishlist::sidebar.phtml"/> </referenceContainer>
And, also check if <referenceContainer name="sidebar.additional" remove="true"/> is not in any custom/theme layout file.
Thanks.
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.
200+ Magento 2 Extensions for Enhanced Shopping Experience.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2020
03:31 AM
09-23-2020
03:31 AM
Hello @miller75
Check if your custom page layout is not 1 column it could be layout="2columns-left" or layout="2columns-right" c
Change that and check again.
After the layout is changed, if you still get the issue, add this to xml file:
<referenceContainer name="sidebar.additional"> <block class="Magento\Wishlist\Block\Customer\Sidebar" name="wishlist_sidebar_c" as="wishlistc" template="Magento_Wishlist::sidebar.phtml"/> </referenceContainer>
And, also check if <referenceContainer name="sidebar.additional" remove="true"/> is not in any custom/theme layout file.
Thanks.
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.
200+ Magento 2 Extensions for Enhanced Shopping Experience.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2020
04:28 AM