Shane
Support threads created in the last 30 days: 0
Recent client feedbacks
Quick and thoroughly knowledgeable. MichaelS-13
Hi, Shane. We re uploaded Layouts but now have the new error message above. DeannaC1499
Quick and succinct. DavidW2160
Great responsiveness SusanT-4
He has tickets that have addresses similar issues. ChrisH-10
Quick responses, very knowledgable. KevinM-13
Quick, patient and friendly! NathalieJ
Fast Problem solver and good communicator Cesar
I'm sorry I didn't answer you on the other ticket. I haven't tried again yet. I'm trying to solve this research. I hope to try again as soon as I solve with the search. Thanks KonstantinosD
Commited! MaudS
Favorite Forum Topics
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Generate slide on my slider
Started by: martyB
in: Toolset Professional Support
Problem: The issue here is that the user had some repeated image fields and wanted to create a slider using these images. Solution: I managed to create a flexslider plugin that should be able to help your. Download and install the plugin in the link below. Then create a content template for your post and add the following. <div class="flexslider"> <ul class="slides"> [wpv-for-each field="wpcf-image_1"] <li>[types field="image_1" size="medium" align="none" resize="pad" padding_color="#FFF"][/types]</li> [/wpv-for-each] </ul> </div> After doing this then you will need to add the script for it to work. Add this to the js section of the content template. jQuery(window).load(function() { jQuery('.flexslider').flexslider(); }); |
|
3 | 5 | 2 years ago | |
Displaying Parent title isn’t working
Started by: joshM-4
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display the parent title of their post Solution: When using the fields and views button to add the shortcode to the page, it should give you the option to select the post that you want to display the title for. This includes the Parent CPT. See Screenshot If you select "Post Selection" and then "A post related to the current post, set by a Types relationship" then you should be able to select your parent CPT to display its title. |
|
3 | 4 | 2 years, 6 months ago | |
Taxonomy count for a post
Started by: Tim Elliott
in: Toolset Professional Support
Problem: The issue here is that the user wanted to count the number of terms that is attached to a post. Solution: // Add Shortcode function count_post_terms( $atts ) { // Attributes $atts = shortcode_atts( array( 'post_id' => '', 'taxonomy' => '', ), $atts ); $terms = wp_get_post_terms( $atts['post_id'], $atts['taxonomy']); return count($terms); } add_shortcode( 'count_post_terms', 'count_post_terms' ); Add the shortcode above to your functions.php file and you can use this shortcode [count_post_terms] to count the terms attached to a post. The exact example is. 1 |
|
2 | 3 | 2 years, 7 months ago | |
How to sort or order custom field value having dollar sign and commas as number field value using views sorting
Started by: marcusC-4
in: Toolset Professional Support
Problem: How to sort or order custom field value having dollar sign and commas as number field value using views sorting Solution: You should use WordPress standard filter posts_orderby to remove dollar sign and commas from text filter value and sort it as numeric. You can find proposed solution, in this case, with the following reply: https://toolset.com/forums/topic/remove-dollar-sign-commas-from-numbers-field-values/#post-908752 Relevant Documentation: |
|
2 | 6 | 2 years, 8 months ago | |
Connecting Two CPT’s with intermediary CPT via CRED New Form
Started by: Ronald E
in: Toolset Professional Support
Problem: Connecting Two CPT's with intermediary CPT via CRED New Form Solution: You can use CRED hook "cred_save_data" to do any customization you need and to connect the post using intermediary post entry. You can find proposed solution, in this case, with the following reply: https://toolset.com/forums/topic/connecting-two-cpts-with-intermediary-cpt-via-cred-new-form/#post-871487 Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_form_validate |
|
2 | 3 | 2 years, 9 months ago | |
Views filter for JSON-output for CRED generic field
Started by: dianaM-4 in: Toolset Professional Support |
|
2 | 6 | 4 years, 5 months ago | |
Change sort order of custom taxonomy archive
Started by: morktron in: Toolset Professional Support |
|
3 | 4 | 6 years, 1 month ago |
Forum Topics Created
This user has not created any topics.