Forum Replies Created

Viewing 30 posts - 3,481 through 3,510 (of 25,536 total)
  • Author
    Posts
  • Hey Eleina_Shinn,

    Please add this on Quick CSS, located in Enfold > General Styling > Quick CSS:

    #top #wrap_all .slideshow_caption h2.avia-caption-title {
        width: 100%;
        max-width: 820px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .caption_framed .slideshow_caption .avia-caption-content p {
        width: 80%;
        max-width: 820px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        background: rgba(255,255,255,0.7);
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: menue point overlaping #1341288

    Hi Semito,

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

    #top #header #avia-menu .av-menu-button {
        margin-left: 0;
    }
    
    #top #header #avia-menu .av-menu-button > a {
        padding-left: 13px;
    }

    Best regards,
    Nikko

    in reply to: Issue in Backend #1341269

    Hey Christian Wußmann,

    Can you give us the shortcode located at the bottom of the content? you can post it on https://pastebin.com/ (or dropbox) and paste the link in private content.

    Best regards,
    Nikko

    in reply to: different category positions #1341261

    Hi Veronika,

    You’re welcome :)
    Please add this CSS code as well, just change the font-size value:

    #top.home #av-layout-grid-1 .av_one_half.avia-builder-el-first .slide-entry-title {
        font-size: 40px;
    }
    
    #top.home #av-layout-grid-1 .av_one_half.avia-builder-el-first .blog-categories a {
        font-size: 20px;
    }

    Best regards,
    Nikko

    in reply to: Search Results showing builder shortcodes #1341260

    Hi acscreativenew,

    I think the issue is the get_the_content since it fetches shortcodes as well, try using get_the_excerpt function though you will need to add content in the excerpt field.
    Hope this helps.

    Best regards,
    Nikko

    Hi Rustum,

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

    Best regards,
    Nikko

    in reply to: Search Results showing builder shortcodes #1341194

    Hi acscreativenew,

    Thanks for giving us admin access.
    This code in your child theme’s functions.php file is causing the issue:

    function improved_trim_excerpt($text) {
    	global $post;
    	if ( '' == $text ) {
    		$text = get_the_content('');
    		$text = apply_filters('the_content', $text);
    		$text = str_replace('\]\]\>', ']]>', $text);
    		$text = preg_replace('@<script[^>]*?>.*?</script>@si', '', $text);
    		$text = strip_tags($text, '<p><br><b><a><em><strong>');
    		$excerpt_length = 80;
    		$words = explode(' ', $text, $excerpt_length + 1);
    		if (count($words)> $excerpt_length) {
    			array_pop($words);
    			array_push($words, '[...]');
    			$text = implode(' ', $words);
    		}
    	}
    	return $text;
    }
    
    remove_filter('get_the_excerpt', 'wp_trim_excerpt');
    add_filter('get_the_excerpt', 'improved_trim_excerpt');

    I have commented the code and it seems to have fixed the issue, please review the site.

    Best regards,
    Nikko

    in reply to: WooCommerce Brands overview page #1341071

    Hi envis,

    I think the issue is with the variable $size though I never got an issue on my end, please try to replace:

    $thumb_src = wp_get_attachment_image_src( $thumbnail_id, $size );

    with:

    $thumb_src = wp_get_attachment_image_src( $thumbnail_id, 'full' );

    Best regards,
    Nikko

    in reply to: Overlapping rows #1341068

    Hi grassifrancesca,

    I’m happy to hear that :)
    It’s also a great workaround without the need of using CSS.
    Thanks for sharing the solution that you’ve made and thanks as well for using Enfold :)
    Have a great day!

    Best regards,
    Nikko

    Hi Rustum,

    I see, I have replaced this code in your search.php file:

    global $posts;
    $post_ids = array();
    foreach($posts as $post) $post_ids[] = $post->ID;
    
    if(!empty($post_ids))
    {
        $atts   = array(
            'type' => 'grid',
            'items' => get_option('posts_per_page'),
            'columns' => 3,
            '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_product_slider($atts);
        // $blog->query_entries();
        echo "<div class='entry-content-wrapper'>".$blog->html()."</div>";
    }

    with:

    global $posts;
    
    $post_ids = array();
    foreach($posts as $post) {
        $post_ids[] = $post->ID;
    }
    
    if(!empty($post_ids))
    {
        $atts   = array(
            'type' => 'grid',
            'items' => get_option('posts_per_page'),
            'columns' => 3,
            '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>";
    }

    and added this CSS code in Enfold > General Styling > Quick CSS:

    .template-search .post-entry {
      clear: none;
    }

    Please review your site.

    Best regards,
    Nikko

    in reply to: how to add script to footer #1340819

    Hi julhobart,

    Yes, your code is correct.

    Best regards,
    Nikko

    in reply to: horizontal scroll on mobile menu #1340818

    Hey Veronika,

    Please try to add this CSS code in Quick CSS:

    @media only screen and (max-width:767px) {
      #av-burger-menu-ul .menu-item-4053:before {
        width: 100%;
      }
    
      .responsive #top .cart_dropdown {
        display: none;
      }
    }

    Best regards,
    Nikko

    in reply to: different category positions #1340816

    Hi Veronika,

    Please add this CSS code in Quick CSS:

    #top .avia-content-slider .slide-content .entry-content-header {
        display: flex;
        flex-direction: column-reverse;
    }
    
    #top .avia-content-slider .slide-content .entry-content-header .slide-entry-title {
        padding-top: 0;
    }
    
    #top .avia-content-slider .slide-content .entry-content-header .blog-categories {
        top: 0;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Warning: Creating default object from empty value #1340814

    Hi BenjaminSpeedtsberg,

    We’re glad that you were able to fix the issue.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: WooCommerce Brands overview page #1340813

    Hi envis,

    Yes, please replace this code:

    function add_brand_woocommerce_before_shop_loop() {
    	echo do_shortcode('[product_brand width="128px" height="128px" class="alignleft"]');
    }

    with:

    function add_brand_woocommerce_before_shop_loop() {
    	global $wp_query;
    	$brand_id = $wp_query->get_queried_object()->term_id;
    	$thumbnail_id = WC_Brands::get_term_meta( $brand_id, 'thumbnail_id', true );
    	if ( $thumbnail_id ) {
    		$thumb_src = wp_get_attachment_image_src( $thumbnail_id, $size );
    		echo "<img src=\"{$thumb_src[0]}\" width=\"{$thumb_src[1]}\" height=\"{$thumb_src[2]}\" />";
    	}
    }

    Best regards,
    Nikko

    in reply to: Overlapping rows #1340811

    Hi grassifrancesca,

    Yes it would put the picture in the pink background as well that’s why the image should have a negative margin so it shifts upward and the top part of the image should partially go outside of the column area with the pink background.

    Best regards,
    Nikko

    in reply to: WooCommerce Brands overview page #1340802

    Hi envis,

    Please replace this part of the code:

    add_action( 'woocommerce_before_shop_loop', 'add_brand_woocommerce_before_shop_loop', 19 );

    to:

    add_action( 'woocommerce_before_shop_loop', 'add_brand_woocommerce_before_shop_loop', 5 );

    Best regards,
    Nikko

    Hi Rustum,

    Thanks for giving us both admin and FTP access.
    It seems the issue is in your child theme’s search.php file, you can verify this if you rename or change the file extension (so it won’t be read) you’ll see the search working properly.
    Hope this helps.

    Regards,
    Nikko

    Best regards,
    Nikko

    in reply to: WooCommerce Brands overview page #1340454

    Hi Gerben,

    Thanks, please try adding this code in your child theme’s functions.php:

    add_action( 'woocommerce_before_shop_loop', 'add_brand_woocommerce_before_shop_loop', 19 );
    
    function add_brand_woocommerce_before_shop_loop() {
    	echo do_shortcode('[product_brand width="128px" height="128px" class="alignleft"]');
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Google Maps #1340197

    Hi attifilm,

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

    Best regards,
    Nikko

    in reply to: Gym theme cant install #1340196

    Hi macman79,

    Grid Row should show under Layout Elements, then just add a new cell so it’s 3 columns.

    Best regards,
    Nikko

    Hi Rustum,

    Can you give us admin access (just change the password after fixing it) and also FTP access? so we can try to debug and troubleshoot the issue.
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Different "Read More" based on category when using Magazine #1340194

    Hi Ostsys,

    Category pages should have this class on them .category-name, for example category with name of news should be using this class:

    .category-news

    so you should be able to add this code inside your jquery code:

    $(".category-news .more-link").text("Go to News");

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Overlapping rows #1340193

    Hi grassifrancesca,

    I think it can’t be fixed with that structure.
    You should put textblock and the button in the same 1/2 column as the image, then add a background image on that column then just have a negative margin on the image which should have the same result you would have on desktop and still be in correct order on mobile.

    Best regards,
    Nikko

    in reply to: Gym theme cant install #1340191

    Hi macman79,

    You’ll need to add it in Enfold > General Styling > Quick CSS as well.
    As for the 3 boxes that fills the whole width of the screen, use Grid Row.

    Best regards,
    Nikko

    in reply to: Need help with Static Header #1339893

    Hey Skeeva7,

    Please follow the instruction in our documentation: https://kriesi.at/documentation/enfold/example-of-the-menu-left-logo-center-overflow-widget-right/
    For the right widget, you can use nav menu widget.

    Best regards,
    Nikko

    in reply to: full screen slider element best result #1339886

    Hi sitibus,

    Since screens and devices come in different sizes and resolutions the answer would be different in each size, so it’s hard to answer that question unless you want to target a specific size of the screen.
    The fullscreen slider only adapts to the size of the screen and adjusts the image so it fits the whole screen even though some sides may be cropped, on my screen (I think it’s a common size) 1619 x 961px is the best size to use.

    Best regards,
    Nikko

    in reply to: Footer & Socket not showing on Version 4.8.9 #1339883

    Hi ellamac,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Gym theme cant install #1339882

    Hi macman79,

    1. Please add this CSS code in Enfold > General Styling > Quick CSS (this will affect all fullscreen sliders):

    .avia-fullscreen-slider .avia-slideshow {
        max-height: 70vh;
    }

    Just adjust the value (70vh means 70% of the screen height).

    2. The height seems to be set to 70px in its setting, please remove it and it should fix it on mobile.

    As for the fallback image not to show before the video starts, please add this CSS code:

    @media only screen and (min-width:1200px) {
      .avia-fullscreen-slider .avia-slide-wrap {
        background-image: none !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Gym theme cant install #1339668

    Hey macman79,

    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

Viewing 30 posts - 3,481 through 3,510 (of 25,536 total)