WAP Support
Forum Replies Created
-
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] No more Event Manager SettingsLatest version of AG Custom Admin probably contains the fix for this problem. Thanks.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] No more Event Manager SettingsHave you actually installed latest version 1.2.7.2? It contains some improvements of this feature.
Thanks,
ArgoniusPlease leave AGCA enabled, and try to disable other plugins (or even theme) one by one. It could be that one of them is not including jQuery plugin correctly which caused this issue.
Another option is to add
<?php wp_enqueue_script("jquery"); ?>to header.php of your theme or even to re-register jQuery there like this:
<?php function load_my_scripts() { wp_deregister_script( 'jquery' ); wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'); wp_enqueue_script('jquery'); } add_action('init', 'load_my_scripts'); ?>Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Error while activating the pluginPlease try again after clearing browser’s cache. If problem persists, please remove current installation and download fresh plugin’s copy from WP repository and install it again. Clear cache and try it again. It should work.
Thanks
Can you send a screenshot? Thanks.
Try adding this:
html { margin-top: 0 !important; }inside style tags in the same code.
AG Custom Admin admin bar settings are applied only for registered users (visitors should not see admin bar by default in WordPress)
Admin bar should be hidden when you’re logged out. It could be that some other plugin is re-enabling admin bar for non-registered users. Please try to find which one by disabling plugins one by one.
Please check this post, might be helpful
http://wordpress.org/support/topic/hide-admin-bar-from-logged-out-useres?replies=11Putting this in header.php:
<?php if ( !is_user_logged_in() ){ ?> <style> #wpadminbar{ display:none; } </style> <?php } ?>should hide admin bar even for visitors in your case
Please choose “Remove admin bar on site pages” option only.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] java erroryou should check first what is making output here
/home/megrab/public_html/wp-content/themes/sahifa/custom-functions.php on line 4check for blank spaces outside of <?php ?> tags
like
//this is not OK, should be deleted
<?php
//this is OK
?>
//this is not OK, should be deletedForum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] java errorthis does not seem to be related with AGCA so far. it looks like that your theme is problematic. please go to your theme “sahifa” and try to add this:
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> <meta content="utf-8" http-equiv="encoding">inside head tags of the theme
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] java errorthis is now problem with your theme. you should remove this theme temporary in order to access WP admin. you should probably go to FTP and temporary remove /home/megrab/public_html/wp-content/themes/sahifa folder, and try to access admin after that
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] java errorOn root or child site? Please take a look at browser’s console. There should be some JavaScript errors that can help us to isolate the problem
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] java errorCan you please check the browser’s console to see which error you have? Please post it back here. Thanks.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] No more login screenHi Valerie,
I’m glad that you found a solution. The Q&A plugin probably fixed the jQuery problem which is possibly caused by different plugin/theme. Many plugins do not include jQuery using WordPress function
wp_enqueue_script('jquery');which is recommended, or maybe excluding this script and including some other external script which could cause many problems in WP.
You probably still have enabled plugin/theme which has hard-coded jQuery script (you can be sure if you disable Q&A and problem re-appears). In that case you need to locate which one is causing the problem by disabling plugins one by one and checking the browser’s console. When jQuery issue disappears from console, lastly disabled plugin is the one which makes the trouble. The best you can do is to manually fix the problem in that plugin, or contact the author of the plugin and tell him to fix that.
But, in your case, it could be also possible that your WP’s default jQuery script is somehow corrupted. That can be fixed only if you manually replace that script with fresh one directly in WP directory.
Anyway, your solution is good, just keep in mind that Q&A plugin fixed that.
Thanks,
ArgoniusForum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] No more Event Manager SettingsWhich errors do you have in browser’s console?