marcialB
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Show special 404 message when visiting draft
Gestartet von: marcialB in: Toolset Professional Support |
2 | 2 | vor 4 Jahren, 6 Monaten | ||
Product stock displayed twice
Gestartet von: marcialB in: Toolset Professional Support |
2 | 12 | vor 4 Jahren, 7 Monaten | ||
Plugin conflict with wpDataTables
Gestartet von: marcialB in: Toolset Professional Support |
2 | 12 | vor 4 Jahren, 8 Monaten | ||
Users can’t delete own post
Gestartet von: 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 | vor 4 Jahren, 8 Monaten | ||
Post only showing when searching for it
Gestartet von: marcialB in: Toolset Professional Support |
2 | 3 | vor 4 Jahren, 9 Monaten | ||
"This form can not edit users with a role of"
Gestartet von: marcialB in: Toolset Professional Support |
3 | 10 | vor 4 Jahren, 9 Monaten | ||
Show posts not older than X weeks
Gestartet von: 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 | vor 4 Jahren, 10 Monaten | ||
Image doesn't update
Gestartet von: marcialB in: Toolset Professional Support |
2 | 3 | vor 4 Jahren, 10 Monaten | ||
Let the author decide whether a post is publicly accessible or only for members
Gestartet von: marcialB in: Toolset Professional Support |
2 | 15 | vor 5 Jahren | ||
Share CPT in multisite
Gestartet von: marcialB in: Toolset Professional Support |
2 | 5 | vor 5 Jahren, 1 Monat | ||
Mirror / Sync fields between users and their profiles (CPT)
Gestartet von: marcialB in: Toolset Professional Support |
2 | 4 | vor 5 Jahren, 1 Monat | ||
German (formal) not recognized
Gestartet von: 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 | vor 5 Jahren, 1 Monat | ||
Conditions that check for a user field
Gestartet von: 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 | vor 5 Jahren, 1 Monat | ||
Events Calendar by Modern Tribe
Gestartet von: marcialB in: Toolset Professional Support |
2 | 15 | vor 5 Jahren, 2 Monaten | ||
Show "edit" for logged in user on own post
Gestartet von: 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 | vor 5 Jahren, 3 Monaten |