hannesU-2
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 |
---|---|---|---|---|---|
Filtering using Ajax refresh doen´t work
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
3 | 5 | vor 1 Jahr, 6 Monaten | |
Blank page from time to time Sing view in elementar page
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 6 | vor 3 Jahren, 3 Monaten | |
WYSIWYG fields doesn´t save any text
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
3 | 12 | vor 3 Jahren, 5 Monaten | |
toolset forms – blank page in page editor
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 2 | vor 3 Jahren, 11 Monaten | |
Displaying results only when filter is used
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 2 | vor 4 Jahren, 2 Monaten | |
Cannot add classes to rows in layout
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 5 | vor 4 Jahren, 4 Monaten | |
show number of users that hav published a post via cred
Gestartet von: 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 | vor 4 Jahren, 5 Monaten | |
How to count only posts that have one date field not filled out
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 2 | vor 4 Jahren, 11 Monaten | |
How to display the custom fields of a product in the additional info tab
Gestartet von: hannesU-2 in: Toolset Professional Support |
1 | 2 | vor 5 Jahren, 1 Monat | ||
Bootstrap 3 loading although use Bootstrap 4 is activated in Toolset settings
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 8 | vor 5 Jahren, 5 Monaten | |
When i am editing an htm,l block on my page the layout assignment gets lost
Gestartet von: hannesU-2 in: Toolset Professional Support |
|
2 | 3 | vor 5 Jahren, 9 Monaten | |
Cannot use integers (years) as taxonomy – archive displays too many redirects
Gestartet von: 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 | vor 5 Jahren, 10 Monaten |