annaA-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 |
---|---|---|---|---|---|
Add content to the actual page with frontend post form
Started by: annaA-2
in: Toolset Professional Support
Problem: How to create a post form while the parent post is pre-selected. Solution: Use the "Use create Child Post Link" according to the documentation below. Relevant Documentation: |
2 | 6 | 1 year, 9 months ago | ||
Ajax confict in a view woth search and pagination
Started by: annaA-2 in: Toolset Professional Support |
2 | 4 | 2 years ago | ||
moderate_comments permission doesn't work
Started by: annaA-2 in: Toolset Professional Support |
2 | 11 | 2 years, 8 months ago | ||
Super user by frontend can't upload images by the form fields
Started by: annaA-2 in: Toolset Professional Support |
2 | 10 | 2 years, 9 months ago | ||
Column width does not change when I try to drag it with my mouse
Started by: annaA-2 in: Toolset Professional Support |
3 | 11 | 2 years, 9 months ago | ||
Hoc can I add OR condition in query filter search instead AND operator?
Started by: annaA-2
in: Toolset Professional Support
Problem: The issue here is that the user wanted their custom query filter to function like an OR query instead of the default AND.. Solution: Previously you were allowed to change the field comparison logic from AND to OR and vice versa but it got broken somehow in a recent update. To work around this you're going to have to construct the query manually using the views hook. Add the following to your Toolset Custom Code section and it should help to resolve the issue. The Toolset custom codes can be found at Toolset -> Settings -> Custom Code add_filter( 'wpv_filter_query', 'filter_by_multiple_fields', 10, 3 ); function filter_by_multiple_fields( $query, $settings, $view_id ) { if ( $view_id == 1234) { $query['meta_query'] = array( 'relation' => 'OR', array( 'key' => 'color', 'value' => '1', 'compare' => '=', ), array( 'key' => 'price', 'value' => '1', 'compare' => '=', ), ); } return $query; } Now replace the 1234 with the ID of your view and then replace color and price with the slugs of the field that you are doing the query on. Remember to add the wpcf- prefix to the types custom fields slugs. |
2 | 3 | 3 years, 5 months ago | ||
I can't add custom field
Started by: annaA-2 in: Toolset Professional Support |
3 | 16 | 3 years, 5 months ago | ||
Data picker was woking and now disapperead
Started by: annaA-2 in: Toolset Professional Support |
2 | 6 | 3 years, 5 months ago | ||
content selection and query filter don't work in a view
Started by: annaA-2 in: Toolset Professional Support |
1 | 2 | 3 years, 5 months ago | ||
How to restrict date picker field on CRED form with year range
Started by: annaA-2
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
2 | 9 | 3 years, 5 months ago | ||
u_post_count function of children posts
Started by: annaA-2
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
2 | 5 | 3 years, 5 months ago | ||
Submitting post only one time
Started by: annaA-2 in: Toolset Professional Support |
2 | 6 | 3 years, 5 months ago | ||
Create posts voting system for registered users
Started by: annaA-2 in: Toolset Professional Support |
2 | 3 | 3 years, 6 months ago | ||
missing strings translations after update
Started by: annaA-2 in: Toolset Professional Support |
2 | 7 | 3 years, 6 months ago | ||
I need to add a link for the author to his page
Started by: annaA-2 in: Toolset Professional Support |
1 | 2 | 3 years, 8 months ago |