Hi,
This is also a variable product, http://www.slatehash.com/product/swish-case/ you mean you want to hide the price for only variable product but not for the Simple product?
Let us know,
Thanks,
laranz.
Hi,
This is also a variable product, http://www.slatehash.com/product/swish-case/ you mean you want to hide the price for only variable product but not for the Simple product?
Let us know,
Thanks,
laranz.
Hi,
Can you check now, I edited the fix in your website.
Let us know,
Thanks,
laranz.
Hi,
Yes, there is some plugin interfere with the theme style, can you try disable all the plugin ( for a test ) and also disable the minify of CSS/HTML and see that fixes the issue?
Let us know,
Thanks,
laranz.
Hi,
Yes, I ask the details to check the fix in your website. 🙂 If you give I will change the code that will fix that.
Let us know,
Thanks,
laranz.
Hi,
I tried to deactivate the plugins ( please enable them back ) and found out that it is some compatibility issue between the latest VC plugin. I forward this issue to the developers, until then please use the backend editor to edit the content.
Let us know,
Thanks,
laranz.
Hi,
Try clearing your browser cache ( mainly cookies ) then try that, it will load one time, after that it won’t show.
Let us know,
Thanks,
laranz.
Hi,
Can you pass me the WP/FTP Login details in a private reply, so that I check that on your website?
Let us know,
Thanks,
laranz.
Hi,
Try turn off the Quick view in theme options and see that fixes the issue, if not can you try this Custom CSS,
.content-product .product-image-wrapper .footer-product { display: none; }
in your child theme’s style.css or add that in Appearance -> Customize -> Additional CSS.
Let us know,
Thanks,
laranz.
Hi,
I see this CSS in your website, did you add this?
.product-type-variable .product-information-inner .price { display: none; }
if so, that will prevent the rate to be displayed in variable products like the link you shared. If you didn’t add, make sure some plugins hide that under some options, please go through that too.
Let us know,
Thanks,
laranz.
Hi,
1. You missed few things in the edit, did you use the file I gave? I edited that using the AceIDE plugin in to the theme, you can check now.
2. Like I said, it has take so many things to hide the price in woocommerce, you can check this answer for that, https://wordpress.stackexchange.com/a/90993 or hopefully find a plugin that do this task for you.
Let us know,
Thanks,
laranz.
Hi,
Try this Custom CSS in your style.css in Child theme or Appearance -> Customize -> Additional CSS,
.navbar { padding: 20px 0; }
by default the value is 30px. Adjust according to your needs.
Let us know,
Thanks,
laranz.
Hi,
Unfortunately yes, we can’t able to find what cause the issue.
One way is to disable all the plugins and activate one by one to find which plugin cause the damage.
Another way is, turn on WP_DEBUG in wp-config.php, it will tell exactly what cause the fatal error, https://codex.wordpress.org/WP_DEBUG
If you can’t able to login to your website means, just try to rename the plugins folder to plugins1 and then login to your website.
Let us know,
Thanks,
laranz.
Hi,
It will be fixed in the upcoming version, the WooCommerce template error won’t cause anything in the website, so don’t worry.
Let us know,
Thanks,
laranz.
Hi,
Thanks for your kind words. 🙂
You can try this CSS for hover,
.item-link:hover { color: #fff !important; }
If no widget area is choose for the single post means, the “Main Sidebar” widget area in Appearance -> Widget will shown for single posts, make sure you have widgets in that widget area.
Let us know,
Thanks,
laranz.
Hi,
Go to Theme Options -> Header Settings -> Header Custom HTML you’re using this shortcode,
[etheme_search post_type="any" images="3"]
change that to,
[etheme_search post_type="product" images="3"]
that way it will only search products post type.
etheme_search by default give the search results like that, if you don’t want you can try this shortcode,
[et_top_search view="default"]
Let us know,
Thanks,
laranz.
Hi,
Can you temporarily switched to the parent theme and disable all the third-party plugins and see that fixes the issue?
I tested your site in my iPhone simulator and my iPad2, but I couldn’t see any scrabbled text.
Let us know,
Thanks,
laranz.
Hi,
It shows some js error in the front-end, it seems some plugin compatibility cause this issue. Can you try deactivate the recent plugin you active after that this issue happened? or try download the latest version of VC from here https://www.8theme.com/download-plugins/page/2/ and try to reinstall it.
Also try disable all plugin at once except VC, theme recommended plugin, refresh the cache and see the frontend works, if so, activate the plugin one by one to find the problematic plugin.
Let us know,
Thanks,
laranz.
Hi,
For now it is not extensible via child theme, I forward this request to our development team, to make this possible in the future update.
Let us know if you have any other questions,
Thanks,
laranz.
Hi,
Go to Products -> Categories, and re-order them using this icon in the end: http://take.ms/8xVfi Drag and drop the position you want.
If that didn’t work, make sure you choose category order in the “Woocommerce Product Catagories” widget: http://take.ms/dc7eS
Let us know,
Thanks,
laranz.
Hi,
Use this Custom CSS,
.tagindex ul li {
display: block;
}
Either in your style.css in your child theme or use that in Appearance -> Customize -> Additional CSS.
Let us know,
Thanks,
laranz.
Hi,
If you meant, you want the left category sidebar ( you shown in the screenshot ) to be on right side. Did you try, Theme Options -> Products Page Layout -> Layout = And choose right sidebar?
Let us know,
Thanks,
laranz.
Hi,
1. You can change this file, /woocommerce/single-product/product-thumbnails.php in your child theme. If you don’t have this file, create that along with the folder structure and use this content http://take.ms/UQf7g I just made the changes, you can take this customization further to match your requirement. ( after making this change, make sure you have alt text for your thumbnails. Fill this area: http://take.ms/hxbaT )
2. You can try adding something like this in the functions.php
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
add_filter( 'woocommerce_variable_sale_price_html', 'businessbloomer_remove_prices', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'businessbloomer_remove_prices', 10, 2 );
add_filter( 'woocommerce_get_price_html', 'businessbloomer_remove_prices', 10, 2 );
function businessbloomer_remove_prices( $price, $product ) {
$price = '';
return $price;
}
Likewise, this is just the starting point, you can take this customization and build your requirement. 🙂
Let us know if you have any other questions,
Thanks,
laranz.
Hi,
No problem @Jens. 🙂
Let us know if you have any other questions,
Thanks,
laranz.
Hi,
Glad we helped. 🙂
Let us know if you have any other questions,
Thanks,
laranz.
Hi,
Glad you sorted out yourself. 🙂
Let us know if you have any other questions, Don’t forget to rate us in themeforest, if you love our service. 🙂
Thanks,
laranz.
Hi,
Make sure you choose the correct option at Woocommerce -> Settings -> Shipping -> Shipping Destination
If that didn’t work try add this in the functions.php of your child theme.
add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );
Let us know,
Thanks,
laranz.
No problem, I edited that for you. 🙂
Hi,
Can you try this Custom CSS to remove that cursor?
.owl-carousel {
cursor: auto;
}
Let us know,
Thanks,
laranz.
Hi,
Can you try this, Go to Theme Options -> General -> Header Settings -> Search by sku = OFF? http://take.ms/ZKPhm
Let us know,
Thanks,
laranz.
Hi,
You can click “Don’t show this popup again”, so that it won’t show you next time.
The customization is out of the scope of support, but I will try to help you or narrow you to the right path.
1. Try some script adding plugins like this, https://wordpress.org/plugins/header-and-footer-scripts/
2. and add this script to the footer.
<script type="text/javascript">
jQuery(document).ready(function(){
if (jQuery.cookie('etheme_popup_closed') != 'do-not-show') {
jQuery.cookie('etheme_popup_closed', 'do-not-show', { expires: 1, path: '/' } );
}
});
</script>
If the plugin don’t want to add script tags, then remove those while adding.
Let us know,
Thanks,
laranz.