Hi,
That’s not currently supported but you can try this hot fix:
Open the file ag-custom-admin/plugin.php and find the line
jQuery("#wpbody-content").prepend('<a href="../wp-login.php?action=logout" tabindex="10" style="float:right;margin-right:20px" class="ab-item agca_logout_button"><?php echo $agca_logout_text; ?></a>');
Replace it with this:
jQuery("#wpbody-content").prepend('<a href="<?php echo wp_logout_url(); ?>" tabindex="10" style="float:right;margin-right:20px" class="ab-item agca_logout_button"><?php echo $agca_logout_text; ?></a>');
Please let us know if this solution works or not. If it worked, we will add it as a patch to the next version.
Thanks