piko00001
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Connect] how to set up social connect plugin?Thanks for your reply. Actually I am using theme my login plugin and with google and yahoo it simply shows WordPress error “no server found”. I will give the link shortly because I am working on it.
Forum: Plugins
In reply to: [Social Login] Facebook categoryI also have the same issue please help. I also tried like “promotion and contest”, “business”. I cannot find “Website with Facebook Login”.
Forum: Fixing WordPress
In reply to: subscriber can edit and delete their comments while logged onActually I want users can edit and delete their own comments nothing else
on posts which are mostly from administrator.Forum: Fixing WordPress
In reply to: subscriber can edit and delete their comments while logged onIs that working for you?
Forum: Fixing WordPress
In reply to: Help me with jquery code.Shall I create a new .js file and paste the code there. And what should be the name that file and at what format shall i paste the code. Please explain me the procedure. It would be a great help.
Forum: Fixing WordPress
In reply to: Help me with jquery code.Thanks for you reply. Can you please tell me in which file of wordpress shall I put it?
Forum: Fixing WordPress
In reply to: custom email verification url for users.Well I figured it out myself. I just did a simple trick. I reset the plugin and deleted it. And downloaded a copy of it in the computer, extracted it. Opened the pie-register.php and piewpnun.php on notepad++ renamed all the “pie_veification” and wp-login” with find button. Then I again installed it and before activating it just replaced those files in pie-register plugin folder with my edited files. Which did my purpose. Thank God.
I have done it with Lockdown wp plugin. Thank God
Forum: Fixing WordPress
In reply to: custom email verification url for users.I alredy modified the login page with my custom login page. I just wanna change that wp-login.php part from user verification messages. can I add any filter to change that wp-login.php part. Is it possible?
if a guest who is not logged in try to access wp admin by simply typing https://www.mydomain/wp-admin on browser gets wordpress error which reveals everything. So I need a code so those guests also get HTTP 404 error.
But then how will you log in? You will get the same error.
typing https://www.mydomain/wp-admin on browser gets wordpress error which reveals everything
There is no error until the user actually trys to log in. And then it reveals very little.I have a custom login page for all users and after login it shows error for all users other than administrator.
Parse error: syntax error, unexpected $end in /home/u279486952/public_html/wp-content/themes/mytheme/functions.php on line 477
Its not the point. Point is if someone break the rules i should redirct them to error page so that he could be banned because i set a ban limt for that error.
I am getting a syntax error with that. sorry
add_action('admin_init', 'no_mo_dashboard'); function no_mo_dashboard() { global $wp_query; if (!current_user_can('manage_options') && !is_user_logged_in() && $_SERVER['DOING_AJAX'] != '/wp-admin/admin-ajax.php') { $wp_query->set_404(); status_header( 404 ); get_template_part( 404 ); exit(); } }
also did that
Am I doing it right?