- This topic has 16 replies, 4 voices, and was last updated 3 years, 2 months ago by
David.
-
AuthorPosts
-
September 29, 2020 at 3:55 pm #1464506
roadlink
Hi,
I read below post and exactly need same thing. But couldn’t find solution there.
https://generatepress.com/forums/topic/prime-library-site-cart-location/
Hey guys, I’m customizing the “Prime” template from the site library.
I want to replace the text “GP | Gutenberg | Woo” in Header the Widgets with a shopping cart/basket, and remove the existing cart/basket icon.
In short, I want to relocate the cart to the very top right corner in place of the “GP | Gutenberg | Woo” text as I want it to be as easy as possible to checkout (location is important)
-I’ve figured out how to edit/resize the text widget with CSS, I tried removing that in the Customizer and adding the “Cart” widget, but that adds the word and not the cart/basket symbol
September 29, 2020 at 6:00 pm #1464565Leo
StaffCustomer SupportHi there,
My solution should still work:
https://generatepress.com/forums/topic/prime-library-site-cart-location/#post-1242400What issue are you having?
September 29, 2020 at 10:34 pm #1464703roadlink
Hi Leo,
Yes, Indeed I read that post before open this one.
But couldn’t understand how to start, sorry 🙁September 30, 2020 at 8:08 am #1465518Leo
StaffCustomer SupportGo to Appearance > Widgets > Header to remove the default text widget then add in the cart widget:
https://www.screencast.com/t/32bRy7zVN2September 30, 2020 at 11:31 am #1465791roadlink
Hi Leo,
Thanks for reply.
I was trying to add cart icon like in the menu.
But your suggestion added whole cart content.
https://prnt.sc/uqsaikSeptember 30, 2020 at 11:43 am #1465810Leo
StaffCustomer SupportAhh unfortunately our cart icon option only works in the menu.
Sorry about that!
September 30, 2020 at 11:50 am #1465826roadlink
🙂 No problem, is there any way to take it there?
September 30, 2020 at 11:52 am #1465834Leo
StaffCustomer SupportSorry not sure what you mean by take it there?
The cart icon from GP only works in the primary navigation currently.
September 30, 2020 at 11:55 am #1465836roadlink
The cart icon from GP only works in the primary navigation currently.
Thanks, do you know any other method to show cart in header widget?
Not urgent, please take your time.thanks
September 30, 2020 at 11:57 am #1465839Leo
StaffCustomer SupportThe cart widget is from WooCommerce plugin itself.
Maybe there is a plugin out there that offers a similar option with a better appearance?
October 31, 2020 at 9:33 am #1512577roadlink
Hi again,
I saw a site which is using Generatepress. It has cart icon just next the search bar. (when you scrool a bit down)
https://prnt.sc/vas75yhttps://shopdesign2.key4dev.nl/product-categorie/computers-laptops/
Can it be done in this case?
October 31, 2020 at 6:50 pm #1512977Leo
StaffCustomer SupportThe top part (in green) is actually the primary navigation and the bottom part (in red) is using the secondary navigation which is why it’s able to use the cart icon from GP.
February 20, 2023 at 7:52 am #2540027Marcel
Hi, I was wondering if there is already a way to display the shopping cart icon in a custom location. Maybe via a hook?
February 20, 2023 at 10:15 am #2540209David
StaffCustomer SupportHi there,
add the following PHP Snippet to your site:
add_shortcode( 'wc_cart_menu_items', function() { ob_start(); echo generate_wc_do_cart_menu_item(); return ob_get_clean(); } );then you can add the
[wc_cart_menu_items]shortcode to anywhere you need it.February 20, 2023 at 11:47 am #2540329roadlink
Hi David,
I even forget that I asked about this but solution is great.
thanks -
AuthorPosts
- You must be logged in to reply to this topic.