Forum Replies Created

Viewing 30 posts - 16,201 through 16,230 (of 66,850 total)
  • Author
    Posts
  • in reply to: Slides von links nach rechts in Slide-Show #1256987

    Hi,

    Thank you for the info.

    That is how the sliders animate by default. The item starts from the left, then slides to the right. If you need to create a custom animation, please try to use the Layer Slider.

    Best regards,
    Ismael

    in reply to: content element does not work with web links #1256986

    Hi,

    Thank you for following up.

    We edited the css code a bit and added the !important rule to place more priority to it so that it overrides the default style. We also deactivated the cache plugin temporarily. Before checking the page, please do not forget to do a hard refresh or remove the cache.

    Best regards,
    Ismael

    in reply to: How to check which theme files are being used #1256985

    Hi,

    Thank you for the update.

    Would you mind sharing the login details of the site? We would like to access the dashboard and check the page. Please post the login info in the private field.

    Best regards,
    Ismael

    Hey caweint,

    Thank you for the inquiry.

    Did you enable the css and js file compression settings? These settings will override the “Load only used elements” option, so the theme will still load all assets including files for the elements that are not actually added in the site. This is to make sure that compressed files contain all assets from all elements regardless of the page or of the elements that are actually present in the page.

    Best regards,
    Ismael

    in reply to: Remove gallery navigation from lightbox #1256981

    Hey emilconsor,

    Thank you for the inquiry.

    By default, the lightbox script will include all images in the page unless they are specifically grouped into sets. What we could do is disable the lightbox arrows or navigation with css to prevent the users from switching from one image to another.

    Please add this css code in the Quick CSS field or the child theme’ style.css file.

    .single button.mfp-arrow {
    	display: none !important;
    }

    Best regards,
    Ismael

    in reply to: H3 Tag in footer #1256980

    Hi,

    Thank you for the update.

    This should be possible but we have to directly edit the enfold\includes\helper-privacy.php file. The heading element can be found around line 1847:

    $sc_content .= "[av_heading tag='h3' padding='10' heading='{$heading}' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='10px,0,0,0'][/av_heading]";
    

    Replace the value of the tag attribute or parameter.

    Best regards,
    Ismael

    in reply to: Masonry Gallery not loading properly #1256978

    Hi,

    @Vasilis: Thank you for that info. Glad to know the plugin update helped in fixing the issue.


    @manzo
    : Sorry for the confusion. How many images in total did you add in one page? You might want to consider moving the images on separate pages to optimize the loading speed of each page instead of stacking all images in a single page. But if this is really necessary, please try to use the following snippet in the functions.php file to force the window to resize, which should cause the gallery items to reposition while the page is loading.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('debouncedresize resize');
    	}, 1000);
    	
    	$(window).load(function () {	
    		setTimeout(function() {
    			clearInterval(int);
    		}, 5000);
    	});
    })(jQuery);
    </script>
    <?php
    }
    

    Best regards,
    Ismael

    in reply to: Shortcode in page #1256977

    Hi,

    Yes, we can see that the page layout is broken but there are no errors or warnings that might lead us to the actual cause of the issue. What is the current version of the theme? Please try to upgrade it to version 4.7.6.5, then post the login details in the private field so that we could check the issue further.

    Additional info from the plugin developers will help.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Enold Ipad issue #1256976

    Hi,

    Thank you for the info.

    It is it now working because the following css code overrides the other.

    .woow1 {
    	margin-bottom: 20px;
    	width: 50% !important;
    	display: inline-grid !important;
    }
    

    Please try to add the !important rule in the width property or move the css code that we suggested below the one above.

    Best regards,
    Ismael

    in reply to: Payment Issues #1256975

    Hey RMConnection,

    Thank you for the inquiry.

    Are you using another extension or plugin for the Stripe payment gateway? Sometimes when we add a product to the cart, we get an error or an alert box saying “Stripe payment is not defined”, which might be related to the issue. And when we try to checkout, Stripe is not available as an option. Did you disable the Stripe plugin?

    You may need to contact the plugin developers for additional assistance.

    Best regards,
    Ismael

    Hi,

    Might it be a caching issue? Does it work correctly when the cache plugin is disabled? Just to be safe, you might have to temporarily disable the Load only used elements option until we find the actual cause of the issue. Is there a staging or development version of the site?

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Layer Slider not reponsive #1256643

    Hey Underkult,

    Thank you for the inquiry.

    Did you apply the images as the slide’s background? If so, then you might need to set the Slide Background Image > Size settings to Cover to force the image to cover the entire slider area.

    Best regards,
    Ismael

    in reply to: Do you support a slider that… #1256642

    Hey Benjamin Taub,

    Thank you for your interest in the theme.

    Would you like a slider that rotates one at a time? If so, then you could use the Full Width or Full Screen Slider elements or you could also use the third party extension Layer Slider which is also included in the theme. You will find some of the the slider demo below.

    // https://kriesi.at/themes/enfold-2017/
    // https://kriesi.at/themes/enfold/

    Best regards,
    Ismael

    in reply to: Icon Grid backside links #1256640

    Hi,

    Thank you for the info. This seems to be related to the following thread.

    // https://kriesi.at/support/topic/content-element-does-not-work-with-web-links/#post-1255388

    The issue is cause by the pseudo container’s stack order as you observed.

    Best regards,
    Ismael

    in reply to: ReCaptcha disappears when checked #1256637

    Hi,

    Thank you for the inquiry.

    The Google ReCAPTCHA option does not work on initial load because the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior is set to the third option. This blocks the recaptcha script and only loads it when the user accepted the cookies. If you want it to work automatically on page load without user content, the Default Cookie Behavior has to be set to the first or second option.

    Best regards,
    Ismael

    in reply to: Enfold remove Yoast woocommerce footer schema graph #1256617

    Hi,

    @SurigliaStudio: Please open a new thread and post the necessary details in the private field so that we could check the site. We will close this one for now. And make sure to update the theme to the latest version, v4.7.6.5.

    Best regards,
    Ismael

    in reply to: lag in ajax portfolio preview #1256616

    Hi,

    Thank you for the update.

    We are not yet sure why the portfolio preview does not respond immediately. Is there a staging or development version of the site? Can we deactivate the plugins temporarily while checking the site?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The Featured Image option is now available inside the Layout box under the Header visibility and transparency. It is no longer a checkbox.

    Best regards,
    Ismael

    Hey bcndisseny,

    Thank you for the inquiry.

    We are a bit confuse about the inquiry. Could you maybe explain a bit further? By default, you could only use the Add Preview Text editor to add the content to the preview sidebar but it is also possible to insert elements from the builder by using the Insert Theme Shortcode button in the Visual mode of the editor. It is the wand-like icon with the sky blue highlight. Hope that helps.

    Best regards,
    Ismael

    in reply to: Custom Menu #1256577

    Hey bewelltended,

    Thank you for the inquiry.

    You should be able to add the strap image as the background of the menu container or as a separate element beside the logo. In the previous site, the strap is attached to the logo and the html looks like this.

    
    <div id="logo-area">
           <a href="https://thestrapsaver.com">
               <img class="trueleft col12 logo-top" src="https://www.thestrapsaver.com/wp-content/uploads/logo960.png" alt="The Strap Saver Logo"></a></div>
    

    The hover effect is done using css.

    nav #menu1 li:hover {
    	--height: 73px;
    }
    
    #menu1 a:hover, #menu1-smooth a:hover, #menu1 .active a, #menu1-smooth .active a {
    	background-color: #ed1d84;
    }
    
    #menu1 li:hover .li-spacer-white, #menu1 li.active .li-spacer-white {
    	display: block;
    	height: 4px;
    	background-color: #fff;
    }
    

    The li-spacer-white container does not exist in the theme’s default menu but you might be able to recreate it by applying a top margin above the menu item on hover.

    Best regards,
    Ismael

    in reply to: Google Recaptacha error #1256575

    Hi,

    Thank you for the update. Please let us know if you manage to reproduce the issue on the staging site or if it continues to be a problem in the live site. We will keep the thread open.

    Best regards,
    Ismael

    in reply to: TTF tot WOFF #1256550

    Hi,

    Thank you for the inquiry.

    The custom font manager follows certain rules when uploading a new font, which depends a lot on the information in the zip and files inside that zip file, so changing the file structure or creating your own from scratch may cause the font uploader to fail.

    Have you tried using the @font-face rule instead?

    // https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    Hey webWahine,

    Thank you for the inquiry.

    Have you tried using css media queries instead of targeting the element using a unique class name, or instead of using multiple sliders?

    // https://www.w3schools.com/css/css_rwd_mediaqueries.asp

    It might not be working because the css code for both mobile and desktop has the important rule and the code that is intended for mobile view might be overriding the other because the selector that is used is more specific. Please take note of the css selector specificity.

    // https://www.w3schools.com/css/css_specificity.asp

    Best regards,
    Ismael

    in reply to: How to deactivate default entypo-fontello iconfont? #1256547

    Hey NadineSchenkl,

    Thank you for the inquiry.

    That should be possible but the theme has its own unique character map which might not work with the default font files, so we do not recommend doing this. You could always use the Enfold > Import/Export > Iconfont Manager to add extra font icons when necessary. But if you want to still continue, please use the avf_default_iconfont filter in the functions.php file to change the default font asset path. Default path is config-templatebuilder\avia-template-builder\assets\fonts.

    AviaBuilder::$default_iconfont = apply_filters( 'avf_default_iconfont', 
    																array( 'entypo-fontello' => 
    																			array(
    																				'append'	=> '',
    																				'include' 	=> $this->paths['assetsPath'] . 'fonts',
    																				'folder'  	=> $this->paths['assetsURL'] . 'fonts',
    																				'config'	=> 'charmap.php',
    																				'compat'	=> 'charmap-compat.php', //needed to make the theme compatible with the old version of the font
    																				'full_path'	=> 'true' //tells the script to not prepend the wp_upload dir path to these urls
    																			)
    																		)
    														);
    

    Best regards,
    Ismael

    in reply to: Mobile Hamburger Menu #1256546

    Hi,

    “It can be better to even hide the gallery on mobile and add some slider.”… ow that would be an idea if above is not possible… how do I do this?

    You could toggle the elements’ visibility in the Screen Options tab and control whether they should display or not in a certain screen size. Using this you could hide the gallery on mobile view and display a slider instead.

    Best regards,
    Ismael

    in reply to: Custom CSS for tabs not working #1256545

    Hi,

    Sorry for the delay. You may need to set the tab sections to have their height calculated based on the actual content inside to remove the unwanted spaces around the section container. By default, all sections will inherit the height of the tallest section.

    Best regards,
    Ismael

    in reply to: Proven Expert #1255974

    Hi,

    Sorry for the delay. Where did you add the code or snippet? You should be able to add it using the Text or Code Block element in the Advance Layout Builder. Have you tried that?

    Best regards,
    Ismael

    in reply to: Masonry Element Sizing #1255973

    Hi,

    Thank you for the update.

    The grid like element from the other site should be possible with the masonry gallery but you might have to control the width or height of each grid items manually using css because by default, the items are set to automatically respond to the size of the parent container or the view port.

    Where can we check the page with the masonry gallery?

    Best regards,
    Ismael

    in reply to: Editor can not view page lay out #1255969

    Hi,

    Sorry for the late response. Did you remove the editor account that we asked previously? It seems to be not working anymore. Please activate the account again, or create another account with the editor role so that we could check the issue properly. (see private field)

    Best regards,
    Ismael

    in reply to: Internet Explorer cannot display the webpage #1255967

    Hey Portfolio,

    Thank you for the inquiry.

    What is the actual version of IE in their computers? It is possible that the IE browser in Windows XP is no longer compatible with the theme because Microsoft already ended their support for this OS and probably everything within it back in 2014.

    // https://www.microsoft.com/en-us/microsoft-365/windows/end-of-windows-xp-support

    Best regards,
    Ismael

Viewing 30 posts - 16,201 through 16,230 (of 66,850 total)