Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Michael Cannon

    (@comprock)

    See FAQ 36 regarading the filter for testimonials_widget_previous_posts_link_text.

    Thread Starter reace99

    (@reace99)

    ok .. got it thank you very much.

    function my_testimonials_widget_next_posts_link() {
        	return 'Next';
    }
    
    	add_filter( 'testimonials_widget_next_posts_link', 'my_testimonials_widget_next_posts_link' );
    
    function my_testimonials_widget_previous_posts_link_text() {
        	return 'Previous';
    }
    
    	add_filter( 'testimonials_widget_previous_posts_link_text', 'my_testimonials_widget_previous_posts_link_text' );

    ^Perhaps if you inserted that whole code into Faq instead it would save others the trouble 🙂

    as testimonials_widget_next_posts_link_text is where I went wrong. and needed to refer to this Documentation to find it.. although funnily enough it was in the faq all along.

    Plugin Contributor Michael Cannon

    (@comprock)

    Agh, I’m very sorry, the filter is named testimonials_widget_next_posts_link. I’ll correct for tomorrow’s release.

    Thread Starter reace99

    (@reace99)

    no worries mate I have updated the above post with it fully working now 🙂

    Much appreciated.

    Plugin Contributor Michael Cannon

    (@comprock)

    Do note, testimonials_widget_previous_posts_link_text is the correct name. So you might want to set the filter for both so that upon update, it’ll still work.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘change the annoying little » thinggies’ is closed to new replies.