How to remove “My Woo Subscriptions and its sub categories” from my woo menu.

Posted in: Newspaper
Post count: 16

How to remove “My Woo Subscriptions and its sub categories” from my woo menu, from my newspaper theme?
Refer the image: https://prnt.sc/5iZy1nLpeFKW
I want to do 2 things, remove the my woo subscription box completely and change the “my woo account” to just “my account”.

I tried some Live CSS, i was able to remove only the subscriptions and and account details section, inside the the whole “my woo subscription section”, but was unable to change “my woo account” to “my account”
Refer to the screenshot : https://prnt.sc/zGtg8FuPscbl

website link: https://jeevahfoods.com/

Here is the CSS:
/*
* — REMOVE THE SUBSCRIPTION SECTION —
* This is the complete, combined code.
*/

/* Hides the “Account details” link */
a[href*=”?account_details”] {
display: none !important;
}

/* Hides the “Subscriptions” link */
a[href*=”?subscriptions”] {
display: none !important;
}

/* * — Hides the “My subscription account” HEADING —
* This is the new set of rules to find the stubborn heading.
*/

/* Rule 1: Target common tagDiv heading classes */
.td-account-links .tds-woo-sub-heading,
.td-woo-acc-menu .tds-woo-sub-heading,
.td-woo-acc-menu .tds-account-sub-header {
display: none !important;
}

/* Rule 2: Target any span that is a direct child of a list item (a common way to make a heading) */
.td-woo-acc-menu li > span {
display: none !important;
}

Post count: 35449

Hello,

For this, please use the tagDiv Composer, edit teh homepage and select the login menu element – https://i.imgur.com/F7S4lm0.png then check in tab of custom pages and remove from there the pages you do not want.
Also, if you want only the Woo, then it is possible to currently have the element “Menu login”; this can be removed and replaced with Woo Menu Login, which should resolve the situation with the text translation.

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.