Forum Replies Created

Viewing 30 posts - 12,451 through 12,480 (of 25,536 total)
  • Author
    Posts
  • in reply to: Remove animation from Icon grid #1091575

    Hi M,

    Can you try add this css code:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
      -webkit-animation: none;
      -moz-animation: none;
      animation: none;
    }

    Hope it helps

    Best regards,
    Nikko

    in reply to: Video html5 web #1091573

    Hi robertopenedovr46,

    Yes, mp4 is a valid extension.
    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
      ( do 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: Enfold Demo import #1091572

    Hi ExpertSystemsAdmin,

    Just go to the folder outside of the demo_files folder ( wp-content > themes > enfold > includes > admin ) and you should see dummy.xml.
    Use this and it should give you the Enfold default demo :)

    Best regards,
    Nikko

    in reply to: Custom header height #1091565

    Hey ivanmne,

    Are you referring to the section with this background image https://kriesi.at/themes/enfold-restaurant/wp-content/uploads/sites/39/2014/07/pasta.jpg the header?
    The only part of the header is the logo and the menus, try to edit the Color Section of your homepage, you should be able to change the Section Minimum Height and that should adjust the height of it.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Styling active menu item for transparent header #1091558

    Hi wvanderzee,

    Glad that it’s fixed. :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Problem with symbol list in second column #1091557

    Hi einfachrosa,

    There’s no ETA yet but it would most likely be released this month.
    For now just tweak it in the Enfold theme files, when the update is available you shouldn’t worry about it. :)

    Best regards,
    Nikko

    in reply to: How can i edit the code #1091553

    Hi photojustus,

    Click on the pencil & paper icon on the upper left corner and you should be able to edit the settings of that Portfolio element.
    Hope this helps.

    Best regards,
    Nikko

    Hi benojack,

    We’re glad that this is resolved :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Increase high Fullwidth Easy Slider Mobile #1091547

    Hi unicaweb,

    Can you try to replace this css code:

    #full_slider_1 .avia-slideshow li img {
        width: 200% !important;
        max-width: auto;
    }

    with:

    #full_slider_1 .avia-slideshow li img {
        width: 150% !important;
        max-width: none !important;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Copyright on mobile Devices smaller. #1091527

    Hi Franz,

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

    Best regards,
    Nikko

    in reply to: Icon List formatting #1091524

    Hey Jagrav,

    I tried going to the link you gave however I’m getting this:

    Nothing Found
    Sorry, the post you are looking for is not available. Maybe you want to perform a search?

    I think the page is not yet published and set as draft, that’s why we can’t see it.

    Best regards,
    Nikko

    Hey VerhoevenGroup,

    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
      ( do 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

    Hi velli,

    It won’t work just by using the same path.
    You’ll need to follow the instructions here in order to override the element: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

    Hi Justin,

    Glad that everything is working fine on your end as well :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi GB,

    Can you try clearing the browser cache?
    I have checked it on my end, at first I wasn’t seeing it as well but after clearing the browser cache, I was able to see the caption.

    Best regards,
    Nikko

    in reply to: Sticky posts by category in blog grid #1091500

    Hi Maureen,

    Thanks it works, I have added this code in your functions.php:

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
    function avia_post_slide_query_mod($query, $params) {
    
      if( is_front_page() ) {
        $include = array();
        $sticky = get_option( 'sticky_posts' );
    
        if(empty($terms[0]) || is_null($terms[0]) || $terms[0] === "null") {
          $term_args = array( 
            'taxonomy' => $params['taxonomy'],
            'hide_empty' => true
          );
    
          $allTax = AviaHelper::get_terms( $term_args );
              
          $terms = array();
          foreach( $allTax as $tax ) {
            $terms[] = $tax->term_id;
          }
        }
    
        $args = array(
          'post_type' =>	$params['post_type'],
          'offset' =>	$params['offset'],
          'posts_per_page' =>	8,
          'post__not_in' => $sticky,
          'tax_query' => array(
            array(
              'taxonomy' =>	$params['taxonomy'],
              'field' => 'id',
              'terms' => $terms,
              'operator' =>	'IN'
            )
          )
        );
        $posts = get_posts( $args );
    
        foreach($posts as $post) {
          $include[] = $post->ID;
        }
    
        $include = array_merge($sticky, $include);
    
        // convert values of the $include from string to int
        function sti($n)
        {
          settype($n, 'int');
          return $n ;
        }
    
        $include = array_map("sti", $include);
    
        $query['post__in'] = $include;
        $query['posts_per_page'] = 8;
        $query['orderby'] = 'post__in'; // sort items based on the post__in value
      }
      return $query;
    }
    

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Social media icons missing in latest theme update #1091456

    Hi threemarketinginc,

    Please do what is suggested on this post: https://css-tricks.com/forums/topic/custom-fonts-returns-failed-to-decode-downloaded-font/#post-238852

    Best regards,
    Nikko

    in reply to: importing with "Enveloppe 2017" demo for enfold #1091455

    Hi Damein,

    You’re welcome :)
    Yes, I think you can ask them with it.

    Best regards,
    Nikko

    in reply to: modify featured image in blog post #1091454

    Hi nikestars,

    Can you try to add this php code in functions.php:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
      $size['entry_with_sidebar'] = array('width'=>9999, 'height'=>9999);
      return $size;
    }

    then either try to re-upload the featured image or just regenerate it.

    Best regards,
    Nikko

    in reply to: breadcrumbs height change #1091447

    Hi pixelize,

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

    @media only screen and (max-width: 767px) {
      .responsive .title_container .breadcrumb {
        position: relative;
        right: auto;
        top: 0;
        margin: 0;
        left: -2px;
      }
    }

    Best regards,
    Nikko

    in reply to: Sticky posts by category in blog grid #1091446

    Hi Maureen,

    I’m still getting the same error, I put a screenshot in private content.
    Can you provide us something where we can access files, like a cpanel? just change the password once we have fixed the issue.

    Best regards,
    Nikko

    in reply to: importing with "Enveloppe 2017" demo for enfold #1091437

    Hey Damien,

    Thanks for giving us admin access, when I tried to import the demo, I was getting this in the web console.

    Failed to load resource: the server responded with a status of 503 (Backend unavailable)

    If I try to import via xml, I’m getting this:

    Error 504: Backend unavailable 
    
    This type of error results generally from the client server, used as a backend. 

    Screenshot in private content.
    I think the issue is on your webhost, probably not allowing this.

    Best regards,
    Nikko

    Hi photojustus,

    Unfortunately, we can’t reproduce the same issue you’re having.
    In Enfold > Privacy and Cookies, I set this settings: https://imgur.com/pOGVF3y
    Then in the my contact form I get this: https://imgur.com/Rk5Ns0h
    Can you give us atleast the current settings you have? so we can try to reproduce this issue.
    Or maybe you can create a stage site that we can work on: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: breadcrumbs height change #1091420

    Hey pixelize,

    I tested this on my end but I can’t reproduce the same issue.
    Can you give us a link to your site? so we can inspect it.
    You can post the link in private content so it’s only the moderators that can see it.

    Best regards,
    Nikko

    in reply to: Full Height Column #1091416

    Hey juliovilaine,

    I have checked your site and it seems you have already done the full height column.
    Where do you want to reproduce the 2nd element you have?
    For the slider partially covering a part of an element, you can use z-index to adjust it but I don’t see any issues atm.

    Best regards,
    Nikko

    in reply to: Page Builder in the Shop page / Woocommerce #1091407

    Hi ceciliapendola,

    Unfortunately, the default woocommerce shop page (or the page we set in woocommerce as the Shop page) can’t be modified using the Advanced Visual Builder.
    The masonry shop and custom shop shown in Enfold 2017 is customized but it’s not set as the Shop page.
    This is not because of the theme but because of how it’s designed by WordPress, that’s why even other page builders or even the default WordPress theme doesn’t have the ability to control its design except through some codes and using wordpress hooks.

    Best regards,
    Nikko

    Hi GB,

    You have this code which causes the issue:

    figcaption.av-inner-masonry-content {
        display: none !important;
    }

    it’s placed inside this media query:

    @media only screen and (max-width: 989px)

    Screenshot in private content.

    Best regards,
    Nikko

    Hey Marc,

    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
      ( do 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

    Hey Justin,

    Can you give us steps how we can reproduce the error?
    I have tried the plugin you mentioned and I was able to install and activate it and also viewed the cart but I wasn’t able to reproduce it.

    Best regards,
    Nikko

    Hi vnvo,

    Try removing .page-id-2933 from the last code I gave:

    .page-id-2933 #av_section_1.av-minimum-height-75 .container {
        max-height: 26vh;
    }

    The page id limits it to specific pages only.

    Best regards,
    Nikko

Viewing 30 posts - 12,451 through 12,480 (of 25,536 total)