NickC8880
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 |
---|---|---|---|---|---|
Custom Code Snippet not running
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 5 | vor 3 Jahren, 3 Monaten | ||
Automating a link between Toolset Relationships and BuddyBoss/bbPress Forums
1
2
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 18 | vor 3 Jahren, 4 Monaten | ||
A bug with displaying dates in a View Loop
Gestartet von: NickC8880 in: Toolset Professional Support |
3 | 5 | vor 3 Jahren, 5 Monaten | ||
Customize max results in a view when using AJAX
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 4 | vor 3 Jahren, 5 Monaten | ||
When to use a view vs an archive?
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 7 | vor 3 Jahren, 5 Monaten | ||
How to Toggle View Loop Style from Front End?
Gestartet von: NickC8880
in: Toolset Professional Support
Problem: I'd like to have a way to change the Loop style from the front end. Many websites I've visited have something like this to change the style from grid to list to table etc... Solution: There isn't such kind of built-in feature within Toolset Views/Blocks plugin, you might consider to create two views, but display them in different style(grid and list), then use custom JS codes to toggle to different view, for example: Relevant Documentation: |
2 | 3 | vor 3 Jahren, 5 Monaten | ||
Dynamic redirection after Edit Post Form submission
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 7 | vor 3 Jahren, 5 Monaten | ||
Conditionally display edit form
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 3 | vor 3 Jahren, 5 Monaten | ||
Bootstrap 4 is conflicting with my BuddyBoss theme
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 5 | vor 3 Jahren, 5 Monaten | ||
In which use-cases are Custom User Fields required instead of Custom Post/Fields
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 4 | vor 3 Jahren, 5 Monaten | ||
Conditionally display a map based on a filtered view
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 9 | vor 3 Jahren, 5 Monaten | ||
Filtering Views Query by Author for a profile page
Gestartet von: NickC8880
in: Toolset Professional Support
Problem: I have a View that I would like to filter by post author. That View may be displayed in a BuddyPress profile. I have a PHP function provided by BB that will help determine the User ID based on the profile being displayed. Solution: Use the Views Filter API wpv_filter_query to programmatically set a post author filter in this View using the function provided by BuddyPress / BuddyBoss. // Override the post author filter of a View shown in the BP User page to display only that User's posts. // https://toolset.com/forums/topic/filtering-views-query-by-author-for-a-profile-page/ add_filter( 'wpv_filter_query', 'tssupp_bp_force_author_filter',99,3 ); function tssupp_bp_force_author_filter( $query_args,$views_settings, $view_id) { $views = array( 123, 456 ); if ( in_array( $view_id, $views ) ){ // post author equals bp_displayed_user_id() if function exists $query_args['author'] = function_exists('bp_displayed_user_id') ? bp_displayed_user_id() : 0; } return $query_args; } You would replace 123, 456 with a comma-separated list of View IDs which you would like to filter by post author. This post author filter will only work if the function provided by BP/BB returns the correct User ID. If you try to place this View on a page where the BP/BB function does not return the correct value, the View will not be filtered appropriately. Relevant Documentation: |
3 | 11 | vor 3 Jahren, 5 Monaten | ||
Is it possible to have my other support ticket moved to someone in my timezone?
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 3 | vor 3 Jahren, 5 Monaten | ||
I cannot remove custom fields while creating a Post Form
Gestartet von: NickC8880 in: Toolset Professional Support |
1 | 2 | vor 3 Jahren, 5 Monaten | ||
How to map fields from other plugins to Toolset?
Gestartet von: NickC8880 in: Toolset Professional Support |
2 | 4 | vor 3 Jahren, 6 Monaten |