Good way to remove unnecessary stuff from dashboard?
Good way to remove unnecessary stuff from dashboard?
Good way to remove unnecessary stuff from dashboard?
Unable to find interface that lets me edit text on the front page
This code may help you. function wpfi_change_text( $translated_text ) { if ( $translated_text == ‘ORIGINAL TEXT’ ) { $translated_text=””; } return $translated_text; } add_filter( ‘gettext’, ‘wpfi_change_text’, 20 );
How to modifiy default ‘All Pages’ in Dashboard into a Tree View(Collapsible child pages)
Do you see a line at the top looking like the below. If so just hover to the second icon from the left and click on dashboard.
Sorry I cant comment yet (need 1 more reputation!) We really need a lot more detail, Are you doing the changes in a visual editor? What theme / plugins are you using? Have you tried a standard theme and turning off all plugins? Start by loading the page in an incognito window or a different … Read more
this did the trick. it doesnt need to redirect, but just changes landing page. https://stackoverflow.com/questions/54068617/custom-buddypress-profile-page-set-as-landing-page-bp-default-component
have a look at this, cause that seems to have changed for ur user with ur modifications: https://wordpress.org/support/article/roles-and-capabilities/#:~:text=WordPress%20has%20six%20pre-defined,“%2C%20and%20“edit_users“. would be better to tell us which theme modifications u made, otherwise it’s impossible to tell why what happened!
WP_HOME (and WP_URL) are undefined
Similar to @robert0’s answer, you can unhook the nag from happening: remove_action( ‘profile_update’, ‘default_password_nag_edit_user’, 10 ); Just put that in your theme’s functions.php and that should take care of it.