Hi,
I want to change the title of my Sizing Guide. It is now ‘Ringenbos’.
In earlier answers, I found that I should change the following in You can change text in the file wp-content/themes/royal/framework/woo.php (line 874). .
On lines 860 and further I have the following code
if(!function_exists('et_size_guide')) {
function et_size_guide() {
if ( etheme_get_custom_field('size_guide_img') ) : ?>
<?php $lightbox_rel = (get_option('woocommerce_enable_lightbox') == 'yes') ? 'prettyPhoto' : 'lightbox'; ?>
<div class="size_guide">
<a rel="<?php echo $lightbox_rel; ?>" href="<?php etheme_custom_field('size_guide_img'); ?>"><?php _e('SIZING GUIDE', ETHEME_DOMAIN); ?></a>
</div>
<?php endif;
}
}
I do not see the title ‘Ringenbos’. Where can I change it?
Also, how do I make my changes in Child-theme?
Thank you.