WAP Support
Forum Replies Created
-
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] No more login screenHi Valerie,
Can you please check if jQuery script is included in head tag of the login page? Is there any other error in JavaScript console?
This problem can happen if any of your plugins or themes is including jQuery script in a wrong way (like hard-coded).
Please try to disable other plugins or themes one by one, to see which of them is causing the problem.
Argonius
I’m glad that you found the source of the problem. Thanks!
That is bad. That line should be replaced with this:
wp_enqueue_script('jquery');where WordPress should decide which script to include. Try replacing or removing that line to test. Theme’s author should fix that anyway.
What happens if you disable that theme? Might be that someting else is de-registering jQuery (wp_deregister_script( ‘jquery’ );)
What happens if you remove the line:
wp_enqueue_script('jquery');
in AGCA?Please try some of the combinations from this post:
http://stackoverflow.com/questions/14606823/wordpress-wp-enqueue-script-not-workingIs there any chance that you renamed default WP login page name?
Please open AGCA plugin.php and search for “reloadScript”Try changing this:
if(in_array($GLOBALS['pagenow'], array('wp-login.php', 'wp-register.php')) || WP_ADMIN == 1){ wp_enqueue_script('jquery'); }to this:
wp_enqueue_script('jquery'); if(in_array($GLOBALS['pagenow'], array('wp-login.php', 'wp-register.php')) || WP_ADMIN == 1){ }and see if it works after that.
Can you paste here a content of the HEAD tag inside your login page? Or if you want you could send it to me privately. jQuery script is not loaded for some reason, we should see the order of the included scripts.
Hi,
Please check for errors in browser’s console on your login page. It could be that theme is throwing a JavaScript error or is somehow incompatible with AGCA.
You can send me your login page URL if it’s publicly accessible.
Thanks,
ArgoniusForum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button doesn't workNo problem at all. Thank you for your feedback. Patch for this issue is applied in new version 1.2.7.1. Thanks!
Thank you sir.
Please check the latest AGCA version 1.2.7.1, it should contain popup message with troubleshooting instructions if page is not loaded correctly.
Best Regards,
ArgoniusForum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button doesn't workPlease remove all data from current AGCA version, and try to install this new beta version 1.2.7.1. It should hopefully contain fix for this issue.
http://downloads.wordpress.org/plugin/ag-custom-admin.1.2.7.1.zip
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button doesn't workHi,
I think this problem is related to quote characters in your custom admin menu buttons names. If this is the case, this problem will be fixed in next version. Please delete AGCA and all AGCA settings and files (confirmation button YES), and install fresh copy after that. Then, populate custom buttons one after another and choose save AGCA settings between each change. Find out after which change AGCA is broken.
You could also send me a copy of your rendered page to email for debugging. The problem is most likely in JavaScript when settings this variable “textboxes”. So you could try to find this:
var textboxes =[some json data]to check.
Thanks,
ArgoniusI am very sorry for the bad experience that you have with AG Custom Admin plugin. In most of cases this problem is not directly related to AGCA. Any JavaScript error thrown from any other plugin could cause this issue with AGCA.
I promise you that user will be better informed about this problem in next version, and probably I will add this message directly on the “blank” page, in order to find exact source of the problem.
Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button does not workHere is the solution for this problem:
http://wordpress.org/support/topic/save-button-doesnt-work?replies=8Forum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button doesn't workThank you for the brief explanation. A single quote character is probably causing this error. Please find the line:
jQuery("#footer-upgrade").html('<?php echo get_option('agca_footer_right'); ?>');in plugin.php and replace it with this line:
jQuery("#footer-upgrade").html('<?php echo addslashes(get_option('agca_footer_right')); ?>');I think this should fix this problem. You can expect that this patch will be applied in next versions, so you don’t have to worry about it when you upgrade your AGCA plugin.
Thanks,
ArgoniusForum: Plugins
In reply to: [AGCA - Custom Dashboard & Login Page] Save button doesn't workI think this is related to the first error which is thrown in tools.php 233
Please try to navigate to this page in your browser directly and see if this error is visible in console again.You can try to view the source of the generated page: right click -> View Page Source, and try to find that line. Please post your results back here.
Thanks