nereaD
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Error uploading theme assets
Started by: nereaD in: Toolset Professional Support |
|
2 | 6 | 4 years, 4 months ago | |
I can´t register a new theme
Started by: nereaD in: Toolset Professional Support |
|
2 | 8 | 4 years, 4 months ago | |
Adding data from custom field to Woocommerce order e-mail
Started by: nereaD
in: Toolset Professional Support
Problem: I would like to include information from a custom field in my WooCommerce Order email by adding some code with types_render_field(). Solution: I'm not sure how to modify these email templates, but I can explain how to use the types_render_field function. Example: TRACK YOUR ORDER Replace 12345 with the Order ID, or a variable or shortcode that provides that ID. Relevant Documentation: https://toolset.com/documentation/customizing-sites-using-php/functions/ |
|
2 | 3 | 6 years ago | |
Font Awesome not working after update
Started by: nereaD in: Toolset Professional Support |
1 | 2 | 6 years, 1 month ago | ||
I want to combine two menus when they collapse
Started by: nereaD in: Toolset Professional Support |
|
2 | 2 | 6 years, 2 months ago | |
Generic select not loading custom type fields as options
Started by: nereaD
in: Toolset Professional Support
Problem: When I use a View to output options for a generic select field, the select field disappears. If I copy the same output generated by the View and paste it as the value of "options" in my CRED form, the select field appears as normal. Solution: Use a filter to strip out extra characters from your View's output that may be breaking the JSON structure of your options. Add the following code in your functions.php file: add_filter( 'wpv_filter_wpv_view_shortcode_output', 'prefix_clean_view_output', 5, 2 ); function prefix_clean_view_output( $out, $id ) { if ( $id == '999' ) { //Please adjust to your Views ID $start = strpos( $out, '<!-- wpv-loop-start -->' ); if ( $start !== false && strrpos( $out, '<!-- wpv-loop-end -->', $start ) !== false ) { $start = $start + strlen( '<!-- wpv-loop-start -->' ); $out = substr( $out , $start ); $end = strrpos( $out, '<!-- wpv-loop-end -->' ); $out = substr( $out, 0, $end ); } } return $out; } Be sure to replace the $id variable with your View's ID. Relevant Documentation: N/A |
|
2 | 3 | 6 years, 9 months ago | |
One search option per page
Started by: nereaD
in: Toolset Professional Support
Problem: How can I make it with Views? Solution: |
|
2 | 3 | 6 years, 10 months ago |