thoraldM
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 |
---|---|---|---|---|---|
Display age dynamically based on birth date and death date if applicable
Started by: thoraldM in: Toolset Professional Support |
2 | 3 | 1 year ago | ||
Can't seem to display post type taxonomy description
Started by: thoraldM in: Toolset Professional Support |
2 | 2 | 1 year, 4 months ago | ||
How to display post content in the sidebar
Started by: thoraldM in: Toolset Professional Support |
2 | 3 | 3 years ago | ||
A little help with Previous/Next Post navigation for Custom Post Type
Started by: thoraldM in: Toolset Professional Support |
2 | 8 | 3 years, 1 month ago | ||
Content Template Fields Disappeared
Started by: thoraldM in: Toolset Professional Support |
2 | 6 | 3 years, 2 months ago | ||
Datepicker not showing in Editor
Started by: thoraldM in: Toolset Professional Support |
2 | 3 | 4 years ago | ||
Featured post slider
Started by: thoraldM in: Toolset Professional Support |
2 | 2 | 6 years, 1 month ago | ||
Adapting existing theme layouts to custom post types
Started by: thoraldM
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
1 | 2 | 6 years, 1 month ago | ||
Can you capture IP data using Forms?
Started by: thoraldM
in: Toolset Professional Support
Problem: Solution: function tssupp_record_ip( $post_id, $form_data ){ if ( in_array( $form_data['id'], array( 123, 234 ) ) ) { // Edit Form IDs // source: https://www.codexworld.com/how-to/get-user-ip-address-php/ if(!empty($_SERVER['HTTP_CLIENT_IP'])){ //ip from share internet $ip = $_SERVER['HTTP_CLIENT_IP']; }elseif(!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){ //ip pass from proxy $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; }else{ $ip = $_SERVER['REMOTE_ADDR']; } update_post_meta( $post_id, '_userip', $ip ); } } add_action( 'cred_save_data', 'tssupp_record_ip', 10, 2 ); In this example the IP address is saved to a hidden field, but you may want to save it to a generic or a Types field. Relevant Documentation: |
3 | 8 | 6 years, 1 month ago | ||
Toolset Forms plugin disrupts jQuery code
1
2
Started by: thoraldM in: Toolset Professional Support |
2 | 19 | 6 years, 1 month ago | ||
I need some guidance on how to set up post types and relationships
Started by: thoraldM in: Toolset Professional Support |
2 | 5 | 6 years, 2 months ago | ||
Display latest entries from specific CPTs on a page
Started by: thoraldM
in: Toolset Professional Support
Problem: In this ticket the user wanted to display the 5 latest posts that they created. Solution: What you need to do is to create a view, select the Post Type that you want it do display. Under the Limit and Offset, set the limit to 5 and for the Ordering setting, change it Post Date. Finally all thats needed is to use the Loop wizard on your view to add the relevant shortcodes for the components of the post that you want to display. Then just add this view to your page by going to the page on the backend selecting the Types and Views button then adding your view to the page. |
2 | 7 | 6 years, 2 months ago | ||
Layout template is showing up on RSS feed
Started by: thoraldM in: Toolset Professional Support |
3 | 6 | 6 years, 2 months ago | ||
Can't delete Layout template even though not assigned
Started by: thoraldM in: Toolset Professional Support |
2 | 2 | 6 years, 2 months ago | ||
Custom date fields are displaying in UNIX format instead of MM DD, YYYY
Started by: thoraldM
in: Toolset Professional Support
Problem: I am using types_render_field to display custom dates, but the values are shown as timestamps after updating the plugins. Solution: For now, you can apply the style attribute to the types_render_field arguments array, or you can apply the patch files in the linked erratum post. Relevant Documentation: |
2 | 9 | 6 years, 3 months ago |