یک مشتری سفارشی سازی ووکامرس می خواست برخی متن را در بالای جعبه “ورود” و “ثبت نام” در صفحه حساب من اضافه کند. قابل درک است که کاربران ممکن است قبل از اقدام به کمی توضیح نیاز داشته باشند. در اینجا نحوه انجام آن وجود دارد!

قطعه کد PHP: نمایش محتوای اضافی @ صفحه حساب من ووکامرس (حالت خروج از سیستم)
/**
* @snippet Show Additional Content on the My Account Page
**/
add_action( 'woocommerce_login_form_start','ej_add_login_text' );
function ej_add_login_text() {
if ( is_checkout() ) return;
echo '<h3 class="bb-login-subtitle">Registered Customers</h3><p class="bb-login-description">If you have an account with us, log in using your email address.</p>';
}
add_action( 'woocommerce_register_form_start','ej_add_reg_text' );
function ej_add_reg_text() {
echo '<h3 class="bb-register-subtitle">New Customers</h3><p class="bb-register-description">By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.</p>';
}