Unchecked checkboxes included on site
Started by: andyS-5
in: Toolset Professional Support
Quick solution available
Problem:
Unchecked checkboxes included on site
Solution:
Types version 3.0.3 has fixed this issue.
Relevant Documentation:
2
3
6 years, 7 months ago
andyS-5
How to hide label in checkbox?
Started by: ivicaV
in: Toolset Professional Support
Quick solution available
Problem: I have a single checkbox field in a Form, and I would like to remove the label text that appears automatically next to the checkbox input.
Solution: The following code will remove the label text from this checkbox, on all Forms:
add_filter('cred_filter_field_before_add_to_form', 'remove_cb_label', 10, 2);
function remove_cb_label($field, $computed_values){
if(isset($field['id']) && in_array($field['id'], array('your-field-slug'))){
$field['title'] = '';
}
return $field;
}
2
3
6 years, 7 months ago
ivicaV
Fatal error: Out of memory when accessing WordPress > Settings > Permalinks
Started by: christinaB-2
in: Toolset Professional Support
2
2
6 years, 7 months ago
Luo Yang
Front end form crashing shop when new product is entered
Started by: ChristineL838
in: Toolset Professional Support
2
2
6 years, 7 months ago
Minesh
Displaying an address field with Multiple Instance smushes all entries together.
Started by: Jonathon Hanten
in: Toolset Professional Support
Quick solution available
2
2
6 years, 7 months ago
Minesh
Problem after online server migration
Started by: valterG
in: Toolset Professional Support
Quick solution available
2
4
6 years, 7 months ago
Minesh
Sort order of categories
Started by: jillT
in: Toolset Professional Support
2
3
6 years, 7 months ago
jillT
Yoast issue (The text contains 0 words.) Please advice.
Started by: terryR
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the user wants to Allow Yoast to recognize custom fields.
Solution:
What I recommend that you do is to contact the yoast support forum in order for them to help you achieve this.
2
4
6 years, 7 months ago
Shane
listing categories
Started by: digitalF
in: Toolset Professional Support
2
2
6 years, 7 months ago
Christian Cox
Changing dropdown selected value based on the datepicker selected date
Started by: nabils
in: Toolset Professional Support
Quick solution available
Problem: I would like to use JavaScript to change the value of a select field based on the value selected in a datepicker.
Solution: There is no JavaScript API specifically for Toolset Forms, but we integrate the jQuery UI datepicker library so you can use their onSelect API: @http://api.jqueryui.com/datepicker/#option-onSelect
2
2
6 years, 7 months ago
Christian Cox
Custom Single post page displays old single. php contents + new template
Started by: willemd
in: Toolset Professional Support
2
5
6 years, 7 months ago
Shane
Displaying a CPT loop but restricting the CPT single page to logged in users
Started by: gabrielB
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the user wanted to restrict some of their pages to users who are not logged in.
Solution:
What you can do is to try using a post group and then deny access to guests for that group. This might make the posts not appear in the view to the guests but you can try.
Take a look at the link below for more information on how Post Groups work in our Access plugin.
https://toolset.com/documentation/user-guides/limiting-read-access-specific-content/
2
2
6 years, 7 months ago
Shane
Suggest post title when start typing in text Input field
Started by: rishiK
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the user wanted a post title to be suggested when they start typing.
Solution:
This is actually not possible with our plugins so this would require the use of some custom code.
What I recommend that you do is to contact one of our certified consultants in order to get this done for you.
https://toolset.com/contractors/
2
2
6 years, 7 months ago
Shane
Conditional display of Types custom fields
Started by: andrewB-7
in: Toolset Professional Support
Quick solution available
2
2
6 years, 7 months ago
Shane
Performance with large database
Started by: HarryT902
in: Toolset Professional Support
4
9
6 years, 9 months ago
Luo Yang