Skip to content

Instantly share code, notes, and snippets.

@DmitryBychenko
Last active May 13, 2026 17:24
Show Gist options
  • Select an option

  • Save DmitryBychenko/bc3165a7a52024d219cd44c807c96cc8 to your computer and use it in GitHub Desktop.

Select an option

Save DmitryBychenko/bc3165a7a52024d219cd44c807c96cc8 to your computer and use it in GitHub Desktop.
/**
* Изменение текста и ссылки на кнопке "Вернуться в магазин"
*/
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