add_filter( 'woocommerce_page_title', 'woo_shop_page_title');
function woo_shop_page_title( ) {
- return "Experiences";
+ return "All Tours";
}
add_theme_support('post-thumbnails');
set_post_thumbnail_size(120, 100, true);
}
// change breadcrumbs 'products' to 'experiences'
- $(".post-product-archive").find('span').text('Experiences');
- $("[property=name]:contains('Products')").html('Experiences');
+ $(".post-product-archive").find('span').text('Tours');
+ $("[property=name]:contains('Products')").html('Tours');
});
}
// change breadcrumbs 'products' to 'experiences'
- $(".post-product-archive").find('span').text('Experiences');
- $("[property=name]:contains('Products')").html('Experiences');
+ $(".post-product-archive").find('span').text('Tours');
+ $("[property=name]:contains('Products')").html('Tours');
});