You did that with a Woocommerce theme?
With the WPFlexiShopTwo theme, I edited /wp-content/themes/wpflexishoptwo/core/frontend/head.php to have the following:
// ————————————–
elseif ( is_post_type_archive(‘product’) ) {
$title = get_post_meta(woocommerce_get_page_id(‘catalog’), ‘seo_title’, true);
}
// ————————————–
That works on that theme. My problem is how to do it on the twentytwelve default theme?
CHris