Conversation
supportHello, i think i only have a smaller issue. How to change the referral Link ? This is shown: https://my-website.com?ref=1 But i want to change the url like this: https://my-website/ shop/ ?ref=1 Please tell me how to do ๐ Tank You
Hi there, thanks for contacting us! To achieve what you need please add the following code in the functions.php file of your active theme: if (! function_exists('yith_wcaf_shop_referral_url')) { function yith_wcaf_shop_referral_url($referral_url, $ref_name, $token, $base_url) { if (home_url() == $base_url) { $referral_url = add_query_arg($ref_name, $token, get_permalink(get_page_by_path('shop'))); } return $referral_url; } add_filter('yith_wcaf_get_referral_url', 'yith_wcaf_shop_referral_url', 10, 4); } Could you check it, please? Best regards.
Hey, thanks a lot. It works ๐ greetings from germany โ Chris
Hi there, thanks for contacting us! To achieve what you need please add the following code in the functions.php file of your active theme: if (! function_exists('yith_wcaf_shop_referral_url')) { function yith_wcaf_shop_referral_url($referral_url, $ref_name, $token, $base_url) { if (home_url() == $base_url) { $referral_url = add_query_arg($ref_name, $token, get_permalink(get_page_by_path('shop'))); } return $referral_url; } add_filter('yith_wcaf_get_referral_url', 'yith_wcaf_shop_referral_url', 10, 4); } Could you check it, please? Best regards.
Hey, thanks a lot. It works ๐ greetings from germany โ Chris