igorL-3
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 |
---|---|---|---|---|---|
Site is quite slow
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 11 | 3 years ago | |
How to get all the ID's of linked posts using a [wpv-post-id] shortcode
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 6 | 3 years, 2 months ago | |
Insert row in the middle of the Grid
Started by: igorL-3
in: Toolset Professional Support
Problem: In the view block, I have a 2 column, 20 row Grid on a Template and I need to inser a row after row 5. Solution: There isn't such kind of built-in feature within Views in blocks editor, you might consider custom codes, for example: https://toolset.com/forums/topic/insert-row-in-the-middle-of-the-grid/#post-2215489 Relevant Documentation: |
|
2 | 5 | 3 years, 3 months ago | |
Linking multiple posts to a post in one-to-many relationship from the frontend
1
2
Started by: igorL-3
in: Toolset Professional Support
Problem: The problem here is that the user is using the redirect settings on their form to reload the page that the form is on after it has been submitted, however instead of reloading the page they're redirected to the homepage. Solution: This is happening because the user is using the default permalink settings for wordpress instead of the postname permalink settings. In order for the redirect to work correctly then you must use the postname permalink settings. |
|
2 | 18 | 3 years, 3 months ago | |
Relationship between Custom Posts and Users
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 7 | 3 years, 4 months ago | |
Multiple images in forms and captions
Started by: igorL-3
in: Toolset Professional Support
Problem: The problem here is that the user wanted to upload multiple images into their repeatable image field all at once when using our Toolset Forms Solution: This can be done on your form's edit page under Other Settings. Just enable "Use the WordPress Media Library manager for image, video, audio, or file fields" This will give you access to the wordpress media library uploader that can allow you to upload multiple images at once. |
|
2 | 7 | 3 years, 4 months ago | |
VIEW with multiple custom types displays only two
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 7 | 3 years, 5 months ago | |
Sort by View
1
2
3
Started by: igorL-3 in: Toolset Professional Support |
|
3 | 40 | 3 years, 5 months ago | |
Hiding options in the Post Form Content Field
Started by: igorL-3
in: Toolset Professional Support
Problem: I would like to hide the Fields and Views, Forms, and Access buttons above WYSIWYG editors in my Forms from all Users except Admins. Solution: Add the following custom code snippet in your child theme's functions.php file: // https://toolset.com/forums/topic/hiding-options-in-the-post-form-content-field/ // hide advanced form buttons from non-admins function remove_toolset_buttons(){ global $current_user, $wp_roles; $admin = 'administrator'; // roles that can see the buttons // get non-administrator role slugs if ( ! isset( $wp_roles ) ) $wp_roles = new WP_Roles(); $all_roles = $wp_roles->get_names(); $editable_roles = apply_filters('editable_roles', $all_roles); $editable_role_names = array(); foreach($editable_roles as $role=>$details) { $editable_role_names[]= $role; } // remove f&v, forms, conditional output buttons if ( !in_array( $admin, $current_user->roles ) ) { add_filter( 'toolset_editor_add_form_buttons', '__return_false' ); add_filter( 'toolset_cred_button_before_print', '__return_false' ); } // remove the Access button add_filter( 'toolset_editor_add_access_button', function() use ($editable_role_names){ return $editable_role_names; }); } add_action( 'init', 'remove_toolset_buttons' ); |
|
2 | 3 | 3 years, 5 months ago | |
Relationship Forms only show One-to-Many relationships, not Many-to-Many relationships
1
2
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 23 | 3 years, 6 months ago | |
How to get an array of posts from an archive
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 8 | 3 years, 6 months ago | |
Accessing view in Javascript
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 3 | 3 years, 8 months ago | |
[wpv-filter-search-box not working as expected
Started by: igorL-3
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
|
2 | 10 | 3 years, 8 months ago | |
Filtering Views
1
2
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 17 | 3 years, 8 months ago | |
Pagination in Views
Started by: igorL-3 in: Toolset Professional Support |
|
2 | 5 | 3 years, 9 months ago |