matarelovejoy
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] custom add to quote buttonHi @stuartduff
Thank you so much for the feedback, I so much appreciate it. I did that and it worked perfectly.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Single Product ThumbnailsNo, the suggested plugin didn’t work. I used an alternative plugin from another author.
Forum: Plugins
In reply to: [WooCommerce] custom add to quote buttonI have added a class to the a tag and then copy/pasted css code from the add to cart button so the issue of styling and redirecting to href is fixed.The href now redirects to a custom page I wanted to ask, on that page is there a way to identify the product title so that when the user submits the form I can know which product is the customer requiring a quotation for?
Forum: Plugins
In reply to: [WooCommerce] custom add to quote buttonFirst and foremost, I would like to thank you so much for you understood my problem and you were quick to assist. I have added the function and a link is now appearing next to the button. How do I make it a button or inherit the css properties of the add to cart button? Please note that the buy unbranded is the add to cart button https://www.enigmapromotions.co.za/product/1-litre-tritan-water-bottle/ and https://imgur.com/WHizuG5
Forum: Themes and Templates
In reply to: [Storefront] custom buttonHi @joashrajin
Thank you so much for the feedback. What I would like to achieve is custom so the plugins and or extensions will not be able to implement it.
I was hoping I was going to use this hook woocommerce_after_add_to_cart_button and add a custom button next to the buy unbranded which will automatically redirect to form page.
Thanks though, I appreciate your feedback.
Hi @khalilu thank you so much for the feedback I understand.
Forum: Themes and Templates
In reply to: [Storefront] Change Add to Cart Button Text & Add Another ButtonTo anyone who experience the same issue, add the function below to your functions.php file
// 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 Unbranded', '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 Unbranded', 'woocommerce' ); }
Forum: Themes and Templates
In reply to: [Storefront] custom buttonIf possible this form should automatically identify the product which the customer is requesting branding for.
Forum: Plugins
In reply to: [ElementsKit Elementor addons] How to disable or remove mega menu animation?Yes sure, on it now.
Forum: Plugins
In reply to: [ElementsKit Elementor addons] How to disable or remove mega menu animation?You are amazing @benjirahmed thanks everything is now working perfectly fine now.
Forum: Fixing WordPress
In reply to: Woocommerce Single Product ThumbnailsThanks Jan.
Forum: Fixing WordPress
In reply to: Woocommerce Single Product ThumbnailsI have managed to search woocommerce docs, the documents mentions how to add thumbnails but it doesn’t mention how to restrict the thumbnails to 4 and then slide right for more if the product has more than 4 thumbnails.
Forum: Fixing WordPress
In reply to: Woocommerce Single Product ThumbnailsThe link appears broken or the content might’ve been moved. Nothing is showing on this link https://docs.woocommerce.com/document/adding-product-images-and-galleries/
Forum: Fixing WordPress
In reply to: Woocommerce Single Product ThumbnailsThanks Arslan, let me check it out.