|
|
Styling “Add new” button for images in the toolset forms
Started by: pramodk-2
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the user wanted to style the add new button on their forms.
Solution:
This can be done by using the some css. Essentially the class that you will need to target with the css is the ".wpt-repadd" class.
You can use this class and add your custom css to the css section of your form.
Here is an example below of some css to change the font size of the button.
.wpt-repadd{
font-size: 30px;
}
|
|
3 |
9 |
4 years, 11 months ago
pramodk-2
|
|
|
Custom Field Checkboxes Stripping HTML Link
Started by: Jason Bajor
in: Toolset Professional Support
Quick solution available
Problem:
Custom Field Checkboxes Stripping HTML Link
Solution:
By default, Types sanitize field label for the custom checkboxes field options.
To allow custom HTML in checkboxes field option, you should try to add the following code to your current theme's functions.php file:
add_filter( 'types_sanitize_field_labels', '__return_false' );
You can find the proposed solution in this case with the following reply:
=> https://toolset.com/forums/topic/custom-field-checkboxes-stripping-html-link/#post-1942069
Relevant Documentation:
|
|
2 |
12 |
4 years, 11 months ago
Jason Bajor
|