• Resolved ikiu91

    (@ikiu91)


    Hello,

    I am French, and I am writing to you via google translate

    I use WP plug in your signature, and I want to know how to change some options.
    My site is under construction, this is a wiki, and each contributor will be able to customize its signature, but I want all the signatures at the bottom of the content. Is it possible to force this option?

    cordially

    http://wordpress.org/extend/plugins/wp-post-signature/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Soli

    (@allnull)

    @e4girl has mentioned a similar problem, and my reply is below:

    Well, I think you want an authority management. But I think it’s too complicated for this tiny plugin and for me.

    Anyway, you could list some rules for the authors to obey. That is simpler and more flexible.

    Thanks for your feedback.

    Thanks.

    Thread Starter ikiu91

    (@ikiu91)

    hello,

    Not what I want to do is just prevent signatures appear at the top of every article.

    There is not a command line that I can delete?

    regards

    Plugin Author Soli

    (@allnull)

    You could set your signature showing at the bottom of articles. But every contributors have their own settings. So, you must tell others to set the position of their signatures to bottom, too.

    If you want to edit the code of this plugin, you can change this block(wp-post-signature/wp-post-signature.php):

    if($current_signature['signature_pos'] == 'top') {
    		return strtr(stripslashes($current_signature['signature_text']), $env_vars) . $content;
    	} else {
    		return $content . strtr(stripslashes($current_signature['signature_text']), $env_vars);
    	}

    to:

    return $content . strtr(stripslashes($current_signature['signature_text']), $env_vars);
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to,force an option?’ is closed to new replies.