Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter reace99

    (@reace99)

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

    Much appreciated.

    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.

    reace99

    (@reace99)

    sorry , resolved my random issue (somehow)

    to do this I changed under ‘Post type’ Tab in ‘Settings’ ;

    Archive Page URL & Testimonial Page URL

    Then under Permalinks..

    Saved Twice (x2) until it gave confirmation that Permalinks were updated. *Worked*

    as for your problem , hmm.. I’ve actually not got that far as yet.

    reace99

    (@reace99)

    I also have a problem in regards to permalinks = post.

    if I do this for some weird reason , then pages 2+ “page not found” error.. :\

    ie: <mysite>/testimonials/page/2/ (don’t work)

    if I reset to default works fine.

    ie: <mysite>/?page_id=999&paged=2

    now I noticed that &paged=2 .. perhaps should be &page=2 ?

    idk..

    reace99

    (@reace99)

    or.. append to bottom of your testimonial-widgets.css the following styles;

    .testimonialswidget_testimonial_list {
            display: block;
            margin-bottom: 1.4em;
            clear:left;
            padding:7px;
    background: rgb(69,72,77); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,1)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
    
            }
    
    .testimonialswidget_image{
            margin-right:20px;
    border:1px solid #000;
    -webkit-box-shadow: 0 8px 6px -6px black;
               -moz-box-shadow: 0 8px 6px -6px black;
                    box-shadow: 0 8px 6px -6px black;
    
    }
    
    .testimonialswidget_testimonial cite{
           clear:both;
           color:orange;
    }
    
    .testimonialswidget_testimonial_list p{
    padding-left:170px;
    }

    for different Gradients a good place to get them from here: gradient-editor

    reace99

    (@reace99)

    yes shes quite messy this plugin , has cool features .. but is buggy and weird all the same.

    try this which is my styling I made for it;

    file: http://<your_site.com>/wp-content/plugins/testimonials-widget/testimonial-widgets.css

    backup your file

    then copy / paste / replace entire thing with this styling below;
    http://www.pastebin.ca/2331592

    cheers.

Viewing 6 replies - 1 through 6 (of 6 total)