Changes in documentation and learning order
Started by: pedroS-7
in: Toolset Professional Support
Quick solution available
2
3
6 years, 4 months ago
pedroS-7
Manage Orders in frontend
Started by: domenicoS
in: Toolset Professional Support
Quick solution available
Problem: I would like to be able to manage WooCommerce Orders on the front-end of the site using Forms.
Solution: WooCommerce Orders are not well integrated with Forms, since they include lots of complex data types and features.
2
2
6 years, 5 months ago
Christian Cox
How to display repeating field groups with PHP
Started by: fastrezS
in: Toolset Professional Support
Quick solution available
Problem: I would like to display repeating field groups (RFGs) using only PHP.
Solution: Use the Post Relationships API or the toolset_relationships query argument to retrieve RFGs from the database and loop over them.
$args = array(
'post_type' => 'book-rfg',
'numberposts' => -1,
'toolset_relationships' => array(
'role' => 'child',
'related_to' => 12345,
'relationship' => 'book-rfg'
),
);
$the_query = new WP_Query( $args );
while ( $the_query->have_posts() ){
$the_query->the_post();
the_title();
echo '<br />';
}
Relevant Documentation:
2
4
6 years, 7 months ago
Christian Cox
Customize WooCommerce My Account page
Started by: PiotrO586
in: Toolset Professional Support
Quick solution available
2
7
6 years, 8 months ago
PiotrO586
Set post id as the url of product page for woocommerce
Started by: Jeffrey
in: Toolset Professional Support
Quick solution available
Problem:
The post title is the permalink, looks like mysite.com/product/post-title, but in Chinese, the post title as a part of URL will makes some older browsers not be compatible, some plugin can make it as PinYin, I do want to set the post id as URL of product page.
Solution:
There isn't such a built-in feature within Types plugin, for example:
https://wordpress.org/plugins/search/permalink/
Relevant Documentation:
2
4
6 years, 9 months ago
Jeffrey