ghulamabbaskhan
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
search for the url starting with: http://www.timehubzone.com/currencies/converter and replace that with https://www.timehubzone.com/currencies/converter
Forum: Plugins
In reply to: [wpForo Forum] How to prevent members access to /wp-admin/add_action( ‘admin_init’, ‘redirect_non_admin_users’ );
/**
* Redirect non-admin users to home page
*
* This function is attached to the ‘admin_init’ action hook.
*/
function redirect_non_admin_users() {
if ( ! current_user_can( ‘manage_options’ ) && (‘/wp-admin/admin-ajax.php’ != $_SERVER[‘PHP_SELF’]) ) {
wp_redirect( home_url() );
exit;
}
}- This reply was modified 7 years, 8 months ago by ghulamabbaskhan.
- This reply was modified 7 years, 8 months ago by ghulamabbaskhan.
- This reply was modified 7 years, 8 months ago by ghulamabbaskhan.
Forum: Plugins
In reply to: [wpForo Forum] Error – Duplicate entry in DB when registering a new userif ( isset($_POST[‘username’]) {
global $wpdb;
$exists = $wpdb->get_var( $wpdb->prepare(
“SELECT COUNT(*) FROM ‘users’ WHERE username= %s”, $_POST[‘username’]
) );if ( ! $exists ) {
/* Your code here */
}}
- This reply was modified 7 years, 8 months ago by ghulamabbaskhan.
Viewing 3 replies - 1 through 3 (of 3 total)