Replies: 0
Hi
My Woocommerce is right now in catalog mode så customer must email to us to buy a product. So I want on my email hyperlink I want to add like
Subject: I want to have more information about product X
Body: some standard text
This function shall automatic pick the product from product name.
I found this for WordPress pages
<?php
/*
Plugin Name: My Custom Functions
Description: Some description
Version: 1.0.0
*/
add_shortcode( ‘custom_mailto_title’, ‘custom_mailto_title’ );
function custom_mailto_title( $atts ) {
return esc_attr( get_the_title( get_the_ID() ) );
}
Some text Link text
Thank you