The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
3 posters

    How can i disable the posting of images on my forum site?

    ahawkua
    ahawkua
    Forumember


    Posts : 28
    Reputation : 1
    Language : english

    How can i disable the posting of images on my forum site? Empty How can i disable the posting of images on my forum site?

    Post by ahawkua October 6th 2017, 2:49 am

    How can i disable the posting of images on my forum site?
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19324
    Reputation : 2005
    Language : fluent in dork / mumbojumbo & English haha

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by Ape October 6th 2017, 11:48 am

    There is no tool's in the ACP to stop this sorry but i think you could do it by removing the button with JavaScript but not sure how it's done Sad

    Maybe @Draxion will know more on the code used. How can i disable the posting of images on my forum site? Mouais



    How can i disable the posting of images on my forum site? Left1212How can i disable the posting of images on my forum site? Center11How can i disable the posting of images on my forum site? Right112
    How can i disable the posting of images on my forum site? Ape_b110
    How can i disable the posting of images on my forum site? Ape1010
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by Draxion October 6th 2017, 3:49 pm

    Yes, there is a way you can disable the function to post them via JavaScript, but I don't think it's possible to completely remove the function from the forum itself. You could simply replace the images with something else using the same method.
    ahawkua
    ahawkua
    Forumember


    Posts : 28
    Reputation : 1
    Language : english

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by ahawkua October 6th 2017, 5:03 pm

    How do you do this?
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by Draxion October 6th 2017, 7:18 pm

    Are you saying you want to disable "all" images on the site?
    ahawkua
    ahawkua
    Forumember


    Posts : 28
    Reputation : 1
    Language : english

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by ahawkua October 6th 2017, 7:22 pm

    Yes
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by Draxion October 6th 2017, 7:32 pm

    You can try this.

    CSS
    Code:
    img {
      display: none !important;
    }

    JavaScript
    Code:
    $(document).ready(function() {
      $("img").replaceWith('<div style="display:none;"></div>');
    });
    ahawkua
    ahawkua
    Forumember


    Posts : 28
    Reputation : 1
    Language : english

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by ahawkua October 6th 2017, 7:34 pm

    Ah okay thank you
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    How can i disable the posting of images on my forum site? Empty Re: How can i disable the posting of images on my forum site?

    Post by Draxion October 6th 2017, 7:35 pm

    If this is solved, please change the topic icon to "solved". Thank you.

      Current date/time is September 22nd 2024, 2:19 pm