|
User forms: how to substitute the fancy tinyMCE editor with a plain text box?
Started by: cantonB
in: Toolset Professional Support
Quick solution available
Problem:
The user, wanted to replace the default WYSIWYG TinyMCE editor in the 'user form' toolset with a simple "textarea" to prevent users from inserting formatted text. They were unable to find a way to make this change using the existing WordPress default "description" field.
Solution:
We suggested that instead of trying to modify the TinyMCE editor, cantonB should create a new custom field that supports multiline text. This approach allows the form to display a basic textarea field, aligning with the user's requirements for plain text input.
|
|
2 |
3 |
6 months, 2 weeks ago
cantonB
|
|
Toolset Forms is conflicting with Theme/WPBakery
Started by: jelle-jacobd
in: Toolset Professional Support
|
|
2 |
13 |
6 months, 2 weeks ago
jelle-jacobd
|
|
Where do I find Repeating Group entries that do not have a "parent" post linked?
Started by: ABSTRACTUS
in: Toolset Professional Support
|
|
2 |
3 |
6 months, 2 weeks ago
Waqar
|
|
Pay after post approval
Started by: johnH-33
in: Toolset Professional Support
|
|
2 |
2 |
6 months, 2 weeks ago
Waqar
|
|
multi-file upload
Started by: Eugene Mednikov
in: Toolset Professional Support
|
|
2 |
2 |
6 months, 2 weeks ago
Waqar
|
|
Problem with Toolset form
Started by: hernanL
in: Toolset Professional Support
|
|
3 |
7 |
6 months, 3 weeks ago
Waqar
|
|
Strange conditional group behaviour
Started by: nicolaS-3
in: Toolset Professional Support
|
|
2 |
4 |
6 months, 4 weeks ago
Waqar
|
|
Editing a user's profile
Started by: weloveitS
in: Toolset Professional Support
|
|
2 |
2 |
6 months, 4 weeks ago
Waqar
|
|
Remove nickname field when creating "Add new user" form
Started by: JacquesF783
in: Toolset Professional Support
Quick solution available
Problem:
Customer wanted to remove nickname field from the "Add new user" form
Solution:
The customer checked the checkbox "Auto-generate Nickname" and that removed this field from the front end as desired.
|
|
2 |
5 |
7 months ago
Mateus Getulio
|
|
No display options available in edit form
Started by: Luit
in: Toolset Professional Support
|
|
2 |
7 |
7 months ago
Waqar
|
|
Post Edit revision data
Started by: marcoG-5
in: Toolset Professional Support
|
|
2 |
3 |
7 months ago
Waqar
|
|
How can i make a contact form for visitors to contact our artists?
Started by: peterV-17
in: Toolset Professional Support
|
|
2 |
11 |
7 months, 1 week ago
Waqar
|
|
Post naming with related post titles
Started by: fabriceS
in: Toolset Professional Support
|
|
2 |
4 |
7 months, 1 week ago
Waqar
|
|
Date Time field change the option on the minutes select field
Started by: garenM
in: Toolset Professional Support
Quick solution available
Problem:
Customer would like to change the option on the minutes field to 15-minute increments (0, 15, 30, 45).
Solution:
It is possible to use some jQuery to customize it and change the values of the select field.
Please add the following code to the javascript section of the form:
(function($, window) {
$.fn.replaceOptions = function(options) {
var self, $option;
this.empty();
self = this;
$.each(options, function(index, option) {
$option = $("<option></option>")
.attr("value", option.value)
.text(option.text);
self.append($option);
});
};
})(jQuery, window);
var options = [
{text: "0", value: 1},
{text: "15", value: 2},
{text: "30", value: 3},
{text: "45", value: 4},
];
jQuery("select[name$=\'minute]\']").replaceOptions(options);
|
|
2 |
2 |
7 months, 2 weeks ago
Mateus Getulio
|
|
Limit multiple image upload size into CRED form
Started by: davideE-4
in: Toolset Professional Support
Quick solution available
|
|
2 |
2 |
7 months, 3 weeks ago
Mateus Getulio
|