Tell us what you are trying to do? I have created a Product Template using Toolset. I would like to insert the widget/shortcode to pull related products at the end of the template. I can do insert the widget if I use Elementor for the same template but I am not sure how to do it with the Toolset template.
Is there any documentation that you are following? I read the documentation that it is possible to insert shortcode into the Toolset Template but I am not sure what the Related Products shortcode is. When I use Elementor, this is available as a widget that I can insert in the appropriate section.
Is there a similar example that we can see? See attached the screenshot where the Related Product widget is. I would like to insert this same widget into my Toolset template in area circled.
What is the link to your site? hidden link
Hi, in the Single Product template you can use the wpv-woo-related_products shortcode:
https://toolset.com/documentation/user-guides/views-shortcodes/#vf-334594
You can insert this shortcode in the template by clicking Fields and Views, then searching for related products. See the attachment here.
Thanks very much for the tip. It seems to work. The only issue is that I would like to remove the Title of the Related Products Widget and instead use Similar Events. How do I move the circled widget title? See attached screenshot
There's no setting to turn that header off, but you can use CSS to hide it. The specific code depends on your theme to some extent. You can try adding this CSS in your Content Template's CSS editor:
.related.products > h2 {
display:none;
}
If that does not hide the header, I would need to see it in the browser so I can determine the appropriate overrides that work for your site.
My issue is resolved now. Thank you!