hannesU-2
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 |
---|---|---|---|---|---|
Filtering using Ajax refresh doen´t work
Started by: hannesU-2 in: Toolset Professional Support |
3 | 5 | 1 year, 2 months ago | ||
Blank page from time to time Sing view in elementar page
Started by: hannesU-2 in: Toolset Professional Support |
2 | 6 | 3 years ago | ||
WYSIWYG fields doesn´t save any text
Started by: hannesU-2 in: Toolset Professional Support |
3 | 12 | 3 years, 1 month ago | ||
toolset forms – blank page in page editor
Started by: hannesU-2 in: Toolset Professional Support |
2 | 2 | 3 years, 7 months ago | ||
Displaying results only when filter is used
Started by: hannesU-2 in: Toolset Professional Support |
2 | 2 | 3 years, 11 months ago | ||
Cannot add classes to rows in layout
Started by: hannesU-2 in: Toolset Professional Support |
2 | 5 | 4 years, 1 month ago | ||
show number of users that hav published a post via cred
Started by: hannesU-2
in: Toolset Professional Support
Problem: The issue here is that the customer wanted to count the number of users who have created posts under a specific post type. Solution: This is actually something that will require a bit of custom coding to achieve. Here below is a small snippet that was written to help resolve this. function count_users_with_posts() { $blogusers = get_users(); $user_count = array(); foreach($blogusers as $user){ $args = array( 'post_type' => 'covid-19-info', 'author' => $user->ID, ); $wp_posts = get_posts($args); if(count($wp_posts) > 0){ array_push($user_count, $user->ID); } } return count($user_count); } add_shortcode( 'count_users_with_posts', 'count_users_with_posts' ); Add the above to your Toolset custom code section in Toolset->Settings->Custom Code and activate it. You will need to replace "covid-19-info" with the slug of your post type that you want to count the users for. |
2 | 7 | 4 years, 2 months ago | ||
How to count only posts that have one date field not filled out
Started by: hannesU-2 in: Toolset Professional Support |
2 | 2 | 4 years, 7 months ago | ||
How to display the custom fields of a product in the additional info tab
Started by: hannesU-2 in: Toolset Professional Support |
1 | 2 | 4 years, 10 months ago | ||
Bootstrap 3 loading although use Bootstrap 4 is activated in Toolset settings
Started by: hannesU-2 in: Toolset Professional Support |
2 | 8 | 5 years, 2 months ago | ||
When i am editing an htm,l block on my page the layout assignment gets lost
Started by: hannesU-2 in: Toolset Professional Support |
2 | 3 | 5 years, 5 months ago | ||
Cannot use integers (years) as taxonomy – archive displays too many redirects
Started by: hannesU-2
in: Toolset Professional Support
Problem: With WPML plugin, if you have a category that has a slug that consists entirely of numeric characters this can lead to a redirection loop. For example, http://example.com/category/1234/ might do a 302 redirect to itself. Solution: It is a known issue, please try the hotfix of errata: Relevant Documentation: |
2 | 8 | 5 years, 6 months ago | ||
Select field issue – wrong language as a result
Started by: hannesU-2 in: Toolset Professioneller Support |
2 | 12 | 5 years, 11 months ago | ||
Filtering by url parameter doesn´t work
Started by: hannesU-2 in: Toolset Professional Support |
2 | 5 | 6 years, 4 months ago | ||
Passing arguments for views filter does not work
Started by: hannesU-2
in: Toolset Professional Support
Problem: Solution: I suggest you should change your checkboexes field to custom taxonomy and then filter your view by taxonomy. You can find proposed solution, in this case, with the following reply Relevant Documentation: |
2 | 11 | 6 years, 4 months ago |