• Resolved jaykrishnan

    (@jaykrishnan)


    Hi,

    There are some issues in my Customer Dashboard. The Billing Field Name on Tab is Invisible. Kindly refer the attachment for your references.

    And also I want to hide the Downloads tab as well. Please assist me on this matter.

    Appreciate your consideration and time.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WC Lovers

    (@wclovers)

    There are some issues in my Customer Dashboard. The Billing Field Name on Tab is Invisible. Kindly refer the attachment for your references.

    – This is not from WCFM, it’s from WooCommerce core. Possibly your theme breaks this.

    And also I want to hide the Downloads tab as well. Please assist me on this matter.

    – Add this snippet for the purpose-

    add_filter( 'woocommerce_account_menu_items', function( $menu_items ) {
    	if( isset( $menu_items['downloads'] ) ) unset( $menu_items['downloads'] );
    	return $menu_items;
    }, 500 );
    Thread Starter jaykrishnan

    (@jaykrishnan)

    Hi,

    Thank you for the updates. Understood. In between the snippet working perfectly. It solved my needs.

    Thank you for the great support and cooperation.

    • This reply was modified 4 years, 1 month ago by jaykrishnan.
    Plugin Author WC Lovers

    (@wclovers)

    You are always welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customer Dashboard – Billing Name Invisible’ is closed to new replies.