I have tried adding
.related.products {
display: none;
}
Yet the related products still remain. I have look at plugins both direct from WordPress and CodeCanyon but nothing is working.
Many thanks in advance
Hey sambo258!
Thank you for using our theme.
The link you gave us is not working.
It would be helpful to see your site. And can you also specify more closer, on which pages you want to remove the related products.
Regards,
Günter
Hey!
Try putting that snippet at the very beginning of Quick CSS, there is an unclosed media query that seems to be blocking all code below it.
Regards,
Josue
Thank you very much Josue, that was most helpful and worked great.
I am having trouble removing the Additional Information from my checkout page. I have entered the suggested snippet but yet Additional Information still remains.
This is the snippet I have used but yet it’s still showing.
li.additional_information_tab {
display: none !important;
}
Many thanks in advance
Hey!
Can you post a link to your actual Shop or one of your products so i can get to the checkout page?
Regards,
Josue
Hey!
If this is what you want to remove use this code:
#customer_details .col-2 {
display: none;
}
Regards,
Josue
Hi thanks all worked brilliantly, my last one would be to remove/rename company name from the billing information/.
Many thanks
Try with this:
p#billing_company_field {
display: none;
}
Cheers!
Josue