marcialB
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 |
---|---|---|---|---|---|
Show special 404 message when visiting draft
Started by: marcialB in: Toolset Professional Support |
2 | 2 | 4 years, 7 months ago | ||
Product stock displayed twice
Started by: marcialB in: Toolset Professional Support |
2 | 12 | 4 years, 7 months ago | ||
Plugin conflict with wpDataTables
Started by: marcialB in: Toolset Professional Support |
2 | 12 | 4 years, 8 months ago | ||
Users can’t delete own post
Started by: marcialB
in: Toolset Professional Support
Problem: Users in a custom role cannot delete their own posts using a delete post link created with the cred_delete_post_link shortcode. Solution: Check the Access settings for this custom role and be sure "Delete own posts using Toolset Forms" is active. |
3 | 6 | 4 years, 9 months ago | ||
Post only showing when searching for it
Started by: marcialB in: Toolset Professional Support |
2 | 3 | 4 years, 10 months ago | ||
"This form can not edit users with a role of"
Started by: marcialB in: Toolset Professional Support |
3 | 10 | 4 years, 10 months ago | ||
Show posts not older than X weeks
Started by: marcialB
in: Toolset Professional Support
Problem: I would like to create a Query Filter to show the most recent posts beginning 8 weeks ago and continuing to the present. I have used the post date filter feature to specify Weeks: PAST_ONE (8). That seemed to work well until the beginning of the new year, when the filter stopped showing posts from the previous year. So the filter only seems to work correctly when the date 8 weeks ago was in the same calendar year as today. Solution: Remove the post date Query Filter in the view editor. Add a custom code snippet to filter by post_date using any PHPstrtotime-compatible date string: function tssupp_recent_8_weeks($view_args, $view_settings, $view_id) { $view_ids = array( 123, 456 ); // Comma-separated list of View IDs if ( in_array($view_id, $view_ids) ) { $view_args['date_query'] = array( array( 'column' => 'post_date_gmt', 'after' => '8 weeks ago' ) ); } return $view_args; } Change 123, 456 to be a comma-separated list of View IDs where you want to apply this date filter. If you want to filter by a different start date, change 8 weeks ago to any strotime-compatible date string representing the start date. Relevant Documentation: |
2 | 3 | 4 years, 10 months ago | ||
Image doesn't update
Started by: marcialB in: Toolset Professional Support |
2 | 3 | 4 years, 11 months ago | ||
Let the author decide whether a post is publicly accessible or only for members
Started by: marcialB in: Toolset Professional Support |
2 | 15 | 5 years, 1 month ago | ||
Share CPT in multisite
Started by: marcialB in: Toolset Professional Support |
2 | 5 | 5 years, 1 month ago | ||
Mirror / Sync fields between users and their profiles (CPT)
Started by: marcialB in: Toolset Professional Support |
2 | 4 | 5 years, 1 month ago | ||
German (formal) not recognized
Started by: marcialB
in: Toolset Professional Support
Problem: If I choose the German Formal language (Deutsch Sie), most of Toolset is displayed in English. I would like to know if I can copy .mo files from the standard German into the formal German language, and if formal translations can be added. Solution: Formal German translations will be added in a future release of the plugins. For now, you may copy the German mo files from the following directories: You should be able to copy the de_DE.mo files as de_DE_formal.mo to use the existing standard German translations in German formal. Let me know if you have questions about that. |
2 | 7 | 5 years, 1 month ago | ||
Conditions that check for a user field
Started by: marcialB
in: Toolset Professional Support
Problem: The issue here is that the user wanted to conditionally display a user's field based on their previous field selection. Solution: This can be done by using our views conditional statement. An example of this can be seen below. [wpv-conditional if="( '[types usermeta='user_phone' user_is_author='true'][/types]' eq 'public' )"] Content goes here [/wpv-conditional] Relevant Documentation: |
2 | 3 | 5 years, 2 months ago | ||
Events Calendar by Modern Tribe
Started by: marcialB in: Toolset Professional Support |
2 | 15 | 5 years, 3 months ago | ||
Show "edit" for logged in user on own post
Started by: marcialB
in: Toolset Professional Support
Problem: How to show some content, only when the currently logged-in visitor is also the current post's author. Solution: Shared information about the "wpv-post-author" and "wpv-user" shortcodes and using them in the conditional display. [wpv-conditional if="( '[wpv-post-author format="meta" meta="ID"]' eq '[wpv-user field="ID"]' )"] ...Content to show... [/wpv-conditional] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-author https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-user |
2 | 3 | 5 years, 3 months ago |