Forum Replies Created

Viewing 30 posts - 13,321 through 13,350 (of 66,033 total)
  • Author
    Posts
  • in reply to: Heigh and Scroll Down in Tab Section #1301873

    Hi,

    Thank you for following up.

    You should add the css code in the Quick CSS field, not in the tab section section’s custom css class name or ID field. We moved the code from those fields to the Quick CSS field and adjusted the maximum height. We also applied a unique ID (individualisierung-custom-table) to the tab section element.

    This is the css code.

    #top #individualisierung-custom-table .avia-table.avia-builder-el-first {
      margin-top: 50px;
      margin-bottom: 50px;
    }
    
    #top #individualisierung-custom-table.tabcontainer {
      max-height: 500px;
    }
    
    #top #individualisierung-custom-table .avia-table.avia-builder-el-first {
      margin-top: 30px;
    }
    

    Best regards,
    Ismael

    in reply to: History Slider Not Working Correctly In Chrome #1301872

    Hi,

    Thank you for the update.

    For some reason, the fade in animation of the other milestones is not kicking in. To fix the issue temporarily, we used this css code in the Quick CSS field.

    .avia_start_animation .av-milestone.av-animated-generic {
        opacity: 1;
    }
    

    Best regards,
    Ismael

    in reply to: Mobile Burger menu not working #1301871

    Hi,

    Thank you for the update.

    We found a few jQuery errors when we checked the site on Safari, but we are not yet sure which function is actually generating the issue because the scripts are compressed and minified.

    ReferenceError: Can’t find variable: jQuery
    Global Code — emr.ie:609
    Global Code — autoptimize_dc8f31add0442e7de20fe1cad99ab602.js:23:575

    Did you load jQuery to load in the footer? Please try to temporarily disable the File Compression settings.

    Best regards,
    Ismael

    in reply to: Background Video fullscreen #1301870

    Hey dondela,

    Thank you for the inquiry.

    Looks like you have already found the Video Display settings. If not, edit the video slide, then go to the Styling panel and set the Video Display to the second option.

    Best regards,
    Ismael

    Hey Richard,

    Thank you for the inquiry.

    This should be possible using a custom script. Please try to add this code in the functions.php file.

    // a custom script
    // use external link
    function ava_custom_script_mod() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		(function($) {
    			$(document).ready(function() {
    				$(".post-format-link .more-link").on("click", function(e) {
    					if(e.preventDefault) e.preventDefault();
    					var content = $(this).parents(".slide-content");
    					var header = content.find(".entry-content-header");
    					var external_link = header.find("a").attr("href");
    
    					window.location.href = external_link;
    				})
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);
    

    Best regards,
    Ismael

    in reply to: Blog posts return a blank page #1301633

    Hey Bernard-Brassard,

    Thank you for the inquiry.

    Would you mind providing a link to the page or post with the issue? The Blogue page seems to be displaying the posts properly. Is it where you are having this issue?

    Best regards,
    Ismael

    in reply to: Woocommerce: Double cart content and totals #1301631

    Hey Yowl,

    Thank you for the inquiry.

    Did you add the cart shortcode in the page manually? Please check if the shortcode has been duplicated, or post the login details in the private field so that we could check the site properly.

    Best regards,
    Ismael

    in reply to: Blog Posts Displaying Incorrectly #1301629

    Hi,

    It is actually pretty common to use or add css code to adjust the style of a page or a template if the default styles do not meet your requirements. Have you tried setting the blog style to Single Author, Big Preview?

    // https://kriesi.at/themes/enfold/blog/blog-single-author-full/

    Best regards,
    Ismael

    in reply to: Schriftart #1301626

    Hi,

    No problem. Please feel free to open another thread should you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    to have Advanced Layout Builder content populate your Excerpt option automatically

    It is actually easy to extract a text or a piece of data from the builder and use it as the excerpt but the problem is that we cannot predict or know which element or text you or other users would like to actually use as excerpt, which is why it is left blank.

    Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Tab section active font color #1301620

    Hey johnjosephjohansson,

    Thank you for the inquiry.

    You can use this css code to adjust the color of the active tab section title.

    #top .av-active-tab-title .av-inner-tab-title {
    	color: red !important;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Enfold update for multiple licenses #1301617

    Hi,

    But can I always use the same enfold.zip file?

    You can use the same enfold.zip file for every site. You can also update the theme from the dashboard or from the Enfold > Theme Options > Theme Updates panel.

    Best regards,
    Ismael

    Hey Raphaela_Pla,

    Thank you for the inquiry.

    Based on the screenshot, looks like the Blog Posts element is set to have a grid layout. If that is true, you can use this css code to adjust the font size of the post title.

    .avia-content-slider .slide-entry-title {
        font-size: 0.8em;
        line-height: 1.2em;
        margin: 0;
    }
    

    And regarding the image borders, please post the site URL in the private field so that we can actually check the blog posts element.

    Best regards,
    Ismael

    Hey Enrico,

    Thank you for the inquiry.

    Looks like the icon grid ignores the link completely. Please try to modify the enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, look for this code around line 28.

    var current = $(this),
    					container = current.closest('.avia-icongrid-flipbox');
    
    				if( current.hasClass('avia-hover') )
    				{
    					container.find('li').removeClass( 'avia-hover' );
    				}
    

    .. and replace it with:

    var current = $(this),
    					container = current.closest('.avia-icongrid-flipbox'),
    					link = $(this).find("a");
    
    				if( current.hasClass('avia-hover') )
    				{
    					if(link) {
    						window.location.href = link.attr("href");
    					} else {
    						container.find('li').removeClass( 'avia-hover' );
    					}
    				}
    

    The changes above should look for a link inside the list elements and if found, try to redirect to a location, which is based on the link’s href attribute, else flip the item again.

    Best regards,
    Ismael

    Hey James Bowtine,

    Thank you for the inquiry.

    The slider transition or the fade in effect is working properly on Google Chrome. Where are you testing the site?

    Best regards,
    Ismael

    in reply to: background submenu #1301558

    Hey schweg33,

    Thank you for the inquiry.

    You can use this css code to change the background of the drop down.

    #top .av-subnav-menu li > ul > li {
        background: blue;
    }
    

    If you want to change the color as well, try this css code.

    #top .av-subnav-menu li > ul > li > a > .avia-menu-text {
        color: red;
    }
    

    Best regards,
    Ismael

    in reply to: Heigh and Scroll Down in Tab Section #1301554

    Hi,

    It seems to be working properly on our end as shown in the screenshot below.

    Screenshot: https://imgur.com/vAlDtVS

    Would you mind providing a screenshot of the issue? You can use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Menu Items – Add more room? #1301550

    Hi,

    Thank you for the update.

    Unfortunately, we cannot access the previous threads based on the reply ID. You will have to provide the actual URL of the previous threads.

    And as expected, the issue is caused by this css code, which is using an nth-child selector.

    #top #header .av-main-nav li:nth-child(4) {
        margin-right: calc(100% - 500px);
    }
    

    Best regards,
    Ismael

    Hi,

    It actually works properly on our end and for a few users who have implemented the same script before. Make sure to update the selector or class name in the following line.

    scrollToTab( '.menu-item a', 'click' );
    

    In your case, you have to replace it with..

    scrollToTab( '.mega-menu-link', 'click' );
    

    .. since you are using a different plugin to build the menu.

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the code and purge the cache.

    Best regards,
    Ismael

    in reply to: Unable to update template enfold #1301536

    Hi,

    You can use either of the two as long as the email address is valid and contains the domain name where the message is sent from. And you can add the code at the very bottom of the functions.php file.

    If you have not installed a child theme yet, we recommend installing one now, then add or move the code in the child theme’s functions.php file.

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    in reply to: Breadcrumb issue #1301535

    Hi,

    To resolve the issue, you have two options:
    Create and select a page to be treated as the blog page
    Add custom code to remove the breadcrumb schema from the source code when the blog page is referenced. An example of how to do this can be found here.

    Did you follow any of these recommendations? According to them, the issue is caused by not having a static blog page, which creates the m=0 parameter.

    Did you try to set a static blog page? You can assign a different page as blog page and it should not affect the posts that displays in your home page, which seems to be what you are concern about. You can always revert it back to the previous settings if the results of the changes are not what you are expecting.

    An example of how to do this can be found here.

    Would you mind providing the actual link?

    Best regards,
    Ismael

    in reply to: How to remove product description from Product List #1301534

    Hi,

    The css code above is not working for the first catalogue item because for some reason, it is missing the lip container which exists on other catalogue items. This is the markup of the first item’s content.

    
    <div class="av-catalogue-content">Amazing Spider-Man #304 NM Bagged and Boarded.&nbsp; Shipped with care to protect from damage.&nbsp; I pack them in a box with bubble wrap. &nbsp; &nbsp;<strong class="avia-catalogue-add-to-cart">
    [Show Details]</strong></div>
    

    And this is the markup of the catalogue items with the h4 tag with the class name lip.

    
    <div class="av-catalogue-content">
    <h4 class="lip">Amazing Spider-Man #305 NM</h4>
    <h4 class="lip"></h4>
    <strong class="avia-catalogue-add-to-cart">
    [Show Details]</strong></div>
    

    Did you add the h4 element manually?

    Best regards,
    Ismael

    in reply to: Increase post number per page for Portfolio Grid #1301533

    Hey jenhames,

    Thank you for the inquiry.

    This is possible but you have to directly modify the enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php file. Look for this code around line 479 and adjust the value in the number_array function from 100 to 300.

    array(
    							'name' 	=> __( 'Post Number', 'avia_framework' ),
    							'desc' 	=> __( 'How many items should be displayed per page?', 'avia_framework' ),
    							'id' 	=> 'items',
    							'type' 	=> 'select',
    							'std' 	=> '16',
    							'lockable'	=> true,
    							'subtype'	=> AviaHtmlHelper::number_array( 1, 100, 1, array( 'All' => '-1' ) )
    						),
    

    You could also use the avia_post_grid_query filter to define the value of the posts_per_page parameter manually.

    Best regards,
    Ismael

    in reply to: CPT UI + ACF with your theme #1301531

    Hi,

    Would you like to display the custom fields in the single post page (see private field)? If yes, then you have to edit the includes > loop-index.php file and use ACF’s get_field function to get the value of the custom field and render it to the page. For example, in the loop-index.php file, look for this code around line

     // echo the post content
                if ( $blog_style == 'bloglist-excerpt')
    			{
                    the_excerpt();
                    echo '<div class="read-more-link"><a href="' . get_permalink() . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>';
                }
    

    Above that code, add this one.

    
    $publi_revue = get_field( "publi_revue" );
    echo '<div class="av-publi-revue">' . $publi_revue . '</div>';
    

    This should render the value of the Revue field above the post content, inside a container with the class name av-publi-revue.

    Best regards,
    Ismael

    in reply to: Default Font Colors Explained #1301529

    Hi,

    Thank you for the inquiry.

    By default, the caption color is defined in the slideshow.css file and it is initially set to white, but you can adjust it in the Enfold > Advanced Styling panel. Under the Misc section, look for the Slideshow caption element.

    Best regards,
    Ismael

    in reply to: custom post archive #1301528

    Hi,

    it possible to make a taxonomy selected by default so all posts have it automatically?

    You might be referring to the taxonomy terms. This is possible by assigning a default term or category.

    // https://wordpress.com/support/posts/categories/#assigning-default-category

    And regarding the issue with the post slider, you might want to use the get_the_terms function instead so that you can properly create the layout or the markup.

    // https://developer.wordpress.org/reference/functions/get_the_terms/#user-contributed-notes

    Best regards,
    Ismael

    Hey jonhedges,

    Thank you for the inquiry.

    In the home page, the full width slider is still fullwidth, but not in the post. Did you add the slider as shortcode inside the default editor? Please post the login details in the private field so that we could check the issue properly.

    Best regards,
    Ismael

    in reply to: Portefolio items are with odd behaviour #1301449

    Hi!

    – And the multiple
    is still there = the caption to the preview looks very odd

    Looks like you have created a copy of the masonry file. Unfortunately, the theme is using that file instead of the file where you added the modification. We edited the copy of masonry file and implemented the changes. This removes the br tags from the excerpt.

    – When I select Podcasts only one preview is shown but there are two podcasts.

    The other podcast does not show because it is not loaded, yet. You have to load more posts until the other podcast is visible. Again, this is a limitation of the sort button. It can only sort posts that already exist in the page. It cannot dynamically fetch the post from the database and return it in the page if that is what you are expecting. Unfortunately, that is not how the sorting option works.

    – The screen is still freaking flickering when I click Load more

    I am not really sure why that is happening but you can try this css code.

    .avia_loading_icon {
        display: none !important;
    }

    – Two categories are not shown at all: Guidelines and Rapportager And two categories are not shown at all.

    The categories show up when you load more posts.

    Best regards,
    Ismael

    in reply to: Add logo to slide out mobil menu. #1301439

    Hey edster818,

    Thank you for the inquiry.

    The theme creates the mobile menu items dynamically based on the default menu, so you cannot just insert the logo image in a template. But it is still possible with a custom script.

    Please try this snippet in the functions.php file.

    // add logo image inside the mobile menu
    function ava_custom_script_mod_logo_mobile()
    {
    ?>
    	<script>
    		(function($) {
    			$(document).ready(function() {
    				var burger_wrap = $('.av-burger-menu-main a');
    				
    				$(burger_wrap).on('avia_burger_list_created', function() {
    					setTimeout(() => {
    						$("<div class='av-mobile-logo'><img src='IMAGE URL HERE' /></div>").prependTo('#av-burger-menu-ul').addClass("mobile_social_bookmarks");
    					}, 150);	
    				});
    			});
    		})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod_logo_mobile', 10000);
    

    You can then use the av-mobile-logo class name or selector to adjust the style of the logo image.

    .av-mobile-logo { 
       /* add styles here */
    }
    
    .av-mobile-logo img {
      /* add styles here */
    }

    Best regards,
    Ismael

    in reply to: Advanced layout editor not working on new pages #1301433

    Hey SunteamAutomatisering,

    Thank you for the inquiry.

    Looks like this is related to the block editor. Are you using the Gutenberg or the block editor? If not, try to disable it or select the classic editor in the Enfold > Theme Options > Select Your Editor settings. Please toggle or temporarily disable the Enfold > Performance > File Compression settings after selecting the new editor.

    Best regards,
    Ismael

Viewing 30 posts - 13,321 through 13,350 (of 66,033 total)