Your account expired support, please renew to get your support.
Topic Resolution: Not Resolved
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1697
    georgesotiro
    Support Expired

    Hi i have a problem that it appears on your demo too.

    From the desktop when you mouse over the account appears the widget to login. When you click on the email field and you try to select the suggested email from autocomplete the login form disappears.

    #1698
    georgesotiro
    Support Expired
    This reply has been marked as private.
    #1724

    Hi there,

    Please send for me your admin web account, I will check and help you.

    About your issue, we will update on the next version.

    #1937
    georgesotiro
    Support Expired

    hi i updated to the latest version but seems you didn’t fix the issue with the login issue

    #1972

    Hi again,

    Yes, our team yet updated your issue on the latest version. Please send Admin web account for me, We will fix on your site

    #2106
    georgesotiro
    Support Expired

    is possible to tell me the fix? Because another team is working on it now. Thanks

    #2122

    Hi again,

    Ok, I will try to guide for you:

    All code, please add into child-theme.

    #Step 1: file functions.php
    Add code:

    global $poco_version;
    add_action('wp_enqueue_scripts', function () {
        wp_enqueue_script('poco-childtheme', get_stylesheet_directory_uri() . '/custom.js', array(), $poco_version, true);
    }, 9999);

    #Step 2: create file custom.js and add code:

    ( function( $ ) {
        'use strict';
    function account_side() {
            var $account_side = $('body .header-group-action .site-header-account a');
            var $account_active = $('body .header-group-action .site-header-account .account-dropdown');
            $(document).mouseup(function (e) {
                if ($account_side.has(e.target).length == 0 && !$account_active.is(e.target) && $account_active.has(e.target).length == 0) {
                    $account_active.removeClass('active');
                }
            });
            $account_side.on('click', function (e) {
                e.preventDefault();
                e.stopPropagation();
                $account_active.toggleClass('active');
            });
        }
        account_side();
    

    Step 3: add code into file style.css:

    header-group-action .site-header-account a .account-content {
      display: none; }
    
    .header-group-action .site-header-account .account-dropdown.active {
      pointer-events: auto;
      opacity: 1 !important;
      visibility: visible;
      z-index: 999; }
    
    .site-header-account:hover .account-dropdown, .site-header-account:active .account-dropdown {
    	opacity: 0 !important;
    }
    
    .header-group-action .site-header-account:hover .account-dropdown.active, .site-header-account:active .account-dropdown.active{
    	opacity: 1 !important;
    }
    #2163
    georgesotiro
    Support Expired

    Hi i added this. Worked but when you press login button it doesnt do something.

    Also i changed code to this to work

    jQuery(document).ready(function ($) {
        'use strict';
    function account_side() {
            var $account_side = $('body .header-group-action .site-header-account a');
            var $account_active = $('body .header-group-action .site-header-account .account-dropdown');
            $(document).mouseup(function (e) {
                if ($account_side.has(e.target).length == 0 && !$account_active.is(e.target) && $account_active.has(e.target).length == 0) {
                    $account_active.removeClass('active');
                }
            });
            $account_side.on('click', function (e) {
                e.preventDefault();
                e.stopPropagation();
                $account_active.toggleClass('active');
            });
        }
        account_side();
    });
    #2186
    georgesotiro
    Support Expired

    sorry not resovled. i set it as resolved by mistake. How to fix it? Thanks

    #2214

    Hi again,

    I can’t check your code, please send Admin web account for me. I will check and help you.

    #2301
    georgesotiro
    Support Expired
    This reply has been marked as private.
    #2319

    Hi again,
    Please check your site, I fixed for you.

Viewing 12 posts - 1 through 12 (of 12 total)

You must be logged in to reply to this topic.