Home › Forums › IT Consultant Support › Header Problem
- This topic has 12 replies, 2 voices, and was last updated 2 years, 11 months ago by Sonl Sinha.
-
AuthorPosts
-
December 7, 2021 at 2:23 pm #187418
Hi Support i want to add a new header layout for my site is it possible and if it is how do i do it
https://ibb.co/bWfzD41December 7, 2021 at 2:24 pm #187419i want my header to look like this https://ibb.co/7z7qM7Q
December 7, 2021 at 2:24 pm #187420https://ibb.co/7z7qM7Q
December 7, 2021 at 2:44 pm #187421i want my phone header to look exactly like my desktop header
https://ibb.co/TqKtf38December 7, 2021 at 6:39 pm #187441Hi,
Kindly show us your website URL please?
Regards,
DaveDecember 7, 2021 at 6:42 pm #187444https://azenoelectronics.co.ke/
December 7, 2021 at 6:47 pm #187446htazenoelectronics.co.ke/
December 7, 2021 at 6:48 pm #187447sorry here is the right link azenoelectronics.co.ke
December 8, 2021 at 2:07 pm #187485HI SUPPORT CAN YOU HELP ME OUT HERE
December 8, 2021 at 2:11 pm #187486And also wanted to know how i can change the writing on the button that pops up when i hover on a product
December 8, 2021 at 2:11 pm #187487https://ibb.co/4KxLncg
December 8, 2021 at 3:47 pm #187495the link is the same as the one above azenoelectronics.co.ke
December 8, 2021 at 6:42 pm #187532Hi,
Q. wanted to know how i can change the writing on the button that pops up when i hover on a product??
Ans: Actually “Add to Cart” text coming from the woocommerce shortdoces.
If you want to change add to cart text? Kindly follow these steps.
STEPS TO CHANGE DEFAULT ADD TO CART TEXT
1. Open WordPress admin panel, go to Appearance >> Theme Editor
2. Open functions.php theme file
3. Add the following code at the bottom of function.php file
4. Save the changes and check your website. The custom text in add to cart button should show up now.// To change add to cart text on single product page add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); function woocommerce_custom_single_add_to_cart_text() { return __( 'Buy Now', 'woocommerce' ); } // To change add to cart text on product archives(Collection) page add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' ); function woocommerce_custom_product_add_to_cart_text() { return __( 'Buy Now', 'woocommerce' ); }
Regards,
Dave -
AuthorPosts
- You must be logged in to reply to this topic.