Hi,
i am not sure what is your question, where exactly on-site you would like to add the “back button”?
Hi, thanks for the fast reply. At a page of a new advert created by an user, there isn’t any possibility to turn back to the general advert page “back to all results” for example or back to… at the hierarchy isn’t it neither. Sorry for First unclear question
Hi,
thanks for the details, the breadcrumbs are part of the theme, i am not sure if it is possible to customize it with filters/actions, you would need to check with your theme support.
As for a general “back to all results” button, you can add it for example next to the “Absenden” button by pasting the below code in your theme functions.php file
add_action( "adverts_tpl_single_bottom", function( $id ) {
echo sprintf( '<a href="%s" class="adverts-button">Back to all results</a>', get_permalink( adverts_config( 'ads_list_id' ) ) );
} );