Forum Replies Created
-
AuthorPosts
-
[email protected]
Participantit is not resolved please check there is javascript or any option in tiny mce editor which can prevent from copy paste Thanks
[email protected]
ParticipantReadonly is used to prevent adding text i need user to input text but need to prevent from copy paste.
please check if there is any solution.
thanks[email protected]
Participantthis it worked
[email protected]
ParticipantSorry there is some setting needed to prevent copy paste
[email protected]
ParticipantHi Support still waiting for this solution any updates?
[email protected]
ParticipantThanks I have fixed it the problem with signin cookie value i have updated my code as
$user = wp_signon( $creds, true );
now it can upload images.[email protected]
ParticipantAlso the gallery upload field code is
array( 'id' => 'gallery_upload', 'name' => esc_html__( 'IMAGE UPLOAD', 'your-prefix' ), 'type' => 'image_upload', 'admin_columns' => 'before title', //'required' => true, // Delete image from Media Library when remove it from post meta? // Note: it might affect other posts if you use same image for multiple posts 'force_delete' => true, // Maximum image uploads 'max_file_uploads' => 5, // Display the "Uploaded 1/2 files" status 'max_status' => true, ),[email protected]
ParticipantOk also give me tip so i can try to integrate in the wysiwyg editor or it need some extra core editing..?
[email protected]
ParticipantOk but how to use this with the frontend form plugin.
[email protected]
ParticipantIt not have any simple validation rule for character or word limit check for wysiwyg editor..?
[email protected]
ParticipantHi there any solution for the character limit..
[email protected]
Participantis the latest version has fixed this problem. last time you suggested that i should validate form before saving. as i added following code
add_filter( 'rwmb_frontend_validate', function( $is_valid, $config ) { if ( 'meta-box-id' !== $config['id'] ) { return $is_valid; } if ( empty( $_POST['image_upload_field'] ) ) { $is_valid = false; } return $is_valid; }, 10, 2 );[email protected]
ParticipantYes Thanks i added the text field before also clear browser cache.
ok i have solved it map is working.[email protected]
ParticipantHi i tried the map field it shows error and auto complete not works also
please check the screenshot attached.

[email protected]
ParticipantHi When Will This Available i also want to add recaptcha in my form..
-
AuthorPosts