Forum Replies Created

Viewing 30 posts - 3,361 through 3,390 (of 25,536 total)
  • Author
    Posts
  • in reply to: Blog archive grid broken after update #1344669

    Hi Marc,

    We’re glad to hear that :)
    It’s safe to use that version, just think of it as the current version with some of the fixes and features of the upcoming version.

    Best regards,
    Nikko

    in reply to: Website loads different #1344668

    Hi schnippel,

    Thanks for giving us admin access.
    The issue seems to be caused by Smush plugin (I have deactivated it on your site), some of it’s configurations might be causing this issue, try to enable the plugin again and turn off some of it’s settings.
    Please review your site.

    Best regards,
    Nikko

    in reply to: Blog archive grid broken after update #1344460

    Hi Marc,

    Can you test this version (private content) and see if it works properly on your end?
    Just upload the zip file in Appearance > Themes and it should replace the current version of Enfold.
    Once replaced, please change this code on your archive.php file:

    $blog = new avia_masonry($atts);
    $blog->extract_terms();
    $blog->query_entries();
    $output .= $blog->html();
    echo "<div class='entry-content-wrapper'>".$blog->html()."</div>";

    with:

    $masonry = new avia_masonry( $atts );
    $masonry->extract_terms();
    $masonry->query_entries();
    $masonry->get_element_styles();
    $masonry_html = $masonry->html();
    
    echo "<div class='entry-content-wrapper'>".$masonry_html."</div>";

    Regards,
    Nikko

    in reply to: Manual Masonry Call in Enfold 4.9 #1344459

    Hi christiemade,

    Can you test this version (private content) and see if it works properly on your end?
    Just upload the zip file in Appearance > Themes and it should replace the current version of Enfold.
    Once replaced, please change this code on your category.php file:

    $masonry  = new avia_masonry( $atts );
    $masonry->extract_terms();
    $masonry->query_entries();
    $masonry_html = $masonry->html();

    with:

    $masonry  = new avia_masonry( $atts );
    $masonry->extract_terms();
    $masonry->query_entries();
    $masonry->get_element_styles();
    $masonry_html = $masonry->html();

    Regards,
    Nikko

    in reply to: Blog archive grid broken after update #1344442

    Hi Marc,

    We have reported this issue to our devs.
    For the meantime please use avia_post_slider or fallback to the previous version of Enfold(4.8) as a temporary solution.
    We’ll post here once a solution is made available, so you can use avia_masonry again.

    Best regards,
    Nikko

    • This reply was modified 3 years, 5 months ago by Nikko.
    in reply to: Manual Masonry Call in Enfold 4.9 #1344441

    Hi christiemade,

    Thanks, we have reported this issue to our devs.
    For the meantime please use avia_post_slider or fallback to the previous version of Enfold(4.8) as a temporary solution.
    We’ll post here once a solution is made available.

    Best regards,
    Nikko

    • This reply was modified 3 years, 5 months ago by Nikko.
    in reply to: Blog archive grid broken after update #1344363

    Hi Marc,

    Try to replace this code in archive.php:

    $atts   = array(
    //  'type' => 'grid',
        'items' => get_option('posts_per_page'),
        'columns' => 2,
        'class' => 'avia-builder-el-no-sibling',
        'paginate' => 'yes',
        'gap' => 'large',
        'overlay_fx' => 'bluronhover',
        'caption_elements' => 'title',
        'caption_styling' => 'overlay',
    //  'use_main_query_pagination' => 'yes',
        'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
    );
    
    $blog = new avia_masonry($atts);
    $blog->extract_terms();
    $blog->query_entries();
    $output .= $blog->html();
    echo "<div class='entry-content-wrapper'>".$blog->html()."</div>";

    with:

    $atts   = array(
        'type' => 'grid',
        'items' => get_option('posts_per_page'),
        'columns' => 2,
        'class' => 'avia-builder-el-no-sibling',
        'paginate' => 'yes',
        'use_main_query_pagination' => 'yes',
        'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
    );
    
    $blog = new avia_post_slider($atts);
    $blog->query_entries();
    echo "<div class='entry-content-wrapper'>".$blog->html()."</div>";

    Hope this helps.
    Best regards,
    Nikko

    in reply to: Portfolio items not showing #1344358

    Hi m s,

    I have added this CSS code:

    @media only screen and (max-width: 767px) {
      .page-id-6201 #av-sc-portfolio-1 .isotope-item .grid-content .entry-title {
        font-size: 28px !important;
        margin-bottom: 4px;
      }
    
      .page-id-6201 #av-sc-portfolio-1 .isotope-item .entry-content {
        display: none;
      }
    }

    Best regards,
    Nikko

    Hi GWS,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: How to reduce with of images to 80%? #1344187

    Hi Jak,

    Please try to change the code to:

    @media only screen and (max-width:767px) {
      #top .av_one_third .avia-video {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 80%;
      }
    }

    Best regards,
    Nikko

    in reply to: Preview not reflecting the changes #1344186

    Hi pencefinancial,

    Thanks for the admin access.
    I would like to verify if it’s the Hello and Click here to add your own text showing on the preview that you’re referring?

    Best regards,
    Nikko

    in reply to: Anchored Section goes behind Fixed Header on mobile #1344184

    Hi christiemade,

    Thanks, please try to add this CSS code:

    @media only screen and (max-width:989px) {
      #facts, 
      #pricing {
        background-clip: padding-box;
        border-top: 112px solid transparent;
        margin-top: -112px;
      }
    }

    Best regards,
    Nikko

    in reply to: Mobile Menu Glitch #1344092

    Hi michaelmiller68,

    Please try updating the theme using the Envato Market plugin: https://www.envato.com/lp/market-plugin/
    Hope it helps.

    Best regards,
    Nikko

    in reply to: How to reduce with of images to 80%? #1344091

    Hey Jak73,

    Please try adding this code in Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all .container {
        max-width: 80% !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Social Icons don't appear in Portrait Mode on Mobile #1344090

    Hi John,

    Can you try to use this CSS code and see if it helps:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header .social_bookmarks {
        display: block !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Weird text in product loop. #1344089

    Hey Mikaelkm,

    Thanks for giving us admin access.
    The issue seems to be caused by the PixelYourSite plugin, if you disable it, you’ll see those comments removed.

    Best regards,
    Nikko

    in reply to: Wrong footer content shown #1344087

    Hi GiantTitan,

    Thanks for giving us admin access.
    You need to update footer.php of your child theme (based on Enfold 4.9).
    I tried to rename footer.php file so it would be ignored and the footer widgets were showing the correct widget items, I have renamed it back.

    Best regards,
    Nikko

    in reply to: Underline on active menu item #1344086

    Hey terishka1,

    I have checked your site and I don’t see any underline on your active menu, do you still need help with this?

    Best regards,
    Nikko

    in reply to: Register new icon as a theme icon social icon color #1344085

    Hey terishka1,

    Please try to change the CSS code to:

    #top #wrap_all .av-social-link-phone:hover a {
        background-color: red !important;
        color: white !important;
    }

    Best regards,
    Nikko

    in reply to: Glassy social icon color #1344084

    Hey terishka1,

    I have checked your site and it seems you have already changed the social icon’s background color to gold, do you still need help with this?

    Best regards,
    Nikko

    in reply to: Fullwidth Sub Menu text size and color #1344083

    Hey terishka1,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    #top .av-subnav-menu .avia-menu-text {
        font-size: 18px;
    }

    Just adjust the font-size value.
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Fullwidth Submenu Top and bottom boarder #1344082

    Hey terishka1,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    #top .av-submenu-container {
        border: none;
    }

    Best regards,
    Nikko

    in reply to: Manual Masonry Call in Enfold 4.9 #1344081

    Hi christiemade,

    Can you post the whole code of your archive.php file in https://pastebin.com/ and give the link to us? so we can try to test your code on our end.
    You can post the link in private content.

    Best regards,
    Nikko

    in reply to: Blog archive grid broken after update #1344080

    Hi Marc,

    Can you post the whole code of your archive.php file in https://pastebin.com/ and give the link to us? so we can try to test your code on our end.
    You can post the link in private content.

    Best regards,
    Nikko

    Hey Wolfram,

    Yes, the mobile menu is just hidden and is using media query to trigger it: https://www.w3schools.com/css/css_rwd_mediaqueries.asp
    If the device used to view the site has a width of 767px or less, the mobile menu will be shown (if you resize your browser you’ll see this show up as well)

    Best regards,
    Nikko

    in reply to: Website loads different #1344078

    Hey schnippel,

    Please try to disable JS & CSS file merging and compression in Enfold > Performance, then clear cache if you have some caching plugins.
    If that doesn’t help, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: broken footer widgersq #1343966

    Hi S-edwards,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Ho to replace the video play icon? #1343965

    Hey Jak,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #top .mejs-overlay-button {
        background: url(mejs-controls.svg) no-repeat;
        background-position: center center;
        height: 80px;
        width: 80px;
    }

    replace mejs-controls.svg with the URL of the image you would like to use then change also the height and width value.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Unable to import a demo #1343964

    Hey soumayalmj,

    Thanks for giving us both admin and FTP access.
    The Law Demo has been imported to your site, please review it :)

    Best regards,
    Nikko

    in reply to: Anchored Section goes behind Fixed Header on mobile #1343947

    Hey Christie,

    The page requires a password, please provide the password as well.

    Best regards,
    Nikko

Viewing 30 posts - 3,361 through 3,390 (of 25,536 total)