Forum replies created
You can hide them by using following css
.content-boxes .more
{
display:none;
}
https://wordpress.org/plugins/one-click-child-theme/
Looks like the code wasn’t pasted correctly. The code is listed at
http://docs.woothemes.com/document/remove-related-posts-output/
Instead of editing the woocommerce-hooks.php file, if possible create a child theme and then add the following code in functions.php file
function wc_remove_related_products( $args ) {
return array();
}
add_filter('woocommerce_related_products_args','wc_remove_related_products', 10);
Not much progress yet. This seems to be a tough nut to crack but working on it.
How are you specifying the images in the post? Is it through featured image option?
Yes, we are working on an update and will release it within a week.
For the alora-row instead of margin-top:-10px; make it margin-top:-80px; and increase the top space in the image logo91.png so that the hanger is slightly lower in the image.
Yep, that plugin isn’t the cause for this problem but just wanted to let you know about it as it may create some other issues.
The following css should take care of table shadows.
table:before
{
background:none;
}
Please upload a screenshot of the shadow area at imgur.com so that I am sure about the section you are talking about.