WAP Support
Forum Replies Created
-
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] AG Custom Admin – unable to see postsHi,
I’m really not sure what happens in your case. Can you explain that in more details with some screenshots? Please send the email to info(at)argonius.com
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Colouriser ProblemCan you try with different browser? Try to clear you cache as well. You could also go to the browser’s cache to see if there is an error that could cause this error.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button does not workThis might be related to importing/exporting settings. Will take a look. Thanks for reporting.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Losing "Posts" in admin menuYou must leave menu customizations as last step in admin customizations. There is no alternative to that. Admin menu should not be changed by other plugins once it’s defined by AGCA. If it’s changed by anything outside from AGCA it could be broken. This is the way how it works. Hope this helps.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Hiding Service button hides postTake a look at
http://wordpress.org/support/topic/plugin-ag-custom-admin-misaligned-links-on-admin-menu?replies=3Thanks,
ArgoniusForum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Can I configure this for all usersYou can do it by exporting AGCA settings from one site, and importing them to another site.
All AGCA settings are stored in WordPress options, so if you can find a way to apply all WordPress options automatically for all sites in multisite environment, you should be good.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] js code into head tagthere is an option in 1.2.6.5 named “hide script on front end” or something like that, that should do the exact thing, hide that code on front end. This is used only for admin bar customizations on front end, and you can remove it if you don’t need it.
Thanks for the update, and donation. I’m glad it works. This needs to be improved and tested with the idea that sswells proposed in order to be included in the next version of plugin. I would recommend you to create some test environment with both plugins and to test the new AGCA version before updating it in production.
Thanks for the idea, I will most likely use wp_enqueue_script instead in next version, after doing some research and testing.
Hi Anseltaft,
It’s true, jQuery script is not loaded. It does not appear in the login page that you sent to me.
Try adding
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' );after
function print_login_head(){and
function print_admin_css(){just to test if this works. AGCA checks with wp_script_is(‘jquery’) if jQuery script is loaded or not, and this WordPress function returns TRUE, like the script was loaded, but actually is not. That’s really strange to me.
You could also try to test if you can remove that check from both print_login_head and print_admin_css functions, so instead of this:
if( !wp_script_is('jquery')) { $this->reloadScript(); }add this:
$this->reloadScript();@sswells. I agree with you, this should be improved. However, I’m really puzzled why this condition does not work it this case:
if( !wp_script_is('jquery'))
(ag-custom-admin/plugin.php line 1258)jQuery script is not loaded, and does not appear anywhere in code, but WordPress returns TRUE.
jQuery plugins are loaded into the page, but not jQuery itself:
/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.8.20/
/wp-includes/js/jquery/ui/jquery.ui.widget.min.js?ver=1.8.20
etc..Is it possible that wp_script_is(‘jquery’) checks for those plugins instead, and thinks that jQuery is loaded?
Nice catch. I see it’s not free, so you might ask their support to help you, or send me a source code of the problematic page to info[(at)]argonius.com to take a look. Be sure that there are no errors in browser’s console.
Hi Anseltaft,
You could try to take a look at the browser’s console for the possible errors. Also try disabling all other plugins for testing, because it might have conflict with some other plugin. AGCA supports multi-sites, so that shouldn’t be an issue. I need to take a look at the page source code to tell you what is going on exactly.
Hi Ansel,
Can you try adding this:
if( !wp_script_is('jquery')) { $this->reloadScript(); }after this:
function print_admin_css() {like:
function print_admin_css() { if( !wp_script_is('jquery')) { $this->reloadScript(); }in ag-custom-admin/plugin.php
If this solves the problem, it will be included already in next version. You could check if there is a jquery script (‘/wp-includes/js/jquery/jquery.js’) included in document afert that.
Thanks for reporting.
Hi Ricky,
Unfortunately AGCA is not intended to be used by any other language than English. I tested qTranslate and it could work with AGCA menu only in case that language selection is permanent. No switching between languages is allowed. To make this work, select the language, go to AGCA page, Admin Menu tab and turn admin menu ON. Press Reset Settings button. Make menu customizations and save them. If you want to change to another language after that, you need to go to Admin menu again, press Reset Settings button and apply your customizations again. This can be used only in cases if you want to setup you admin menu once, and don’t want to change it after that.
Other option is to turn OFF AGCA admin menu customizations.
WPML is premium plugin, and this is not applicable for all AGCA users, which mainly use free software.
I am very sorry for the problems that you’re experiencing. There are very few complaints about this version so far, so I assume that you have some specific configuration under which this problem appears.
Please let me know if I can help you somehow, but give me more details about what is the exact problem, or errors that you have.
Thanks
Should be fixed now. Please update the plugin again or download this version again.
Thanks for reporting.