Question about inline dynamic fields and excerpts in a paragraph
Started by: sarahP
in: Toolset Professional Support
2
4
4 years, 8 months ago
Shane
How can I habe two maps on one page with different subselections
Started by: martinP-14
in: Toolset Professional Support
2
8
4 years, 8 months ago
Shane
append new updates into a multiline field
Started by: manishB-2
in: Toolset Professional Support
1
4
4 years, 8 months ago
manishB-2
Adding Custom Field on Product Form
Started by: mohamedE-6
in: Toolset Professional Support
2
2
4 years, 8 months ago
Shane
Post Relationships within same custom post type
Started by: gordonW-2
in: Toolset Professional Support
2
2
4 years, 8 months ago
Nigel
Using toolset with Elementor templates
Started by: stevenM-7
in: Toolset Professional Support
Quick solution available
3
14
4 years, 8 months ago
stevenM-7
jQuery UI Conflicts due to overwritten CSS
Started by: smileBeda
in: Toolset Professional Support
2
3
4 years, 8 months ago
Jamal
Direct apply (jobs) from front-end
Started by: tualntM
in: Toolset Professional Support
Quick solution available
2
9
4 years, 8 months ago
tualntM
How to get title / values from taxanomies in php?
Started by: simonV-3
in: Toolset Professional Support
2
5
4 years, 8 months ago
simonV-3
Exported views file does not work
Started by: aitorS
in: Toolset Professional Support
Quick solution available
Problem:
The problem here is that the user wanted to export their views.
Solution:
Unfortunately it would appear that views doesn't allow you to export its components directly but you can still do an export using the module manager plugin.
The module manager plugin can be used by going to Toolset -> Modules.
From there you will be presented with all the components that were created in Toolset. This includes Views, Content Template, Post Types etc.
On the right hand corner you will see the option to create a new module. Create your new module then drag and drop the components that you want to be in this module then save and export it.
To import you will go to Toolset -> Import/Export and under modules you can use this to import the modules that you've just exported.
Finally the module manager can be downloaded from the link below.
https://toolset.com/download/toolset-module-manager/
2
7
4 years, 8 months ago
aitorS
Is it possible to set attributes like the grid columns programmatically?
Started by: gordonW-2
in: Toolset Professional Support
2
3
4 years, 8 months ago
gordonW-2
wpv-reset-password-form does not enforce password strength
Started by: himanshuS
in: Toolset Professional Support
3
9
4 years, 8 months ago
Jamal
Hiding options in the Post Form Content Field
Started by: igorL-3
in: Toolset Professional Support
Quick solution available
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
4 years, 8 months ago
igorL-3
View filter to filter on child taxonomy terms
Started by: Jim
in: Toolset Professional Support
2
20
4 years, 8 months ago
Jim
Toolset Blocks – uninstall?
Started by: tyeB
in: Toolset Professional Support
2
3
4 years, 8 months ago
tyeB