Tagged: button, Product page
Hello team,
i tired to add the av_button instead of the social_toolbar like in this code:
add_action('woocommerce_after_single_product_summary', 'avia_add_social_toolbar', 10, 2);
function avia_add_social_toolbar($id = "", $context = "")
{
avia_social_share_links();
}
I want to make a button with “CONTAKT” forwarded to an url f.example “https://kriesi.at/contact”
Maybe you can help me, thanks in advance.
Hey marketingnr1,
Not sure I understand exactly what you want to do.
Could you please explain again, a bit more?
Best regards,
Basilis
Hello Basilis,
like this threat: https://kriesi.at/support/topic/social-buttons-on-woocommerce-product-pages/
instead of the social media icons, i just only want a button with with “Contact” linked with an url to a site.
Hope i could explain it correct to you.
Thanks in advance,
Kind reagards!
Hi marketingnr1,
You can the html for the button with the same snippet.
add_action('woocommerce_after_single_product_summary', 'avia_add_social_toolbar', 10, 2);
function avia_add_social_toolbar($id = "", $context = "")
{
//add html for the button
}
Best regards,
Victoria