mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
7 lines
317 B
Text
7 lines
317 B
Text
add_filter( 'the_title', 'display_product_image_in_order_item' );
|
|
function display_product_image_in_order_item( $title ) {
|
|
if( is_account_page() && $title === __('My Account', 'woocommerce') && ! is_user_logged_in() ) {
|
|
$title = __( 'Account Login / Register', 'woocommerce' );
|
|
}
|
|
return $title;
|
|
}
|