This topic has 5 replies, 2 voices, and was last updated 9 years, 6 months ago ago by Eva Kemp
I need to hide “Email to a friend” woocommerce product page function.
Ex: http://www.vaskbutiken.se/produkt/tuscany-leather-portfolj-san-gimignano-tl141340/
I tried this in custom.css file:
a.email-link {
display: none;
}
But it took away the possibility to choose color “För att handla, välj färg….” in Swedish.
Can you help me please?
Thanks.
Hello,
You can remove that link in the file wp-content/themes/royal/framework/woo.php (line 840).
Regards,
Eva Kemp.
Hi.
when i remove the link, i go the same problem as before with to choose color
The text Email to a friend is easy to take awey vid po files, ut the picture off the letter is still there.
What to do i copyd the function below?
if(!function_exists(‘et_email_btn’)) {
function et_email_btn($label = ”) {
global $post;
$html = ”;
$permalink = get_permalink($post->ID);
$post_title = rawurlencode(get_the_title($post->ID));
if($label == ”) {
$label = __(‘Email to a friend’, ETHEME_DOMAIN);
}
$html .= ‘
‘.$label.’‘;
echo $html;
}
}
I solved it, not beautiful :
if(!function_exists(‘et_email_btn’)) {
function et_email_btn($label = ”) {
$label = ‘ ‘;
}
$html .=
$label;
echo $html;
}
}
Hello,
So do you need further assistance?
Thank you.
Regards,
Eva Kemp.
Tagged: email, friend, hide, persuasive, template, woocommerce, wordpress
You must be logged in to reply to this topic.Log in/Sign up