This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Add Read More link (mostly for visual)

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Add Read More link (mostly for visual)

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #40417
    DjokerDjoker
    Participant

    Hi there,

    I am hoping you are well.

    My question is specific for the horizontal, I have added it to my child theme and was successful in making a few edits, but where I get stuck on is adding a “read more” either link or button (for visual purposes really).

    Are you able to assist me in what the best course of action is to achieve this?

    Thanks,

    Aleks.

    #40433
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Aleks,

    Sure!
    If you want to add a read more link to each of the results content field, you could possibly use a custom code like this:

    add_filter('asp_results', 'asp_display_read_more');
    function asp_display_read_more($results) {
    	foreach($results as $k=>&$r){
            $r->content .= "<a href='".$r->link."'>Read more..</a>";
        }
        return $results;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.