• Dear all

    Is there an option to add a back button on the different category sites? I found a code snippet to add a back button on a single advert but couldn’t find anything to add a back button on a category site.

    Thank you very much for your help.

    Best wishes,
    Silvan

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    out of box we do not have such functionality or code snippet, but to add a back button on all advert-category pages which will lead back to the page with all of the Ads you can paste the code below in your theme functions.php file it should do it

    
    add_filter( "adverts_sh_list_before", function() {
      if( is_tax( 'advert_category' ) ) {
        $url = get_permalink( adverts_config( "ads_list_id" ) );
        echo sprintf( '<p><a href="%s">Go back to all ads &rarr;</a></p>', $url );
      }
    }, 1 );
    
    Thread Starter sjlae50

    (@sjlae50)

    Hi Greg,
    Thank you very much for your fast help. The back button (link) works perfect.
    BUT, is it possible to place it after all adverts on the category page? As the name suggests currently the link is BEFORE all adverts.
    Thank you.
    Best wishes,
    Silvan

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    without changing original source code i am afraid not, as right now we only have adverts_sh_list_before action in the list.php file which runs at the beginning of the file.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Back button from category’ is closed to new replies.