Forum Replies Created

Viewing 30 posts - 18,691 through 18,720 (of 66,728 total)
  • Author
    Posts
  • in reply to: Show /category/ and /tag/ base URL #1181139

    Hi,

    Thank you for the clarification.

    We replaced the permalink with /%category%/%postname%/ to include the first or main category in the post URL. (see private field)

    Best regards,
    Ismael

    in reply to: accessibility: blog posts component #1181135

    Hi,

    Thank you for the update.

    You have to register a new path for the shortcodes in the child theme directory. Please check the documentation below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Create a folder in the child theme called shortcodes, then create a copy of the postslider templates inside it to override the original shortcode.

    Best regards,
    Ismael

    in reply to: Tabbed section rendering issue #1181130

    Hi,

    Sorry for the delay.

    Is there a #trial section in the page? We can’t seem to find it anywhere. Are the buttons supposed to scroll to the section containing the “Free 30-Day Trial” heading? Please try to edit the color section containing the heading and use trial as the section ID.

    Best regards,
    Ismael

    in reply to: Sticky menu bar in footer with icons? #1181128

    Hi,

    Thank you for the update.

    Where can we see the site? Please provide the URL in the private field so that we can see what you have done so far.

    Best regards,
    Ismael

    in reply to: Avia Framework Language switcher is not working #1181126

    Hey rakista80,

    Thank you for the inquiry.

    Looks like you’ve already disabled WP Globus and replace it with the Weglot plugin. Is it working properly now?

    We usually recommend Polylang or W.P.M.L for multilingual sites because they are compatible with the advance layout builder.

    Best regards,
    Ismael

    in reply to: Layerslider not the right one in EN #1181124

    Hey newki75,

    Thank you for the inquiry.

    It’s probably due to the string translation, which is automatically provided by Polylang. You can manually translate the text in the layers without creating another slider. Please check the link in the private field. You should see text or strings like “STRATÉGIE | DISTRIBUTION | BRANDING” and other layer slider content available for translations.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    This should make the last social icons visible on smaller screens.

    .team-img-container {
    	overflow: visible;
    }

    Best regards,
    Ismael

    in reply to: Facebook Pixel Opt-In without external Plugins #1180949

    Hi,

    Thank you for the clarification.

    The theme by default should be able to handle cookies from Google Analytics, but not from Facebook Pixel, although you can add both scripts in the Google Analytics field and the theme will keep them disabled on page load and only enable them once the user consent to the cookies.

    Best regards,
    Ismael

    in reply to: Navigation, BlogPost and Masonry #1180946

    Hi,

    Glad it’s working.

    No, it’s not the update. We just didn’t implement the conditions for the portfolio or event items before.

    Best regards,
    Ismael

    in reply to: Favicon missing on some pages #1180943

    Hi,

    Thank you for the info.

    Is it working properly when you disable the option that’s adding the sizes attribute? We are not really sure which option in the plugin is doing that.

    Best regards,
    Ismael

    in reply to: Problem with Cookie Modal #1180942

    Hi,

    Thank you for the update.

    Another tab opens and closes automatically whenever we toggle the checkbox in the “Statistik mit Matomo” tab. Is that how it’s supposed to work? Is that the iframe ?

    Best regards,
    Ismael

    in reply to: search results (PDF's) not opening in new window or tab #1180939

    Hi,

    Thank you for following up.

    It’s not working properly because the post ID is missing. Sorry about that. We adjusted the code a bit. Please try it again.

    $blank =  in_array(get_post_type($post->ID), array('page', 'post', 'product')) ? '' : 'target="_blank"';
    $output .= "<a class ='av_ajax_search_entry {$extra_class}' {$blank} href='".$link."'>";
    

    Best regards,
    Ismael

    in reply to: H1 heading on tags/category-./author pages #1180927

    Hi,

    Thank you for the examples and the detailed descriptions. :)

    Best regards,
    Ismael

    in reply to: Multiple Image Sizes on Upload #1180923

    Hi,

    Thank you for the update.

    Can we access the WP dashboard and the file server? We would like to check how the images are generated. Please post the WP and FTP account in the private field.

    Best regards,
    Ismael

    in reply to: Loading time of pages with self-hosted videos #1180918

    Hi,

    Thank you for the info.

    The video is starting automatically on page load. Are you sure that the lazy load option is enabled? Please create a new thread and post the login details in the private field. We would like to check the settings.

    Best regards,
    Ismael

    Hi,

    We can’t really reproduce the issue on our end — tried zooming the browser in and out. We also haven’t encountered the same issue so far, so it probably requires a custom fix like the css @Victoria suggested above.

    Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Hamburger menu next to default menu in enfold #1180867

    Hi,

    Thank you for the update.

    We adjusted the script in the functions.php file a bit.

    // add social icons inside the mobile menu
    function ava_custom_script_mod_social(){
    	?>
    	<script>
    	(function($){
    		var int = '';
    		function a() {
    			var isMobile	 = $('.av-burger-menu-main').css('display'),
    				htmlString   = $('.social_bookmarks:first').find('li a'),
    				mobileMenu   = $('.av-burger-overlay'),
    				socialString = [];
    	
    				if($('.av-burger-social-container').length) clearInterval(int);
    			
    				$('<li class="av-active-burger-items av-burger-social-container"><ul></ul></li>').appendTo('#av-burger-menu-ul');
    	
    				htmlString.each(function() {
    					var socialClass	= $(this).parent('li').attr('class'),
    					socialItems = $(this).wrap('<li class="'+ socialClass + ' av-active-burger-items av-burger-social"></li>').parent().unwrap();
    					socialString.push(socialItems);
    				});
    
    				$(socialString).each(function() {
    					$(this).appendTo('.av-burger-social-container ul');
    				});
    		}
    	
    		$('#header').on('mousedown', '.av-main-nav-wrap', function() {
    			int = setInterval(function() {
    				a();
    			}, 500);
    		});
    	
    	})(jQuery);
    	</script>
    	<?php
    	}
    	add_action('wp_footer', 'ava_custom_script_mod_social');
    

    And added this css code in the Quick CSS field.

    #top .social_bookmarks_dribbble a::before {
        content: '';
        font-family: 'entypo-fontello';
    }
    
    #top .social_bookmarks_twitter a::before {
        content: '';
        font-family: 'entypo-fontello';
    }
    
    html_av-overlay-full #top #av-burger-menu-ul .av-burger-social {
        width: 30px;
        right: 0 !important;
        left: auto;
        margin-left: 30px;
        text-align: right;
        display: inline-block;
    }
    
    #top  .av-burger-social-container ul li {
    	text-align: right;
    }
    

    Best regards,
    Ismael

    in reply to: Sorting Masonry Gallery Items Incorrectly After "Load More" #1180849

    Hi,

    You don’t have to add that code specifically. You have to use the register_post_type_args filter to change the default arguments of the post or portfolio post types and enable the page attributes.

    Example: https://developer.wordpress.org/reference/hooks/register_post_type_args/#user-contributed-notes

    
    function avf_register_post_type_args($args, $post_type){
    
        if ($post_type == 'portfolio' || $post_type == 'post'){
            $args['supports'] = 'page-attributes';
        }
    
        return $args;
    }
    add_filter('register_post_type_args', 'avf_register_post_type_args', 10, 2);
    

    This will enable the Page Attributes meta box for portfolio and post items.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We set the line height property of the text block to 1.2em.

        #av_section_1 .avia_textblock.av-small-font-size-32 p {
            text-align: center;
            font-size: 54px;
            line-height: 1.2em;
        }
    

    This is how the text looks now.

    Screenshot: https://imgur.com/a/ZWpbKjq

    Best regards,
    Ismael

    in reply to: How to parallax an element through quick CSS? #1180844

    Hi,

    The site is not using the Enfold theme. Anyway, he added the parallax script in the custom.js file. (see private field)

    This is the script:

    $(window).bind('scroll', function () {
        $('.parallax').each(function () {
            var $$ = $(this);
            offset = $$.offset();
            windowTop = $(window).scrollTop();
            var ajuste = (($$.height() - $$.parent('div').height()) / 2); ///50 h menu
            var newCoord = ((offset.top - windowTop) * 0.25) - ajuste;
            $$.css({
                'transform': 'translateY( ' + (newCoord) + 'px)'
            });
        });
    });
    

    The image tag’s class attribute should contain a value called parallax.

    Example:

    <img src="https://site.com/img/pages/helmet.png" alt="" class="itembackground parallax">
    

    Best regards,
    Ismael

    Hi,

    The default size in the lightbox without adding the modification above seems to be quite enough to exhibit the quality of the images (see link below).

    // https://imgur.com/a/xVkZKrn

    Please note that the css code above will not actually enlarge the image — it will only stretch it, but the actual dimension of the image will stay the same. If you want to change the default size of the lightbox thumbnail, go to the Settings > Media panel and adjust the dimension of the Large thumbnail. You’ll have to regenerate the images afterwards (https://wordpress.org/plugins/regenerate-thumbnails/), or upload them again.

    Best regards,
    Ismael

    in reply to: Navigation, BlogPost and Masonry #1180790

    Hi,

    Welcome back!

    We adjusted the above filter a bit. The Events menu item should be highlighted or activated when a single portfolio entry is viewed.

    Best regards,
    Ismael

    in reply to: Google Analytics not tracking after Enfold theme update #1180788

    Hi,

    @Jay: Thank you for the update. Which option did you select in the Default Cookie Behavior settings? If it’s set to the second or third option, Google Analytics will not work automatically unless the users accepted the cookies. You should set it to the first option. Please create your thread/ticket and post the necessary details in the private field so that we can check the site further.

    Best regards,
    Ismael

    in reply to: Problems with the Enfold Update #1180786

    Hi,

    Thank you for the update.

    We managed to access the raidbox account and it looked like an SFTP account has already been created for the vervoorts site, but the login info is not displaying for the account that we used or the one that is provided above.

    We got access to the file server, but the current account doesn’t have any write permissions, so we couldn’t edit the files. Please ask the raidboxes support to help you generate a new account with the correct read/write permissions.

    // https://imgur.com/a/z2fp0mY

    If you want to enable the Appearance > Editor panel, edit the wp-config.php file and set the DISALLOW_FILE_EDIT constant to false.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you remove the theme from the kdg2 site? We couldn’t find it in the themes panel. Please upload and activate the theme so that we can check the issue. Or provide a user account for the kdg1 site.

    The Enfold version I am installing is the top left one on the list!

    What do you mean?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    However it does not blend in nicely with the overall design and needs serious tweaking via CSS on multiple levels which I gave up.

    This is why the theme has its own flag switcher. Unfortunately, that is the only way to add the default switcher and the style has to be adjusted manually.

    Have you tried to adjust the position of the language switcher from the main menu? You can probably set the position to absolute, then adjust the top and right property manually until it’s positioned beside the social icons.

    Best regards,
    Ismael

    in reply to: Avia Folder 777 #1180773

    Hi,

    Sorry for the delay. You have to insert the whole function in the functions.php file. It will set the folder permission to 0755 instead of the default 0777.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It’s going to use the default or base styling for the heading tags (h1, h2, h3 etc) and the caption or paragraph tags. You can adjust those elements in the Enfold > Advanced Styling panel or in the Enfold > General Styling > Fonts panel.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    We copied the slider from your site to our own installation, but we couldn’t reproduce the same issue, so this is more likely related to the server. Please ask your hosting provider to increase the post_max_size from 20M to 50M.

    To control the video size, try to adjust the Styling > Slideshow Settings > Slideshow Image and Video Size settings.

    Best regards,
    Ismaelw

    in reply to: billing with pay pal #1180762

    Hi,

    Yes, you should try the plugin and remove any shipping rules in your paypal account if there’s any. Let us know if the plugin helps.

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 30 posts - 18,691 through 18,720 (of 66,728 total)