For a real estate website, each property page needs to offer a PDF download that auto-generates using the page content.
Is it possible to implement it in Toolset?
Solution:
Toolset doesn't provide this functionality. One approach is to create a link to print the page using a CSS code snippet for print media, which strips down the page to essential content. Additionally, you can add JavaScript to trigger the print preview of the browser. Another option is to explore WordPress plugins that support PDF generation from page content.
Problem:
I'm attempting to display only the minimum price of variable products in my product archives. While the shortcode [wpv-post-field name='views_woo_price'] initially worked for manually created test products, it no longer outputs a value after importing actual products using WP All Import. Solution:
The 'views_woo_price' shortcode is a built-in WooCommerce Views field that Toolset uses to control WooCommerce prices. Batch processing may update it, but it's uncertain if it'll resolve the issue. Alternatively, you can use CSS to truncate the text of the price and show only the starting portion to fit the design.