Problem summary:
I’ve sent a abandon cart email to my users. In the email there is a short code [product.cart] which list the cart details.
The cart listing shows find but when click on the product in the cart listing, it brought me to an invalid page something like this: https://url8417.[mydomain].com/ls/click?upn=oo2GDDAOWPfyNsqtFZovatpRtW8nQQqOhpXzGCZvvD5AtPPf1aA2sg34X-2F3FJRA49H182LXPCuYK9enG2i3hFmWiWKo5sGMcvPpRxqK0qMBJQKfI5Z3OD7YUGC7LBFXtL88nV61V3fiKOfh-2FH3UsM9A3jjRmuP3RL6JH6I3qVZmGR3vEmcBL08suNlat1xAe2CoG_APjdKg32i75KQyAMA37LswJmdPjWVfBKOsdDCAwFUCU-2BudJ4-2Fiw66OcQTYnDJHFsKhjDDJ10pwEjFMGp1FgPAXBxiYa4A8SVYt3W4zhCuNXxNyMU8SJYUrxnjyrCl9RBn-2B4qEG2IEepCPkZqjpyHFzzA-2Fym4Dw2wCVCn9TkmGNloY5WWjwW04JzSHgijTR0GEJylNh3EBmZiCqeQmZ9XR1stc2Z-2FRNYnOL9BUKC2IyE-3D
Where can I make sure the link is redirected to the proper product details?
Solution:
The issue is due to Sendgrid’s Link Branding feature, which rewrites the links in their transactional emails for link tracking. If the link is broken, the reason is likely because you accidentally deleted the CNAME records that Sendgrid needs to get it to work. To fix this, login to Sendgrid > Sender Authentication > Scroll down to Link Branding > Click into your domain, grab the CNAME records, and reinsert it into your DNS records. Should work after that.
]]>thanks in advance
]]>Thanks,
Omar
Does the pro version remove the Product Link if dropshipping is enabled?
]]>I have a woocommerce product miniature that, when I clic on it, I want it to carry me to a web page I have ready to link.
I mean, I do not want it to take me to the proper detailed woocommerce product page, but to a different page I created.
Where can I find the link to change it?
First of all I have no idea of php, and only very general knowledge of html and css. I′ve been searching in the inspector, but could no find the place to change the link. It might be a more difficult thing that I thought..?
Any idea or help?
Thanks a lot!
]]>This OP has explained the situation very well here:
https://www.ads-software.com/support/topic/remove-product-link-in-completed-order-emails/
In summary: both product link and download link are confusing to the user (we receive lots of complaints about not being able to download because they click on the wrong link)
At the moment, I go here:
woocommerce/templates/emails/email-downloads.php (active)
And delete this part:
<a href="<?php echo esc_url( get_permalink( $download['product_id'] ) ); ?>">
</a>
(leaving the name in between a tags)
But there should be an easy filter/hook/whatever to remove this (or re-echo the line?) I am not a developer, so cannot find the solution.
Any help will be appreciated
]]>I would like to ask why my page https://jayamartmalaysia.com/shop/ didn’t show any product but my other version https://jayamartmalaysia.com/kedai/?lang=ms able to show my product detail. Anyone could help about this or do I need to go inside my woocommerce to do some setting ? please advice. thanks.
Regards,
Nic
I would like WooCommerce to change this behavior & have all html tags removed from display in every title instance. Is this something that can be done in a future update?
]]>I’m editing the email template customer-completed-order.php so I can add a text with a link to the product page. So, if a client buys product ‘Example’, when they receive the email saying their order is complete, a small text with a link to product Example will appear alongside the default text, which will take the user to the product page so they can leave a review.
But I can’t manage to make the link to the product page work. This is the code I have so far:
<p><?php
$product_obj = new WC_Product( $product["product_id"] );
$link = $product_obj->get_permalink();
echo '<strong>'.'No olvides dejar tu valoración - sirve de guía para que otros usuarios puedan decidir si realizar un pedido a este blog.<br/>'.'</strong>'.'<a href="'.$link.'">'.'Deja tu valoracion'.'</a>'; ?></p>
When I use that code, it generates a link like this:
https://prueba.hellopubli.com/?post_type=shop_order&p=1709
I’ve tried different ways of doing it, but they all get me the same link.
]]>