thaivoices
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: MetaI wish to delete the meta menu items: Entries feed, Comments feed and WordPress.org
I already know how to delete the entire Meta menu from the pages.
I have found this script on the forum, it removes the 1st item on the menu but I have been unable to adapt it to remove the 3rd, the 4th and the 5th items.I suggest hiding the Register link using CSS.
Please add the following CSS code in the Appearance > Customize > Additional CSS section of your WordPress Admin dashboard:/* Hide first menu item (Register) in default Meta Widget */
.widget_meta > ul > li:nth-child(1) {
display: none;
}
Also, the Register link is part of the default Meta widget.
/* Hide first menu item (Register) in default Meta Widget */
.widget_meta li:nth-child(1) {
display: none;
}Forum: Fixing WordPress
In reply to: MetaThank you kinldy James, however what I actually asked was:
I wish to delete the meta menu items: Entries feed, Comments feed and WordPress.org
I already know how to delete the entire Meta menu from the pages.
I have found this script on the forum, it removes the 1st item on the menu but I have been unable to adapt it to remove the 3rd, the 4th and the 5th items.I suggest hiding the Register link using CSS. Please add the following CSS code in the Appearance > Customize > Additional CSS section of your WordPress Admin dashboard: /* Hide first menu item (Register) in default Meta Widget */ .widget_meta > ul > li:nth-child(1) { display: none; } Also, the Register link is part of the default Meta widget. /* Hide first menu item (Register) in default Meta Widget */ .widget_meta li:nth-child(1) { display: none; }