• Resolved JeRetiens

    (@jeretiens)


    Hello !

    First of all, let me thank you for your amazing plugin !

    I have some questions/issues with the plugin.

    Like many of others, I have the button “Write a new message” which doesn’t work.
    How can I hide or remove it ? (Because on my layout, it’s useless since users have a “send” button below the form)

    By default, links are set on “no follow”, I’d like to offer to my visitors to put a do follow link ? Do you know where can I change it or do you plan to make an option box in a future upgrade for this choice ?

    And a last little question/request, I’d like more space between comments and also the number of entries. Can you tell me where can I put a <p> </p> (or something like that) to improve the readability ?

    Thank you very much for your answer ??

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi,

    Your first question is in the faq. You can use a parameter with the shortcode:
    ‘[gwolle_gb button=”false”]’

    About no-follow: there is a filter for that:

    function my_gwolle_gb_author_link_rel( $rel ) {
            // default "nofollow"
            return 'follow'; // Help out mr. spamalot
    }
    add_filter( 'gwolle_gb_author_link_rel', 'my_gwolle_gb_author_link_rel' );

    You can add this code to the functions.php of your theme or to your own plugin.

    About margin, this CSS might help:

    .gb-entry {
        margin-bottom: 8px;
    }

    You can use the plugin Custom Simple CSS for extra CSS.

    Thread Starter JeRetiens

    (@jeretiens)

    Hi Marcel,

    Thanks for your answer !

    All works except the code I added in the functions.php of my theme. Links are still on nofollow.
    Any clue ? ??

    Thank you very much !

    Plugin Author Marcel Pol

    (@mpol)

    That is strange.
    I just tested in a child theme of Twenty Sixteen, and it works for me.

    Could you doublecheck that you edited the right file and also uploaded the right file to the right location? Also make sure to not make a typo.

    If it really doesn’t work, what theme do you use? And do you use a child theme?

    Thread Starter JeRetiens

    (@jeretiens)

    Hi !

    I c/p your code: `function my_gwolle_gb_author_link_rel( $rel ) {
    // default “nofollow”
    return ‘follow’; // Help out mr. spamalot
    }
    add_filter( ‘gwolle_gb_author_link_rel’, ‘my_gwolle_gb_author_link_rel’ );`

    …in my functions.php file. My website runs Newspaper 7 and I don’t use a child theme :/

    If it doesn’t work it’s not a big deal but I wanted to offer that link to my guests.

    Thread Starter JeRetiens

    (@jeretiens)

    It works (y)

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hide the button and DF links’ is closed to new replies.