Important notice: we will respond to all open ticket requests up until November the 1st. After this date, we will be unable to process the ticket requests here on Ticksy.

Okay
  Public Ticket #1837504
Incompatibility with Wordpress 5.0.2 and serious code issues
Closed

Comments

  • pputlitz started the conversation

    We have encountered a few issues with the theme running without any modifications (no other plugins other than the ones that come with the theme and Simple SSL are running). 

    1. Child Theme is not working the way its packaged in the download bundle:

    You have (in functions.php): $parent_style = ‘gretnagreen_elated_default_style’;

    However it doesn’t allow for the enqueing of the child style sheet unless you replace it with: $parent_style = ‘gretnagreen-elated-default-style’;

    2. Menu: the menu bounces around on first page load (homepage) when you hover over the Navigation (or Weddings and then move over the links to the left of the packages). It basically makes the sub navigation overlap the primary navigation. 

    3. Wide Menu & Wide Menu with Icon. Currently only the Wide Menu function is available and a blank function.

    4. Logos: Currently it is not possible to override your logo size regardless of which header you use. It always defaults back to 50px height even if you try to override it either on the page or through the theme controls. 

    5. If you have no backgrounds or patterns for boxed layout the browser inspector throws errors claiming bad images or calls even if you have a wide layout selected. (can be seen on the theme options end under

    6. Alt tags, it seems you have hardcoded the alt tags for the logos, which is a serious problem. Currently it states the type of logo which is being loaded (dark logo, light logo, logo) and cannot be changed regardless of what the image alt tag is. We need that fixed.

  •  1,845
    Elated replied

    Hello,

    1. Try to replace the code within functions.php file located in >> wp-content\themes\gretnagreen-child\functions.php

    <?php
    /*** Child Theme Function  ***/
    if ( ! function_exists( 'gretnagreen_elated_child_theme_enqueue_scripts' ) ) {
        function gretnagreen_elated_child_theme_enqueue_scripts() {
        
        $parent_style = 'gretnagreen_elated_default_style';
        
        wp_enqueue_style('gretnagreen_elated_child_style', get_stylesheet_directory_uri() . '/style.css', 
            array($parent_style));
    }
    add_action( 'wp_enqueue_scripts', 'gretnagreen_elated_child_theme_enqueue_scripts' );
    }-->

    9890261759.png

    2. I've just checked this out on your website and as you can see in the following screenshot, it seems like everything works fine >>

    5149233164.png

    If the problem still persists, please be more specific about it (some specific OS, device, browser... + how can I reproduce it on our end), provide me with the exact page link(s) where this is happening and I can take another look. 

    3. There is no Wide with icon option (only Wide) within Menu item type settings, so we will changed that label in next update. 

    7413344790.png

    4. The way logo dimensions work:

    Maximum logo height is determined by the header height option in Theme Options > Header.

    As for the logo image itself, because of retina displays, image dimensions are being divided by 2. So if you upload the logo that is 100x100, the actual dimensions will be 50x50.

    In case you want a logo that is 100x100, you need to upload an image that is 200x200, and set the header height to 100.

    Or you can try to increase/reduce logo image size by using some custom css >>

    .eltdf-page-header .eltdf-logo-area .eltdf-logo-wrapper a, .eltdf-page-header .eltdf-menu-area .eltdf-logo-wrapper a {
        max-height: 100px;
        height: 100px !important;
    }

    You can try to add this css above in Appearance >> Customize >> Additional CSS field.

    5. Would you mind providing us with login credentials (in Private Reply) and site url, so we can take a closer look? Also, please be more specific about this issue so we can reproduce it and try to assist you as soon as possible.

    6. You can try to change it with some custom js. Try to add this custom js below in Theme Options >> General >> Custom JS field.

    jQuery(document).ready(function(){
         jQuery('.eltdf-page-header .eltdf-menu-area .eltdf-logo-wrapper a img').attr('alt','SOME TEXT');
    });
    6912129653.png


    For any other issue you are facing please feel free to ask us and we will assist you as soon as possible. I will give my best to help you building your site.

    Thanks & Regards, 
    Vlada


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.

  •   pputlitz replied privately
  • pputlitz replied

    I figured a quick video couldn't hurt to illustrate the menu behaviour as it does make it much clearer. 

    https://www.dropbox.com/s/47raidm70slnf9n/2019-01-24_5-28-23.mp4?dl=0


  • pputlitz replied

    Another thing the child function code you provided does not work unless the parent style is set to:

        $parent_style = 'gretnagreen-elated-default-style'; 

    while your provided code uses:

    $parent_style = 'gretnagreen_elated_default_style';

    Your version will actually ignore any styling in the child style.css.

    Also just quickly there is a formatting error in the code you provided:

    jQuery(document).ready(function(){
         jQuery('.eltdf-page-header .eltdf-menu-area .eltdf-logo-wrapper a img').attr('alt','SOME TEXT');
    });
    
  • pputlitz replied

    I may have found the issue with the menu jumping around. It looks like it had to do with the Menu Behaviour, it seemed to jump when I had the Sticky Header enabled. Once I disabled it it stopped jumping around. 

    The moment I enabled it sure enough it jumped again (seems that it isn't sticking to the scroll limit and just jumps immediately).


  •  1,845
    Elated replied

    Hi,

    I have just tested functionality of child theme and from my side everything is working correctly. Even your custom CSS is displaying nicely.

    6186744640.png

    Can you please clarify what is wrong with your logo, I don't see anything weird? Thank you.

    We will consider adding alt tags in some future theme updates.

    I'm sorry but even after your video I couldn't reproduce the issue on your side. I tried several times and everything is working just fine from my end.

    I would appreciate if you could clarify your issues a bit more and ask concrete questions, with concrete page URLs, following screenshots as well as some other info.

    Thank you.

    Giovanni


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.