Home › Forums › WoodMart support forum › Wish button
Wish button
- This topic has 19 replies, 2 voices, and was last updated 2 years, 6 months ago by Elise Noromit.
-
AuthorPosts
-
May 29, 2022 at 12:03 pm #379612
pullmanParticipantHello,
How to “add wish button” next to “add to cart “button?
I need “button” but icon with text. like this.
Attachments:
You must be logged in to view attached files.May 30, 2022 at 12:04 am #379715
Elise NoromitMemberHello,
Could you kindly clarify the place where you want to add this button? Please consider WooCommerce layouts builder : https://xtemos.com/docs-cat/woocommerce-layouts-builder/?theme=woodmart
If you have any questions please feel free to contact us.
Best Regards
May 30, 2022 at 6:11 am #379758
pullmanParticipantHello,
I’m editing Dashboard >> Layouts >> Single Product layout with Elementor, and created a section has two
columns. “add to cart button” on the left side, “add to wishlist button” on right side.I need the “wish button” that in same shape as “add to cart button”. currently, it is displayed only icon and text like ” β‘WISH”.
Attachments:
You must be logged in to view attached files.May 31, 2022 at 2:11 am #380040
Elise NoromitMemberHello,
You need to change the width of the columns as per your needs in the same way as you do with the content on pages or posts.
If you have any questions please feel free to contact us.
Best Regards
May 31, 2022 at 5:53 am #380082
pullmanParticipantHello,
It’s not about column width but I need the same shape button as the “add to cart button”.
I need the Text on Button.
Attachments:
You must be logged in to view attached files.May 31, 2022 at 5:55 am #380084
pullmanParticipantI drew the button I need. ( β screenshot)
May 31, 2022 at 12:30 pm #380178
Elise NoromitMemberHello,
Please provide the page URL and check if it is possible to do it with custom CSS.
Best Regards
May 31, 2022 at 5:18 pm #380258
pullmanParticipantHello,
Here’s our site URL π
June 1, 2022 at 2:44 am #380318
Elise NoromitMemberHello,
You need to delete duplicated button and add this custom CSS:
.wd-action-btn.wd-style-text>a { font-size: 13px; line-height: 18px; border-radius:35px; color: white; box-shadow: var(--btn-shop-box-shadow); background-color: var(--btn-shop-bgcolor); position: relative; display: inline-flex; align-items: center; justify-content: center; outline: none box-shadow: none; vertical-align: middle; text-align: center; text-decoration: none; text-transform: uppercase; text-shadow: none; font-weight: 600; cursor: pointer; transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease; width:157px; } .wd-action-btn.wd-style-text>a:hover { font-size: 13px; line-height: 18px; border-radius:35px; color: white; box-shadow: var(--btn-shop-box-shadow); background-color: rgb(1,140,18); position: relative; display: inline-flex; align-items: center; justify-content: center; outline: none box-shadow: none; vertical-align: middle; text-align: center; text-decoration: none; text-transform: uppercase; text-shadow: none; font-weight: 600; cursor: pointer; transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease; width:157px; }
Best Regards
June 1, 2022 at 6:23 am #380352
pullmanParticipantHello,
I delete the wish button and added the code, but nothing shows up.
Could you please check my admin panel??
June 1, 2022 at 1:10 pm #380438
Elise NoromitMemberHello,
Now I do not see a wishlist icon at all: https://gyazo.com/fe2e592e303f39c28311fd38639275fe
Please clarify.
If you have any questions please feel free to contact us.
Best Regards
June 1, 2022 at 3:03 pm #380505
pullmanParticipantHello,
I re-added wish button. is it possible to make the wish button in same size as cart button??
and I need to display the wish button next to cart button.
June 2, 2022 at 1:27 am #380652
Elise NoromitMemberHello,
Please replace the code provided above with this one:
.wd-action-btn.wd-style-text>a { padding:12px; border-radius:35px; color: white; box-shadow: var(--btn-shop-box-shadow); background-color: var(--btn-shop-bgcolor); } .wd-action-btn.wd-style-text>a:hover { padding:12px; border-radius:35px; color: white; box-shadow: var(--btn-shop-box-shadow); background-color: rgb(1,140,18); }
Best Regards
June 2, 2022 at 4:48 am #380671
pullmanParticipantHello,
The shape is perfect! Thank you π
I have one more request. How to display the wish button next to cart button?? (height )
the height seems different depending on whether there’s an option or not.
1st one has option, 2nd one has no option (screenshot)
Attachments:
You must be logged in to view attached files.June 2, 2022 at 4:50 am #380673June 2, 2022 at 12:43 pm #380785
Elise NoromitMemberHello,
You need to add margins to the wishlist button or configure the column to show the content at the bottom https://gyazo.com/6cdc626dd5291b72c5c22e7e6cc20b1d and then correct it with margins.
If you have any questions please feel free to contact us.
Best Regards
June 3, 2022 at 3:59 pm #381080
pullmanParticipantHello,
Thank you!
now the height solved π
I have another issue, I need to be same the space in the wish button as cart button.
how to reduce the space??Attachments:
You must be logged in to view attached files.June 5, 2022 at 1:41 am #381244
Elise NoromitMemberHello,
Please replace the code with this one:
.wd-action-btn.wd-style-text>a { padding:12px 0; border-radius:35px; color: white; box-shadow: var(--btn-shop-box-shadow); background-color: var(--btn-shop-bgcolor); width:118px!important; } .wd-action-btn.wd-style-text>a:hover { padding:12px 0; border-radius:35px; color: white; box-shadow: var(--btn-shop-box-shadow); background-color: rgb(1,140,18); width:118px!important; }
Best Regards
June 5, 2022 at 8:14 am #381263
pullmanParticipantHello,
Thank you for your support!
That all issue solved!I appreciate your your help so much! π
June 6, 2022 at 3:21 am #381323
Elise NoromitMemberYou are welcome! We are here to help.
Wish you a wonderful day!
-
AuthorPosts
The topic ‘Wish button’ is closed to new replies.
- You must be logged in to create new topics. Login / Register