Hi. You can hook into the product summary using the woocommerce_single_product_summary action. Add this code to your functions.php file. It will add a link to the bottom of the short description that points to the full description. I’ve added the css class custom_more_info in case you want to style the link.
add_action('woocommerce_single_product_summary','woocommerce_scroll_for_more_info', 20);
function woocommerce_scroll_for_more_info() {
echo '<a class="custom_more_info" href="#tab-description">Click here for more info</a>';
}
Hope that helps.
It helped me Mike.
Just what i was looking for.
Thank you
Hi Mike,
Wondering if you could help. The following code worked great:
add_action('woocommerce_single_product_summary','woocommerce_scroll_for_more_info', 20);
function woocommerce_scroll_for_more_info() {
echo '<a class="custom_more_info" href="#tab-description">Click here for more info</a>';
}
But for me it scrolls a little too far down (my website header hides the top part of the text). Is there any way to link to around 100 pixels above the description tab?
Many thanks in advance.
Hi Mike Moore,
lieben Dank für diesen Tipp!
Thank you