larryL
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 |
---|---|---|---|---|---|
Views column sorting not working
Started by: larryL in: Toolset Professional Support |
2 | 3 | 4 years, 3 months ago | ||
Filter scripting issue
Started by: larryL in: Toolset Professional Support |
2 | 3 | 4 years, 3 months ago | ||
Front End date reporting
Started by: larryL
in: Toolset Professional Support
Problem: Solution: For example, edit the view, in section "Query Filter", if you can not find it, click "Screen Option", and enable the option "Query Filter", edit the date field filter according to above document, when inserting a query filter to test a date custom field you should use the UNSIGNED option Relevant Documentation: |
2 | 5 | 4 years, 3 months ago | ||
Need a creative solution
Started by: larryL in: Toolset Professional Support |
2 | 11 | 4 years, 3 months ago | ||
Unable to add new custom fields to CPT
Started by: larryL
in: Toolset Professional Support
Problem: Try to in crease "max_input_vars" by adding code into wp-config.php @ini_set( 'max_input_vars' , 4000 ); But it does take effect. Solution: In my localhost, the MaxInputVars is 2500, you can check it with your server provider, check how to increase MaxInputVars settings to 4000 or above in your webserver. Relevant Documentation: |
2 | 10 | 4 years, 3 months ago | ||
New Entry Tracking
1
2
Started by: larryL
in: Toolset Professional Support
Problem: Setup a vehicles Tracking systems. Solution: I suggest you setup a child post type for it, for example: https://toolset.com/forums/topic/new-entry-tracking/#post-1686143 Relevant Documentation: https://toolset.com/documentation/post-relationships/how-to-set-up-post-relationships-using-toolset/ |
2 | 22 | 4 years, 3 months ago | ||
I have one things left to do: combine my forms
Started by: larryL in: Toolset Professional Support |
2 | 5 | 4 years, 3 months ago | ||
Calculate start time end time in cred
Started by: larryL in: Toolset Professional Support |
2 | 11 | 4 years, 3 months ago | ||
No Results Found
Started by: larryL in: Toolset Professional Support |
2 | 5 | 4 years, 4 months ago | ||
How do I get the child to automatically update the parent's related information section
Started by: larryL in: Toolset Professional Support |
2 | 4 | 4 years, 4 months ago | ||
Show changes users make to different post types in a view
Started by: larryL in: Toolset Professional Support |
2 | 4 | 4 years, 9 months ago | ||
Multi-Select Notifcations in CRED
1
2
3
Started by: larryL in: Toolset Professional Support |
3 | 35 | 4 years, 9 months ago | ||
Calculating post(s) age
1
2
Started by: larryL
in: Toolset Professional Support
Problem: I would like to calculate the age of a post, in number of days, based on its publish date, and display that number for each post in a View of posts. Solution: It would require a custom shortcode to calculate the difference between today's date and the post's publish date and display that in a View, something like this: add_shortcode( 'num-days', 'wpv_num_days_shortcode'); function wpv_num_days_shortcode( $atts ) { $atts = shortcode_atts( array( 'postid' => '' ), $atts ); $timestamp = get_the_date( 'U', $atts['postid'] ); if( $timestamp != '') { $age = floor((time() - $timestamp) / ( 60*60*24 )) ; return $age; }else { return 0; } } Then in the front-end the shortcode is like this: [num-days postid="[wpv-post-id]"] |
3 | 24 | 4 years, 10 months ago | ||
CRED form field relationships
Started by: larryL in: Toolset Professional Support |
2 | 14 | 4 years, 10 months ago | ||
Multiple results in one column
Started by: larryL in: Toolset Professional Support |
2 | 3 | 4 years, 11 months ago |