• Hi, am I able to remake design of single advert? I would like to display gallery at the bottom rather, than under title. Is that possible somehow? Thank you

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

    (@gwin)

    Hi,
    you can redo the whole wpadverts/templates/single.php template file by creating a child-template as explained here https://wpadverts.com/doc/child-themes-and-templates/

    That being said if you only want to move the gallery to the bottom of the page you can do that by adding the code below in your theme functions.php file

    
    add_action( "init", function() {
      remove_action('adverts_tpl_single_top', 'adverts_single_rslides');
      add_action('adverts_tpl_single_bottom', 'adverts_single_rslides', 1);
    }, 1000 ); 
    
Viewing 1 replies (of 1 total)
  • The topic ‘Remake of single advert’ is closed to new replies.