Last active
May 13, 2026 17:24
-
-
Save DmitryBychenko/bc3165a7a52024d219cd44c807c96cc8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Изменение текста и ссылки на кнопке "Вернуться в магазин" | |
| */ | |
| add_filter( 'woocommerce_return_to_shop_text', 'tb_custom_return_to_shop_text' ); | |
| add_filter( 'woocommerce_return_to_shop_redirect', 'tb_custom_return_to_shop_url' ); | |
| function tb_custom_return_to_shop_text() { | |
| return 'Вернуться в каталог'; // Укажите ваш текст здесь | |
| } | |
| function tb_custom_return_to_shop_url() { | |
| return get_permalink( wc_get_page_id( 'shop' ) ); // Динамическая ссылка на магазин | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment