Tagged: breadcrumbs
I used the following code to remove the Title/h1 (I want to specify my h1 in the page)
add_filter( 'avf_title_args', 'avf_product_titleee', 0, 2 );
function avf_product_titleee( $args, $id ) {
$args['title'] = "";
$args['link'] = "";
$args['heading'] = "strong";
return $args;
}
I’d like to move the breadcrumbs to where the title was originally, on the left side.
Can anyone tell me how that is accomplished?
thanks in advance