matijaK
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 |
---|---|---|---|---|---|
Importing data to checkbox fields using WP-All-import addon
Started by: matijaK in: Toolset Professional Support |
2 | 5 | 5 years, 5 months ago | ||
From submitted when embedded in a View does not save changes to post
1
2
Started by: matijaK in: Toolset Professional Support |
2 | 19 | 5 years, 6 months ago | ||
Generic select field is not required as defined
Started by: matijaK
in: Toolset Professional Support
Problem: The issue here is that the user had set their generic field to required, however on the frontend the field was not being required. Solution: In my testing of this on the client's site the field does display as required. It could be caching for the client that was causing this issue. |
2 | 3 | 5 years, 9 months ago | ||
CRED: set post to expire doesn’t work anymore
Started by: matijaK
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
CRED: set relationship trough predefined options
Started by: matijaK
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 6 | 6 years, 4 months ago | ||
Form email notifications with field conditions not behaving as expected
Started by: matijaK
in: Toolset Professional Support
Problem: I have a Form email notification configured to send when the Form is submitted with field conditions. The problem is the notifications are always sent, regardless of the field conditions. Solution: Right now, field conditions are not considered with "AND", they are considered with "OR". In other words, if you choose "When the form is submitted" and add field conditions, the notifications will be sent any time the Form is submitted regardless of the custom field values. We are working on making this more intuitive but for now you must choose "When custom fields are modified" in order to use additional field conditions. |
2 | 5 | 6 years, 4 months ago | ||
Slider caching failing – loads every page
Started by: matijaK
in: Toolset Professional Support
Problem: I am experiencing slow page load times, and it appears that slider caching is not working. When I reload the page, the slider loads the content again. Solution: Slider caching doesn't hold on to content across page reloads, it holds on to content as the Slider paginates in a loop. You can improve the performance of this page by reducing the number of pages cached in each View, reducing the number of Views with automatic pagination, and upgrading to PHP 7. If any individual database queries take longer than 0.5ms, we can investigate those queries in more detail. |
2 | 10 | 6 years, 5 months ago | ||
[continued] Connect multiple child posts to parent in one move
Started by: matijaK
in: Toolset Professional Support
Problem: I would like to automatically connect multiple posts in a M2M relationship. The GUI lets me connect each post manually, but I would like to automate the process. I would like to query all the posts in one custom post type, which have one specific taxonomy term, and relate those posts to 3 specific posts from another custom post type. Solution: add_shortcode('ts_update_db_relationships', 'ts_update_db_relationships_func'); function ts_update_db_relationships_func($args) { $pid = 34596; $field = '_ts_cc_wpv_manual_rel_assignment'; $is_updated = get_post_meta( $pid, $field, true); if( $is_updated != 1 ) { $tArgs = array( 'post_type' => 'tecaj', 'numberposts' => -1, 'tax_query' => array( array( 'taxonomy' => 'tip-tecaja', 'field' => 'slug', 'terms' => 'skupinski-tecaji', ), ), ); $tPosts = get_posts($tArgs); $tIds = array(); foreach( $tPosts as $tPost ) { $tIds[] = $tPost->ID; } $cIds = array(34821, 34820, 34814); foreach($tIds as $tId) { foreach($cIds as $cId) { toolset_connect_posts( 'tecaj_cena', $tId, $cId ); } } wp_reset_query(); update_post_meta( $pid, $field, 1 ); } return ''; } Relevant Documentation: |
2 | 9 | 6 years, 7 months ago | ||
Connect multiple child posts to parent in one move
Started by: matijaK in: Toolset Professional Support |
2 | 2 | 6 years, 8 months ago |