a.R
Support threads created in the last 30 days: 5
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
find posts that do NOT contain the options NOT selected in custom search?
Started by: a.R in: Toolset Professional Support |
2 | 4 | 6 years ago | ||
Sorting always reverts to default
Started by: a.R in: Toolset Professional Support |
2 | 3 | 6 years ago | ||
find posts that don´t belong to a SUB-term
Started by: a.R in: Toolset Professional Support |
2 | 2 | 6 years, 1 month ago | ||
Google maps will not be loaded in infinite scroll
Started by: a.R in: Toolset Professional Support |
2 | 4 | 6 years, 1 month ago | ||
types and views cannot be updated because wpml is not registered??
Started by: a.R
in: Toolset Professional Support
Problem: The issue here is that the user was having issues with their subscription. Solution: What I would recommend that you do is to remove the registration from the product and re-register . This should resolve the issue and allow you to update the plugins once more. |
2 | 7 | 6 years, 1 month ago | ||
How to style options in cred_field by format tag or similar?
Started by: a.R
in: Toolset Professional Support
Problem: I would like to customize the design of each option in a cred_field, similar to the "format" attribute for a custom search field in Views. Solution: The best way to apply custom styles to a form field is to use a generic field. Relevant Documentation: |
2 | 3 | 6 years, 1 month ago | ||
Marker on google map only appears in CRED form!
Started by: a.R in: Toolset Professional Support |
2 | 3 | 6 years, 1 month ago | ||
Only find posts of user´s buddypress-friends in a view?
Started by: a.R in: Toolset Professional Support |
2 | 2 | 6 years, 2 months ago | ||
VIEW: Add custom search and infinite scroll later (belatedly)?
Started by: a.R
in: Toolset Professional Support
Problem: Solution: You can find proposed solution with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 10 months ago | ||
iframe gets lost when saving
Started by: a.R
in: Toolset Professional Support
Problem: The issue here is that the custom was trying to add an IFRAME to a WYSIWYG field on a CRED form but when the customer saves the form the IFRAME isn't saved. Solution: The reason for this is that the iframe isn't in the allowed tags in CRED. To add an iframe to the allowed tags add the following to your functions.php file add_filter( 'wp_kses_allowed_html', 'esw_author_cap_filter',1,1 ); function esw_author_cap_filter( $allowedposttags ) { //Here put your conditions, depending your context if ( !current_user_can( 'publish_posts' ) ) return $allowedposttags; // Here add tags and attributes you want to allow $allowedposttags['iframe']=array( 'align' => true, 'width' => true, 'height' => true, 'frameborder' => true, 'name' => true, 'src' => true, 'id' => true, 'class' => true, 'style' => true, 'scrolling' => true, 'marginwidth' => true, 'marginheight' => true, ); return $allowedposttags; } Then go to Toolset -> Settings -> Forms ->Content Filter and click "Select allowed HTML Tags" and ensure that iframe is ticked. |
2 | 10 | 6 years, 10 months ago | ||
Sort custom search results by post stickyness?
Started by: a.R
in: Toolset Professional Support
Problem: Solution: Sticky posts are stored in an array in wp_options, so you would need to run your query independent of their stickiness, then use the wpv_filter_query_post_process hook (https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query_post_process) to manually re-order the results by first extracting those that are found in the array of sticky posts and then appending the remaining posts which are not. |
2 | 3 | 6 years, 10 months ago | ||
On a search results page how to display what is being searched for
Started by: a.R
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 14 | 6 years, 10 months ago | ||
Find posts/pages that do NOT contain a search term given by shortcode-attribute?
1
2
Started by: a.R
in: Toolset Professional Support
Problem: The issue here is that the customer wanted to do a text search using our views plugin but instead of searching for texts that were entered the user wanted to do a search and return posts that do NOT contain the items searched for. Solution: So its not possible to do it like this, only with static filters. |
2 | 17 | 6 years, 11 months ago | ||
Hide posts hidden by post group from menu?
Started by: a.R
in: Toolset Professional Support
Problem: I have a menu that lists several pages. Post Groups are used to manage access to these Pages, and I would like to use those Post Groups to manage the links in the menu as well. If a User does not have access to the Page, I want to hide the link. Solution: The only way available to restrict access to individual menu items is by User Role, as described below. I have added your vote to a feature request to improve navigation menu listings based on Access restrictions. Relevant Documentation: |
2 | 4 | 6 years, 11 months ago | ||
Custom search shows posts of hidden post group
Started by: a.R in: Toolset Professional Support |
2 | 3 | 6 years, 11 months ago |