MTD
Forum Replies Created
-
Yes indeed, it’s strange. I just added the code and it works great Thank you for the fix and your time!
Yes, I need this for header search form only.
I’ve added the code through the WP > Appearance > Customise > Additional CSS. Also through the theme custom CSS. Thanks
Thank you ILLID for the replay. However, it doesn’t do any change. Cheers!
After activating the Placeholder “Seamless integration”, the search works great. However, only in the theme search, the placeholder does not disappear when input field in focus. Is it possible to fix it? Thank you.
Problem solved. I missed the “Seamless integration”option which works perfectly fine. Thank you!
Hi Darko,
Yes, the problem is only caused the previous and the current plugin. After deactivating the plugin, the issue is gone.
Thank you.
Forum: Plugins
In reply to: [Advanced Woo Search] See all results link at the bottom of all resultsGreat! I probably missed the feature with some updates. Thank you
Forum: Plugins
In reply to: [Yoast SEO] Blog Gallery product images not linked to woo productsI contacted CloudFlare and SiteGround support and they told me to use “EWWW Image Optimizer” plugin which I did. That solved the problem immediately and the website loads very fast now. Thanks for your time.
Forum: Reviews
In reply to: [Translate Wordpress with GTranslate] AbsurdWell done edo888, your plugin works great and having a free support is more than people can ask for with a free plugin. Keep up your great work!
The same question here. I have started with 4 products but now increased to 6 hoping that the extra 2 products will be shown automatically and randomly.
Is there any way to fix it so I do not have to go thru 1500 products and add the additional 2 products manually?Thanks
Forum: Plugins
In reply to: [WooCommerce] Shipping calculator and checkout button issuesHi Mike,
My theme name is Salient but currently I restored everything from my hosting backup because there were too many problems. I’m waiting for the them guys to provide a fix.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Shipping calculator and checkout button issuesHi Claudio,
I’ve removed the cart.php file but now the checkout button is gone.
Forum: Plugins
In reply to: [WooCommerce] Shipping calculator and checkout button issues… and Shipping Calculator code is here:
https://codeshare.io/BpKnPForum: Plugins
In reply to: [WooCommerce] Free shipping label for all products from $100Hi Mike,
Thanks a lot for your hint. I end up with this code which works great:
add_action( 'woocommerce_before_shop_loop_item_title', 'show_free_shipping_badge' ); function show_free_shipping_badge() { global $product; if ( $product->price > 30 ) { echo '<span class="free-shipping">Free Shipping</span>'; } }
Also, I’ve been trying to show products based on price filter using short-code [products_by_price min=”100″ max=”300″]. This plugin works great except per_page limitation. Is there any simple solution to it? Thanks