igorL-3
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 |
|---|---|---|---|---|---|
|
Site is quite slow
Gestartet von: igorL-3 in: Toolset Professional Support |
|
2 | 11 | vor 4 years, 4 months | |
|
How to get all the ID's of linked posts using a [wpv-post-id] shortcode
Gestartet von: igorL-3 in: Toolset Professional Support |
|
2 | 6 | vor 4 years, 6 months | |
|
Insert row in the middle of the Grid
Gestartet von: 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 | vor 4 years, 7 months | |
|
Linking multiple posts to a post in one-to-many relationship from the frontend
1
2
Gestartet von: 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 | vor 4 years, 7 months | |
|
Relationship between Custom Posts and Users
Gestartet von: igorL-3 in: Toolset Professional Support |
|
2 | 7 | vor 4 years, 8 months | |
|
Multiple images in forms and captions
Gestartet von: 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 | vor 4 years, 8 months | |
|
VIEW with multiple custom types displays only two
Gestartet von: igorL-3 in: Toolset Professional Support |
|
2 | 7 | vor 4 years, 9 months | |
|
Sort by View
1
2
3
Gestartet von: igorL-3 in: Toolset Professional Support |
|
3 | 40 | vor 4 years, 9 months | |
|
Hiding options in the Post Form Content Field
Gestartet von: 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 | vor 4 years, 9 months | |
|
How to get an array of posts from an archive
Gestartet von: igorL-3 in: Toolset Professional Support |
|
2 | 8 | vor 4 years, 10 months | |
|
Accessing view in Javascript
Gestartet von: igorL-3 in: Toolset Professional Support |
|
2 | 3 | vor 4 years, 12 months |