Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author honza.skypala

    (@honzaskypala)

    I will add this to the TODO list, but will not promise anything.

    As a workaround with same result you can just easily hide both via the CSS, either in your template, or by Jetpack → Custom CSS.

    .Ajax_Shoutbox_Widget #sb_website,
    .Ajax_Shoutbox_Widget #sb_showsmiles {
      display: none
    }
    Plugin Author honza.skypala

    (@honzaskypala)

    Just realized, you want this to be disable only for unregistered users. Then the code will be:

    .Ajax_Shoutbox_Widget #sb_website,
    .Ajax_Shoutbox_Widget #sb_showsmiles {
      display: none
    }
    
    body.logged-in .Ajax_Shoutbox_Widget #sb_website,
    body.logged-in .Ajax_Shoutbox_Widget #sb_showsmiles {
      display: block
    }
    Thread Starter Jan Pencik

    (@janpencik)

    Thank you very much!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable emoticons and website field for non-registred users’ is closed to new replies.