• Resolved Tom.Nunn

    (@tomnunn)


    Hi Nick,

    Great Plugin! I’m using it for a second project now and come across something a little different…

    One of the main reasons I love the plugin is that it wraps the fpa-more-link in a new div. Although, I am still seeing the other more-link display (I have added a link to a screenshot so it’s a little easier to see what is happening).

    https://s28.postimg.org/lkis2c5y5/Screen_Shot_2015_12_04_at_16_31_10.png

    In my last project, I used the following PHP to change the class of the more-link:

    //* Turn Read More Link Into a Button
    add_filter( 'get_the_content_more_link', 'button_read_more_link' );
    
    function button_read_more_link() {
        return '<p><a class="button" href="' . get_permalink() . '"></a></p>';
    
    }

    I then used CSS to hide the button (more-link) in the area I was using your Widget.

    I can do the above again, it just seemed a little strange… Maybe I am missing something quite obvious?

    Thank you in advance…
    Tom

    https://www.ads-software.com/plugins/genesis-featured-page-advanced/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Nick Diego

    (@ndiego)

    Hi Tom,

    Can you give me a breakdown of the settings you are using so I can try an duplicate on my end? i.e. are you using custom content, excerpt or the page’s content? From the screenshot I am guessing page content or expert, but I just wanted to make sure. If you are using page content, do you have a “read more” tag on the page itself?

    Thanks,
    Nick

    Thread Starter Tom.Nunn

    (@tomnunn)

    Hi Nick,

    Thanks for the speedy reply, yes I’m using the Page’s Content. There is no ‘read more’ tag inserted on the page itself.

    From inspecting it a little closer, it seems x2 ‘more-link’ are generated when you select the ‘Insert More Text on a New Line’ box.

    See source code screenshot here: https://postimg.org/image/vgtoyt5x5/

    Widget Setup: https://postimg.org/image/n3zmjczo3/

    I hope this helps, thank you for time.
    Tom

    Plugin Author Nick Diego

    (@ndiego)

    This is perfect, thanks. Found the issue. I will push out an new version by the end of the day! I’ll post again once it is available.

    Best,
    Nick

    Plugin Author Nick Diego

    (@ndiego)

    All fixed, version 1.8.2 is up! Thanks for catching that. There was a rouge space that was causing the issue. I had:

    the_content_limit( (int) $instance['content_limit'], ' ' )

    and it should have been:

    the_content_limit( (int) $instance['content_limit'], '' )

    Let me know if I can do anything else to help.

    Nick

    Thread Starter Tom.Nunn

    (@tomnunn)

    Perfect Nick! Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing one a.more-link’ is closed to new replies.