Forum Replies Created

Viewing 30 posts - 13,201 through 13,230 (of 25,536 total)
  • Author
    Posts
  • Hey Nick,

    I checked it and it’s not aligned properly.
    Can you try adding this css code in Quick CSS:

    @media only screen and (max-width:479px) {
      .responsive #header .sub_menu {
        padding-left: 0;
      }
    
      .responsive #header_meta .sub_menu>ul>li {
        position: static !important;
      }
    
      #top #header_meta .phone-info {
        left: 0 !important;
        transform: translate(0) !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Remove bottom border in grid row #1078982

    Hey perihelionweb,

    Can you try using this css code in Quick CSS (located in Enfold > General Styling):

    #top .container_wrap.fullsize {
        border: none;
    }

    Best regards,
    Nikko

    Hi John,

    Thanks for giving us admin access.
    In Enfold > Performance > Disabling of template builder elements, I just set this to Always load all elements.
    I think there might be some conflict with the caching plugin that’s why the recommended option isn’t working properly.

    Best regards,
    Nikko

    in reply to: Excerpt and Read More for Magazine element? #1078973

    Hi Drew,

    We apologize for the delayed response.
    Here are the steps to add the excerpt and read more:
    1. Use a child theme: https://kriesi.at/documentation/enfold/child-theme/ (skip this step if you already have one)

    Replace Avia Layout Builder element
    2. Follow the steps here: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
    In your child theme’s functions.php, add this code:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    Then in your child theme create a folder named shortcodes

    3. In the shortcodes folder, create another folder called magazine and inside this folder add a file called magazine.php and paste this: https://pastebin.com/VCTFQuQ5

    Best regards,
    Nikko

    in reply to: Layout Builder Errors #1078971

    Hi arkerwarehouse,

    We apologize for the delayed response and thanks for providing admin access.
    I’m not really sure what causing the issues on that specific page but I created a new page and tried to recreate your homepage and it doesn’t have any issues (link in private content).

    Best regards,
    Nikko

    in reply to: CSS for ipad portrait #1078968

    Hi Neil,

    I have created a new page based on your homepage and layerslider and made modifications on the layerslider.
    The link is in private content.

    Best regards,
    Nikko

    Hi Steven,

    You’re welcome.
    We’ll keep this thread open until it’s resolved :)

    Best regards,
    Nikko

    in reply to: Media element video show full screen #1078964

    Hi Buddy,

    I checked on it again and the problem is in the screenshot (link in private content).
    I tried to modify it for you however I’m getting the error, the second screenshot in private content contains the right code but I could not make the changes because of the error shown in the screenshot.
    The problem is the

    =>

    is replaced with (without spaces)

    = & g t ;

    as shown in the screenshot.
    Also in the child theme’s functions.php, this code is still not added yet:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    Best regards,
    Nikko

    in reply to: overlapping content/ horizontal scrolling #1077642

    Hi Theresa,

    I see, in that case, you need to use Custom CSS Classes.
    Go to Enfold > Layout Builder > check Show element options for developers.
    This will enable Custom CSS Classes on all elements.
    On the 1/2 column, add this on Custom CSS Classes: timeline-desktop
    Then on the 1/1 column, add this on Custom CSS Classes: timeline-mobile and save.
    Go to Enfold > General Styling > Quick CSS, and add this css code:

    #top .timeline-mobile {
      display: none !important;
    }
    
    @media only screen and (max-width:1600px) {
      #top .timeline-mobile {
        display: block !important;
      }
    
      #top .timeline-desktop {
        display: none !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Shortcodes not working in text widget anymore #1077637

    Hi elbnetz,

    I’m not really sure why that happens, I think it’s similar to the answer given here: https://wordpress.stackexchange.com/questions/156222/shortcode-in-text-widget-not-working/156229
    I compared the posts in sidebar in your homepage and single post pages and it’s the same except the homepage displays 6 posts while on single post pages it’s 5.

    Best regards,
    Nikko

    in reply to: I Need help with Custom CSS #1077636

    Hi adaptiveseosolutions,

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

    #header .logo {
        overflow: visible;
    }
    
    #header .logo a, 
    #header .logo img {
        min-height: 150px;
    }
    
    @media only screen and (max-width:767px) {
      #header .logo a, #header .logo img {
        min-height: 80px !important;
      }
    }

    Best regards,
    Nikko

    in reply to: V. 4.5.1 – Sticky Toolbar gone? #1077635

    Hi D,

    This shouldn’t cause any issues, and this solution is coming from WordPress itself when they have added the Gutenberg editor when they released WordPress 5.0
    When you update to WP 5.x it automatically uses gutenberg which causes issues on a lot of themes, you can search or google for this, by installing and activating Classic Editor plugin, it will use the original wordpress editor and disable gutenberg.
    If you’re using Enfold 4.5.2 and up, you don’t need to install the plugin, you’ll have that option in Enfold > Theme Options > Select Your Editor > Use WP Classic Editor. If you’re using versions lower than that then you need to install the plugin.

    Best regards,
    Nikko

    in reply to: Remove opacity on hover in mainmenu #1077633

    Hi getfred,

    I apologize for the delayed response.
    Can you try adding this code?

    #top #header #avia-menu li.menu-item > a {
        transition: none !important;
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Media element video show full screen #1077629

    Hi Buddy,

    I apologize for the delayed response.
    Can you try to manually replace the single and double quotes? sometimes those cause some issues even when the code is correct.

    Best regards,
    Nikko

    in reply to: Opt-Out-for Google Analytics & Facebook Tracking #1077628

    Hi Jeepkid99,

    Try adding this code at the bottom of your functions.php:

    remove_action('wp_footer', 'avia_print_tracking_code', 100);

    Best regards,
    Nikko

    Hi 4cprintsolution,

    I apologize for the delayed response.
    I tried the code you gave on my local server and it doesn’t seem to work even when I used twentynineteen, can you try using this code:

    add_filter( 'pre_get_posts', 'custom_post_type_search' );
    function custom_post_type_search( $query ) {
      if ($query->is_search) {
        $query->set('post_type', array( 'post', 'product'));
      }
      return $query;
    }

    Best regards,
    Nikko

    in reply to: Demo images are not imported #1076195

    Hi muhammetcoskun,

    Glad that it’s fixed.
    And thanks for sharing what you did to resolve the issue.
    Thanks again for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi kdhillon,

    You can upload the screenshot in https://imgur.com/ or any online image sharing sites including dropbox.
    Then you can post the link here. If you want the link only to be visible to the moderators then just post it in private content.

    Best regards,
    Nikko

    in reply to: Change button font size on single button #1076029

    Hi Handyann,

    Thanks for giving us the link, I don’t see the class name you mentioned, but I think you’re referring to the large and extra large buttons.
    Try adding this css code in Quick CSS (Located in Enfold > General Styling):

    #top .avia-button.avia-size-large .avia_iconbox_title,
    #top .avia-button.avia-size-x-large .avia_iconbox_title {
        font-size: 18px;
    }

    Best regards,
    Nikko

    in reply to: Content filter can't get post ID #1076028

    Hi pharefm,

    I could not assure you that it would be added but please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/
    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented.
    If it gains a lot of vote then it would most likely be added.
    Anyways, we’re glad to help :)

    Best regards,
    Nikko

    Hi Mike,

    This code is meant to add Advanced Layout Builder to custom post types.
    This is in our documentation, I’m not sure if this will be added in the later version but there is a possibility.
    We’ll be adding it in our changelog if that happens.

    Best regards,
    Nikko

    in reply to: Remove special heading from logo slider #1076023

    Hi Robin,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Add Google font #1076022

    Hi Emmy,

    The code seems right but I think the issue is in the single quotes, try using this instead:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
      $fonts['Saira Semi Condensed'] = 'Saira Semi Condensed';
      return $fonts;
    }

    Best regards,
    Nikko

    in reply to: Conflicts when using a child theme #1075835

    Hi Maskenzauber,

    Sorry but no. I saw once that you foobared a google map (for some days) on another customers website.

    Can you give a link where I did this?

    And this customer was a doctor and she lost clients cause you where misleading her patients to a complete other adress.

    I’m not really sure where you’re getting this, can you give a link where I mislead them?

    We’re trying to help here, and it’s hard to try to debug an issue we can’t reproduce on our end.
    If you create atleast a staging site where we can check without having access on your live site, maybe we can give you steps on how to fix it.

    Best regards,
    Nikko

    in reply to: Breadcrumb issue when post is in two categories #1075824

    Hi Maskenzauber,

    I apologize that I have made the assumption that you’re not using a child theme, there are times when we assumed that some users already have a child theme but they didn’t and they get confused that’s why we try assume that they don’t have one, not to offend or be rude to them since they can just ignore the child theme part of the step and go on the next step.
    Also I mentioned that avia_woocommerce_breadcrumb needs to be tweaked since that’s the function that controls the breadcrumb for woocommerce, there’s no option to select for one.
    I’m just trying to point you to the right direction and we can try to help you with the code but we would need both admin and ftp access for it.

    Best regards,
    Nikko

    in reply to: Content filter can't get post ID #1075817

    Hi pharefm,

    Thanks, I have made modifications on your child theme.
    First thing I recognize is that I needed to tweak the postslider element and I needed to add this code in functions.php of your child theme:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    You can check here in our docs for more information: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Then I created a shortcodes folder in the child theme, copied postslider folder from wp-content > themes > enfold > config-templatebuilder > avia-shortcodes to wp-content > themes > (child theme name) > shortcodes.
    Then tweaked postslider.php in the child theme (line 530-531):

    $current_post['content'] = $entry->post_content;
    $current_post['title'] =  $entry->post_title;

    replaced it with:

    $current_post['content'] = $entry->post_content;
    $current_post['title'] =  $entry->post_title;
    $current_post['the_id']	= $the_id;

    then in functions.php I modified the avia_audio_content_filter function to:

    function avia_audio_content_filter($current_post)
    {
    
    	$the_id = $current_post["the_id"];
    	$match_audio = get_post_meta($the_id, 'audio_file', false);
    	//print "--ID : ".$the_id." <br/>"; 
    
    	if (!empty($match_audio)){
    		$current_post['before_content'] = do_shortcode('[audio src="'.$match_audio[0].'"][/audio]');			
    	}
    	return avia_default_title_filter($current_post);
    }

    I remove the comment on the print code, so it displays if the ids are accurate.

    Best regards,
    Nikko

    in reply to: Margin issue #1075778

    Hi MarcusJeroch,

    Try adding this css code in Quick CSS:

    #top .wc-gzd-additional-info.shipping-costs-info a {
        display: inline !important
    }

    Best regards,
    Nikko

    in reply to: Media element video show full screen #1075776

    Hi Buddy,

    Thanks for the admin access. There are two things that are needed first, please change the shortcode folder to shortcodes (I apologize that was my mistake).
    Then you’ll need to add this in functions.php of your child theme:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    For more information you can check it in our docs: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

    in reply to: Enfold update – http error 500 #1075771

    Hi PIX3L_r,

    You’re welcome just post back if you get any information :)

    Best regards,
    Nikko

    Hi metafora29,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 30 posts - 13,201 through 13,230 (of 25,536 total)