Forum Replies Created

Viewing 30 posts - 25,321 through 25,350 (of 67,534 total)
  • Author
    Posts
  • in reply to: No more responsive and blocks that can't be deleted on AVIA #1053890

    Hi,

    You’re welcome! Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonary Post and jetpack lazy loading #1053889

    Hi,

    You have to add it in the functions.php file. Please disable the cache and minification plugin temporarily.

    Best regards,
    Ismael

    in reply to: Google Maps API Key just wont work #1053888

    Hi,

    Alright. I would like to check the functions.php file but the Appearance > Editor panel is not accessible. Please take a look at that file and disable any function that you think is related to google maps.

    Best regards,
    Ismael

    in reply to: Preview function not working #1053886

    Hi,

    Thanks for the update. Is it working properly if you remove the masonry element?

    Best regards,
    Ismael

    in reply to: Exclude category in blog posts #1053884

    Hi,

    Thanks for the update. This filter might help:

    // exclude meat
    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2);
    function avia_blog_post_query_mod($query, $params) {	
    	$query['tax_query'][] =
            [
                'taxonomy' => 'category',
                'field'    => 'name',
                'terms'    => 'meat',
                'operator' => 'NOT IN',
            ];
    
        return $query;
    }

    // https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

    Best regards,
    Ismael

    in reply to: masonry gallery alignment / order #1053881

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Problem about rel next/ previous in pagination #1053880

    Hi,

    Thanks for the update.

    Replace the previous code with the following:

    add_action('wp_head', 'wp_head_pagination_mod');
    function wp_head_pagination_mod() {
        global $wp_query;
        
        $page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' );
        $page = ! $page ? 0 : $page;
    
        $url = (isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
        $url = substr($url, 1, strpos($url, "page"));
    
        $link_prev = $url . 'page/' . ($page - 1);
        $link_next = $url  . 'page/' . ($page + 1);
    
        if( ! $page ) {
            $output .= ' 	<link rel="next" href="'. $link_next .'" />' . PHP_EOL;   
        } else if( $page == $wp_query->max_num_pages ) {
            $output  = ' 	<link rel="prev" href="'. $link_prev .'" />' . PHP_EOL;
        } else {
            $output  = ' 	<link rel="prev" href="'. $link_prev .'" />' . PHP_EOL;
            $output .= ' 	<link rel="next" href="'. $link_next .'" />' . PHP_EOL;
        }
    
        echo $output;
    }

    Best regards,
    Ismael

    Hi,

    How can I edit that quiz? It redirects to the same page when I click the “Edit Quiz” link.

    Best regards,
    Ismael

    in reply to: Blog Header images not rendering correctly on mobile #1053572

    Hi,

    I can’t see the theme version in the head tag. Is it on version 4.5.2? Please add the css code temporarily. We’ll forward this thread again to our developers.

    Best regards,
    Ismael

    in reply to: Fotos mit Beschreibung werden unscharf #1053571

    Hi,

    Thanks for the update. Are you open to removing the border or frame? You can use this css code to remove it.

    #top .wp-caption img {
        padding: 0;
    }

    Best regards,
    Ismael

    in reply to: Categories view #1053570

    Hi,

    You can set the default archive style by adjusting the Enfold > Blog Layout > Blog Layout settings. You can also manually edit the archives.php template file if you want to add more customization to the archive pages.

    Best regards,
    Ismael

    in reply to: Mobile layout issues #1053568

    Hi,

    These two sections are not full width as well

    Edit the grid row element and make sure that the “Mobile Behaviour” settings is set to the first option. The footer area looks ok now.

    Best regards,
    Ismael

    in reply to: Video on Hover #1053567

    Hi,

    This might help:

    // https://kriesi.at/support/topic/video-on-hover-for-portfolio-items/

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I set the builder to debug mode and removed the invalid shortcodes from the debug mode field to get rid of the unwanted blocks or elements from the builder. These are the deleted shortcodes:

    [av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center right' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' av_uid='av-7c5ryn'][/av_cell_one_half]
    
    [av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center right' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' av_uid='av-7c5ryn'][/av_cell_one_half]
    
    [av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='center right' background_repeat='stretch' link='' linktarget='' link_hover='' mobile_display='av-hide-on-mobile' av_uid='av-7c5ryn'][/av_cell_one_half]
    

    Best regards,
    Ismael

    in reply to: Portfolio as a slider on a page #1053503

    Hi,

    You can use the Post Slider element. Just set the “Which entries?” settings to “Portfolio Entries”.

    Best regards,
    Ismael

    in reply to: Remove portfolio category from search results? #1053501

    Hi,

    Have you tried using the suggested plugin above?

    // https://wordpress.org/plugins/simply-exclude/

    You can remove the code if you decided to use the plugin.

    Best regards,
    Ismael

    Hi,

    You can make a button out of a menu item. Create a custom link and set the “Menu Style” to “Button Style”. There are two button style available.

    Best regards,
    Ismael

    Hi,

    Which device are you checking this with? You can use this css code to adjust the width of the logo entry on mobile view..

    @media only screen and (max-width: 768px) {
    .responsive #top #wrap_all .avia-content-slider-odd .slide-entry {
        margin-left: 0;
        clear: both;
        width: 100%;
    }
    }

    Best regards,
    Ismael

    in reply to: 2 collumns bug, the second column narrowed? #1053495

    Hi,

    Thanks for the info. I see the issue now but I can’t figure out what’s causing it. Please disable the “Equal Height” option temporarily.

    Best regards,
    Ismael

    in reply to: Masonary Post and jetpack lazy loading #1053493

    Hey roamingk,

    Thank you for using Enfold.

    This script will force the portfolio grid to re-render or re-position until it’s fully loaded.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		console.log('tick');
    		$(window).trigger('resize');
    		$(window).trigger('av-content-el-height-changed');
    	}, 1000);
    	
    	$(window).on('load', function() {
    		clearInterval(int);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: Google tag manager #1053492

    Hi,

    You can actually insert the GA code in the Enfold > Google Services panel. It’s the same as using the “wp_head” hook.

    Best regards,
    Ismael

    in reply to: wp_link_pages #1053491

    Hi,

    Do you have a test page? Please provide the url of the site. You may need to contact the plugin developer for additional help.

    Best regards,
    Ismael

    in reply to: Problem about rel next/ previous in pagination #1053490
    in reply to: Tab Section Image and Title Alignment not working #1053489

    Hi,

    The scroll feature will require modification that is beyond the scope of support, unfortunately, so may need to contact a freelance developer or contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Menu-Fonts are not correct displayed in the frontend #1053481

    Hi,

    Thanks for the update.

    I’m still not sure why it’s doing that. You can use this css code to adjust the menu items above the main menu.

    #top #header_meta a, #top #header_meta li, #top #header_meta .phone-info {
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.11em;
        font-weight: normal;
    }

    For the border, use this:

    #top #header .av-main-nav > li > a:after {
        content: '/';
        padding-left: 13px;
        border: 0;
    }
    
    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
    border: 0;
    }

    Best regards,
    Ismael

    in reply to: masonry gallery alignment / order #1053475

    Hi,

    Thanks for the update. This css code seems to help.

    .av-masonry-entry:nth-child(1) {
        display: none !important;
    }

    Best regards,
    Ismael

    Hi,

    Have you tried using the layer slider? Add a layer, set it to “Video/Audio/ and enable the “Use this video as slide background” option. It will take a lot of modification if you are to use the video element.

    Best regards,
    Ismael

    in reply to: Contact form not responsive #1053472

    Hi,

    Thanks for the update. Please post the login details in the private field. And make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: LayerSlider showing 'more videos' when opened in Chrome #1053471

    Hi,

    Can you give us a screenshot of the issue again? Use imgur or dropbox. The screenshot above is from an iPhone emulation.

    Happy new year to you, too!

    Best regards,
    Ismael

    in reply to: Blog Header images not rendering correctly on mobile #1053470

    Hi,

    I can’t find the blog section on the home page. Did you remove it? This modification has been included on version 4.5.2.

    Best regards,
    Ismael

Viewing 30 posts - 25,321 through 25,350 (of 67,534 total)