• How do you delete the message:

    The maximum upload file size: 1,000 MB.
    You can upload: image.
    Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded.

    ?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Denis Yanchevskiy

    (@denisco)

    Hello @jbertrand3000.

    You can use CSS snippet

    
    .comment-form-attachment__file-size-notice,
    .comment-form-attachment__file-types-notice,
    .comment-form-attachment__autoembed-links-notice {
        display: none;
    }
    

    or PHP snippet

    
    add_filter( 'dco_ca_form_element_upload_size', '__return_empty_string' );
    add_filter( 'dco_ca_form_element_file_types', '__return_empty_string' );
    add_filter( 'dco_ca_form_element_autoembed_links', '__return_empty_string' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Delete Message’ is closed to new replies.