Forum Replies Created

Viewing 30 posts - 23,011 through 23,040 (of 62,394 total)
  • Author
    Posts
  • in reply to: same height slider #990122

    Hey Evedd,

    Thank you for using Enfold.

    The Horizontal Gallery element is almost the same as that slider aside from the navigation. Have you tried it?

    Best regards,
    Ismael

    Hey newki75,

    Thank you for using Enfold.

    You can use the “avf_logo” to adjust the value or src of the default logo based on the current language.

    Example:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo){
       $lang = pll_current_language('locale');
       if ($lang == 'fr_FR') 
       {
            $logo = "LOGO URL FOR FRENCH LANGUAGE HERE";
       }
        return $logo;
    }

    For the phone, this thread might help.

    // https://kriesi.at/support/topic/header-phone-translation-white-on-header-of-mobile/#post-987863

    Best regards,
    Ismael

    in reply to: Color Section Video Background Alignment #990118

    Hey npmcgrew,

    Thank you for using Enfold.

    This css code should adjust the default top position of the video iframe inside the color section.

    #video-background iframe {
        top: -50px !important;
    }

    Best regards,
    Ismael

    in reply to: Problems with add to cart & variable products #990113

    Hey Javi,

    Thank you for using Enfold.

    I would like to access the site but then encountered an error. Are you working on the site?
    Please let us know once the site is up so that we can check it.
    A link to the actual product with the issue will help.

    Best regards,
    Ismael

    in reply to: Enfold Video-Widget does not work #990110

    Hi,

    Thanks for the update.

    That is a default WP widget. Is it working properly when you deactivate the theme’s Performance > CSS/JS compression options?
    You can add the theme’s video shortcode or element inside a text widget as an alternative.

    Best regards,
    Ismael

    in reply to: layout of category page #990106

    Hey capuchin,

    Thank you for using Enfold.

    Did you disable the Enfold > Sidebar > Sidebar on Archive Pages option? Please enable it back.

    Best regards,
    Ismael

    in reply to: Show excert in all post for magazine element #990104

    Hi,

    The editor is still not accessible. Please enable it or provide the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Masonry item after click load more image is gone #990103

    Hey decode,

    Thank you for using Enfold.

    There’s a lot of line break tags in the entry content.

    
    <div class="av-masonry-entry-content entry-content" itemprop="text">2017年3月2日
    < br >
    < br >
    < br >
    < br >
    < br >
    < br >
    < br >
    < br >
    < br >
    …</div>
    

    Did you add those?

    Best regards,
    Ismael

    in reply to: Change logo in sticky header #990102

    Hey MCLdesign2010,

    Thank you for using Enfold.

    This script should help you with that. Just adjust the var src value to the second logo image.

    add_action('wp_footer', 'ava_toggle_logo_on_scroll');
    function ava_toggle_logo_on_scroll(){
    	?>
    	<script type="text/javascript">
    		(function($) {
    			$(document).ready(function() {
    				var src = 'SECOND LOGO IMAGE URL HERE';
    				var logo = $('.logo a');
    				var img = logo.find('img');
    				
    				img.clone().appendTo(logo).addClass('second-logo');
    				
    				var sec = $('.second-logo');
    				sec.attr('src', src);
    
    				function avia_scroll_change_logo()
    				{
    					set_status = function()
    					{
    						var st = $(window).scrollTop();
    
    						if(st < 100)
    						{
    							img.show();
    							sec.hide();
    							img.addClass('logo-showing');	
    						}
    						else if(img.is('.logo-showing')) 
    						{
    							sec.show();	
    							img.hide();
    						}
    					};
    
    					$(window).on( 'scroll',  function(){ window.requestAnimationFrame( set_status )} );
    					set_status();
    				}
    
    				avia_scroll_change_logo();
    			});
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    Hey tixxpff,

    Thank you for using Enfold.

    There’s an article in our archive page that is related to optimization, which might help. It was specifically created to guide users on how to optimize the theme and have the site score higher on the speed test.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: do_shortcode issue on visual builder #990098

    Hi,

    Where did you add the code? Did you create a new template file and add the code there? Please provide a link to the product page.

    Best regards,
    Ismael

    in reply to: LayerSlider – text pinned to right side. #990097

    Hi,

    Where we can see the slider? Please provide a link to the page and place the login credentials inside the private field. We would like to check it.

    Best regards,
    Ismael

    in reply to: masonry does not insert photos in the right order #990096

    Hi,

    The “flexible” option will display the images using the their original orientation and aspect ratio while the “perfect grid” option resizes and cropped the images so it creates a consistent grid regardless of the images’ size and ratio. So if you want to have a perfect grid while the “flexible” option is set, you have to use images with the same size and orientation.

    Best regards,
    Ismael

    in reply to: New Header Icon not Working #990093

    Hi,

    Alright. Please post the login details in the private field. We may need to adjust the font and icon parameter value.

    Best regards,
    Ismael

    in reply to: Link animation to anchor point #990091

    Hi,

    Awesome! 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: Blog post entry gallery #990090

    Hi,

    Thanks for the screenshot.

    Are you using the default WP gallery? Please use the theme’s Media Element > Gallery element or shortcode instead. Set the “Gallery Style” to “Big image with thumbnails below”.

    Best regards,
    Ismael

    Hi,

    Adjust the duration. It’s currently set to “3s”.

    -webkit-animation: avia_appear_fade 3s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation: avia_appear_fade 3s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    

    Best regards,
    Ismael

    in reply to: Can Main Menu be replaced by Burger on Scroll? #990086

    Hi,

    We adjust the script a bit. The mobile menu items display properly now.

    Best regards,
    Ismael

    in reply to: Add menu order to portfolio item #990085

    Hi,

    Added the function – thanks! but still not sorting as expected.

    Did you adjust the value of the page attributes > “order” field for each portfolio items?

    Best regards,
    Ismael

    in reply to: Adding Search to the Header Secondary Menu #990084

    Hey!

    Thanks for the update.

    There’s a few syntax errors in the code. I adjusted it a bit. Please try it again. :)

    Best regards,
    Ismael

    Hi,

    There are special characters (¿) in the paragraphs. Remove those first or replace them with something different and then try to add it again in the page.

    Best regards,
    Ismael

    in reply to: How to make videos responsive? #990081

    Hi,

    That was actually intended. Remove the “.page-id-IDHERE” selector from the script to make it work for every page.

    Best regards,
    Ismael

    in reply to: Search function in/on mobile menu #990080

    Hi,

    Create a backup of the site or a restore point first, just in case something went wrong.
    Edit the functions.php file from the Appearance > Editor panel and then copy the modifications or filters directly from this forum.
    Let us know if you need more help.

    Best regards,
    Ismael

    in reply to: Breadcrumb – Replace Sample Page #990079

    Hi,

    Thanks for the update.

    1.) Add this css code instead of changing the header option.

    .single .title_container .main-title {
       display: none;
    }

    2.) Where did you add the code? It should be added on the functions.php file. Please provide the login details in the private field so that we could test the filter.

    Best regards,
    Ismael

    Hi,

    Where are those pages again? I’m sorry but I don’t know their respective IDs. Please provide the actual links to these pages.

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    I’m currently on another thread with exact same issue as this one. Please delete the “dynamic_avia” folder and then look for the “aviaAsset_avia-merged-styles” and “aviaAsset_avia-head-scripts” entries in your database. It’s in the “_options” table. Delete those entries and then toggle the theme options again to regenerate the merged scripts and stylesheets. Let us know if it helps.

    Related thread: https://kriesi.at/support/topic/performance-compression-not-working/#post-990073

    Temporarily, you can install the Autoptimize or the BWP Minify plugin to compress the scripts and stylesheets while we debug the issue.

    Best regards,
    Ismael

    in reply to: performance compression not working #990073

    Hi,

    i can help you, but for me the question is: where enfold told wordpress to use the compressed and merged files instead of the normal?

    It’s in the config-templatebuilder > avia-template-builder > asset-manager.class.php > “try_minifying_scripts” function. It fails to generate the merged file. You can use the Autoptimize or the BWP Minify plugins temporarily while we debug the issue.

    In the database > _options table, please search for and delete the “aviaAsset_avia-merged-styles” and “aviaAsset_avia-head-scripts” entries. Toggle the theme options again to regenerate the merged scripts and stylesheets. Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Visualization of the articles, portfolio and gallery #990069

    Hi,

    You’re welcome! That css will set the width of the masonry items to 100%, so it prevents the items from creating the specified columns. You should remove that. Please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Page elements still not loading after upgrade to 4.4.1 #989635

    Hi,

    Sorry for the late response. A script on a code block creates a script error causing the theme’s native scripts to fail. We removed the script temporarily.

    <script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">require(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us6.list-manage.com","uuid":"6600b613be1a3973cc6e733c3","lid":"df24608fa3"}) })</script>
    

    I’m not sure why it creates the error though. Please contact the script or plugin authors.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The css codes have been replaced with this one.

    /* fade in of caption front page */
    .avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title, .avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content {
        visibility: visible;
        -webkit-animation: avia_appear_fade 3s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
        animation: avia_appear_fade 3s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    }
    
    @-webkit-keyframes avia_appear_fade {
      0%   { opacity: 0.1;  }
      100% { opacity: 1; }
    }
    @keyframes avia_appear_fade {
      0%   { opacity: 0.1;  }
      100% { opacity: 1;  }
    }
    

    Remove the browser cache prior to checking the page.

    Best regards,
    Ismael

Viewing 30 posts - 23,011 through 23,040 (of 62,394 total)