Paul Bowman
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 |
---|---|---|---|---|---|
Conflicting form notifications — cred_notification_recipients & cred_mail_header
Started by: Paul Bowman in: Toolset Professional Support |
2 | 6 | 5 months, 1 week ago | ||
Several cred_success_redirect instances in project worked at first but don’t now
Started by: Paul Bowman in: Toolset Professional Support |
2 | 13 | 5 months, 2 weeks ago | ||
Save data to child-post field (update post meta) on creating a post relationship
Started by: Paul Bowman in: Toolset Professional Support |
3 | 7 | 10 months ago | ||
Failure to save form data derived from generic form fields
Started by: Paul Bowman in: Toolset Professional Support |
2 | 3 | 11 months, 3 weeks ago | ||
Generic select form field from repeatable field group, one-to-many relationship
Started by: Paul Bowman in: Toolset Professional Support |
2 | 5 | 1 year ago | ||
Using cred_save_data with generic multiselect field array output
Started by: Paul Bowman in: Toolset Professional Support |
2 | 3 | 1 year ago | ||
Cred user form ‘first name’ entry field breaks page
Started by: Paul Bowman in: Toolset Professional Support |
3 | 6 | 2 years, 9 months ago | ||
set size of front-end cred form wysiwyg field
Started by: Paul Bowman
in: Toolset Professional Support
Problem: How can I adjust the height of the entry area of a Cred form wysiwyg field in front-end context? Solution: You can try custom CSS codes, like these: https://toolset.com/forums/topic/set-size-of-front-end-cred-form-wysiwyg-field/#post-2258089 Relevant Documentation: |
2 | 4 | 2 years, 10 months ago | ||
Post forms for creating and editing repeatable field groups
Started by: Paul Bowman in: Toolset Professional Support |
2 | 8 | 3 years, 3 months ago | ||
Reorder custom field columns in custom post admin
Started by: Paul Bowman in: Toolset Professional Support |
3 | 6 | 3 years, 4 months ago | ||
Building a view that shows most recently commented posts
Started by: Paul Bowman
in: Toolset Professional Support
Problem: Solution: I actually did not test the solution, I have suggested on that ticket. You may be right, and "comment_post" is probably not the best hook to use. "transition_comment_status" seems to be a good candidate. This pseudo-code may help: // update post last comment field when a comment is approved function update_last_comment_field( $new_status, $old_status, $comment ) { // Only when the status is approved. if( 1 === $new_status ){ // get the post ID $post_id = $comment->comment_post_ID ; // get the post object $post = get_post( $post_id ); // only for post type "post" if ( $post->post_ype == "post" ) { // update custom field. Toolset field slug is prefixed with "wpcf-" update_post_meta( $post_id, 'wpcf-last-comment-time', time() ); } } } // Execute this action when a comment is saved [wpv-view name="my-view" ids="[my-last-commented-posts-ids]"] The view needs to be filtered by the IDs passed in a shortcode argument. Or you may use a 3rd party plugin such as https://wordpress.org/plugins/basic-recent-commented-posts-widget/ Relevant Documentation: |
2 | 4 | 4 years, 1 month ago | ||
Remove unused intermediary post types
Started by: Paul Bowman in: Toolset Professional Support |
2 | 5 | 5 years, 7 months ago | ||
‘Others’ section not showing for use assignment in Layouts
Started by: Paul Bowman in: Toolset Professional Support |
2 | 5 | 6 years ago | ||
small change to comment metadata output
Started by: Paul Bowman
in: Toolset Professional Support
Problem: Add custom arguments to Layouts Comment Cell. Solution: the comment cell is also using wordpress function wp_list_comments() to get the comments, so you can use wordpress built-in filter hook to "wp_list_comments_args" to add your custom arguments. Relevant Documentation: https://developer.wordpress.org/reference/hooks/wp_list_comments_args/ |
3 | 6 | 6 years ago | ||
wpv-conditional returns different results in two nearly identical views
Started by: Paul Bowman
in: Toolset Professional Support
Problem: Check current page information in wpv-conditional shortcode. Solution: You can get the subtitle field value of current page with shortcode: Then you can use it in the wpv-conditional shortcode directly, for example: Relevant Documentation: |
2 | 10 | 6 years, 4 months ago |