Remove View details option from plugin listing

Try following code: add_filter(‘plugin_row_meta’,’fun_hide_view_details’,10,4); function fun_hide_view_details($plugin_meta, $plugin_file, $plugin_data, $status) { if($plugin_data[‘slug’] == ‘YOUR_PLUGIN_SLUG’) unset($plugin_meta[2]); return $plugin_meta; }

Can I rename the wp-admin folder?

Unfortunately it’s not currently possible nor does there appear to be will to consider it as a modification as you can see by this recent thread on the wp-hackers list and this ticket on trac. If you’d really like to see this be revisited I’d suggest: Present your case on wp-hackers but be forewarned your … Read more

restrict admin panel sections to users

Add the following, to functions.php of the current theme (child theme is preferred!): CSS solution: function no_email_changes_in_profile() { $screen = get_current_screen(); if (‘profile’ == $screen->base && !current_user_can(‘manage_options’)) { echo ‘<style> input#email { pointer-events: none; } </style>’; } } add_action(‘admin_head’, ‘no_email_changes_in_profile’); jQuery solution: function no_email_changes_in_profile() { $screen = get_current_screen(); if (‘profile’ == $screen->base && !current_user_can(‘manage_options’)) { … Read more

wp-admin ERR_CONNECTION_TIMED_OUT only on certain networks

You may receive a message such as “Maximum execution time of 30 seconds exceeded” or “Maximum execution time of 60 seconds exceeded”. This means that it is taking to longer for a process to complete and it is timing out. There are a number of ways to fix this error. Editing .htaccess Make sure you … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)