Forum Replies Created

Viewing 30 posts - 19,381 through 19,410 (of 67,463 total)
  • Author
    Posts
  • in reply to: dynamic_avia making WAY too many calls #1181954

    Hey Illingco,

    Thank you for the inquiry.

    They are the merged scripts and stylesheets. Looks like the server or its configuration is denying access to these files. Unfortunately, we are not sure what’s causing it. Temporarily, you can disable the Performance > File Compression settings to get rid of the issue. If you need to minify the scripts and stylesheets, try to use Autoptimize or BWP Minify instead.

    Best regards,
    Ismael

    in reply to: Colour section behind Layer Slider #1181953

    Hey whdsolutions,

    Thank you for the inquiry

    Yes, it’s possible. Try this code in the Quick CSS field or the style.css file.

    .page-id-14 #av_section_1 {
        margin-top: -45px;
    }
    
    .page-id-14 #layer_slider_1 {
        background-color: transparent !important;
    }

    Best regards,
    Ismael

    Hey killyman,

    Thank you for the inquiry.

    Have you tried using the body_class filter to adjust or alter the class attribute/s of the body tag? This should allow you to inject unique value to the class attributes based on certain conditions and use it to define a different header style.

    // https://developer.wordpress.org/reference/functions/body_class/

    For example, if a page has a specific custom field or meta info, you can add a particular class attribute to the body tag that will alter the header style based on a predefined custom css.

    Best regards,
    Ismael

    Hey gb,

    Thank you for the inquiry.

    I still prefer on mobile devices while having the mobile response option activated?

    Yes, that is possible. Try this code in the Quick CSS field or in the style.css file.

    @media only screen and (max-width: 767px) {
        .responsive #top .av-masonry-col-3 .av-masonry-entry {
    	width: 33.3%;
        }
    }

    Best regards,
    Ismael

    in reply to: full width image uncropped #1181749

    Hi,

    Glad that you found the appropriate settings. Does it meet your requirements?

    why is this not pissible b y using “single picture”?

    What do you mean by single picture?

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Portfiolio issue on mobile #1181748

    Hi,

    Thank you for the info.

    You can adjust the minimum height of the horizontal gallery items with css. Please add this code in the Quick CSS field or the style.css file.

    @media only screen and (max-width: 767px) {
        .responsive .av-horizontal-gallery-inner {
    	position: static;
    	min-height: 389px;
        }
    }

    Best regards,
    Ismael

    in reply to: Geo Location for GDPR? #1181732

    Hey tzujan,

    Thank you for the inquiry.

    This may be possible by editing the includes > helper-privacy.php file > handler_wp_footer_cookie_consent_bar function. This function is responsible for rendering the cookie consent bar, so you can add a logic inside it that checks if the user is from EU.

    Best regards,
    Ismael

    in reply to: Grosse Tabelle einfügen #1181729

    Hi,

    Ich habe die Tabelle mit dem ALB erstellt. Aber ich weiß nicht wie ich dort schnell weitere 100 Zeilen z.B. aus einer Excel Tabelle hinein bekomme.

    This is not possible, unfortunately. You will have to edit the cells/column of the table and add the content manually.

    Enabling the debug mode might help speed things up a bit because you will be able to edit the shortcodes directly instead of using the table editor.

    [av_table purpose='pricing' pricing_table_design='avia_pricing_default' pricing_hidden_cells='' caption='' responsive_styling='avia_responsive_table' id='' custom_class='' av_uid='']
    [av_row row_style=''][av_cell col_style='']Test First Column First Row[/av_cell][av_cell col_style='']Test Second Column First Row[/av_cell][av_cell col_style='']Test Third Column First Row[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']Test First Column Second Row[/av_cell][av_cell col_style='']Another Content[/av_cell][av_cell col_style='']Another Content[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']Another Content[/av_cell][av_cell col_style='']Another Content[/av_cell][av_cell col_style='']Another Content[/av_cell][/av_row]
    [/av_table]
    

    Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Portfolio Entry with external link #1181725

    Hi,

    We updated the script a bit so that it checks if the value of the href attribute contains the domain name. Please try it again.

    function ava_add_custom_port_target(){
    	?>
    	<script>
    	jQuery(window).load(function(){
    		jQuery('.grid-entry').each(function() {
    			var entry = jQuery(this).find('.inner-entry a');
    			var link = entry.attr('href');
    
    			if(link.indexOf(window.location.host) == -1) {
    				entry.attr('target','_blank');
    			}
    		})	
    	});
    	</script>
    	<?php
    	}
    add_action('wp_footer', 'ava_add_custom_port_target');
    

    Best regards,
    Ismael

    in reply to: Big Gallery Image background not transparent #1181721

    Hi,

    Sorry for the delay. The site is no longer using the Enfold theme, and the background of the big image in the gallery is now transparent. Did you switch to a different theme?

    Best regards,
    Ismael

    in reply to: Blog layout not working as expected #1181720

    Hey Daniel,

    Thank you for the inquiry.

    1.) Did you use the advance layout builder to create the content of the posts? If yes, then you have to define the excerpt or summary of the posts manually. You can enable the Excerpt box in the post editor’s Screen Options panel.

    2.) Have you tried adjusting the Enfold > Blog Layout > Blog Style settings. The Default (Business) option should place the date or post meta info below the title. If you don’t like the result, try this script instead.

    // https://kriesi.at/support/topic/move-date-below-blog-title-using-blog-posts-content-element/#post-1170884

    Best regards,
    Ismael

    in reply to: Anchor links jump lower in pages and behaving strange #1181716

    Hey Hotelsolutions,

    Thank you for the inquiry.

    We were able to reproduce the issue on initial load, but then it started to work correctly on our next attempts. It’s possible that the elements above are not fully loaded yet causing miscalculations to the anchor position. Please try to install cache plugins, minify the scripts and stylesheets or try to optimize the site in general specially the images so that the site will load faster. The following article should help.

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

    Best regards,
    Ismael

    Hey Pivou,

    Thank you for the inquiry.

    Is there a way to hide “title and excerpt” for tablet and smartphone, too ?

    It is possible but there is no hover state on mobile devices, so the title and excerpt will no longer display. If you want to proceed, use this css code.

    @media only screen and (max-width: 767px) {
       .av-masonry-entry-content {
    	display: none !important;
       }
    }
    

    Best regards,
    Ismael

    in reply to: add (floating) button to header area #1181710

    Hi,

    Thank you for the info.

    The Jetzt Spenden button is still visible on mobile view, but its position looks a bit off. Please add this css code to adjust its position in the header.

    @media only screen and (max-width: 767px) {
        #header .widget {
    	left: 180px;
    	top: -30px;
    	position: absolute;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Add background to full width section #1181674

    Hi,

    Can you give us a link to the original source code? Where did you get the internal style?

    We tried to fix the particleJS function but the specified parameters seems to be invalid, or there’s something missing from it. Did you edit it manually?

    Best regards,
    Ismael

    in reply to: Show /category/ and /tag/ base URL #1181664

    Hi,

    Sorry for the confusion. Above, you mentioned that you tried to apply this same fix, but it just didn’t work.

    But not in our WordPress. I then entered “category” and “tag” manually under Settings > Permalink for the taxonomies. But still the URLs are not displayed correctly. Can you explain why?
    

    If you don’t want to retain the changes, please remove the %category% placeholder from the permalink field. This change will not affect your site immediately unless you ask search engines like Google to re-index the site or the bots crawled the site right after we made the changes, which is very unlikely. This process usually takes weeks even months.

    We’ll forward the thread to moderators who speaks German. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Error during create a new post #1181661

    Hi,

    Thank you for the update.

    You should check the functions.php file in the child theme directory.

    We found the following thread that has the same issue as this one and it seems to be related to a plugin.

    // https://kriesi.at/support/topic/fatal-error-displayed-using-geodirectory-plugin/#post-996778

    This is the fix provided by the plugin authors.

    // https://wpgeodirectory.com/support/topic/listing-description-not-visible-after-saving/page/2/#post-420413

    Have you tried selecting a different editor in the theme options?

    Best regards,
    Ismael

    in reply to: Header like rolex.com #1181660

    Hi,

    transparent, and fade up when scrolling down.

    Thank you for the clarification. If that’s all you want, then you can set the page’s Layout > Header visibility and transparency settings to the second option (Transparent Header). The header will be transparent on initial load and the background will only start to fadein on page scroll.

    Best regards,
    Ismael

    in reply to: BIG PROBLEM after enfold update! 😳 #1181657

    Hi,

    Thank you for following up.

    Keep the File Compression settings disabled for now. You don’t need to toggle anything else. Let us know if it helps decrease the database logs.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    It is the default layout since. If the featured image is not available, it will fall back to the post icon. If you want to remove it, please use this css code.

    .single-post .small-preview {
       display: none;
    }
    
    .single-post .single-small.with-slider .small-preview {
       display: block;
    }

    Best regards,
    Ismael

    in reply to: Add caption in lightbox under image in masonry gallery #1181655

    Hi,

    No worries. Thank you for the info. :)

    Best regards,
    Ismael

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

    Hi,

    We think it might be best to just skip using the built-in social icons feature/script and instead insert our own HTML code right after the last mobile menu navigation item?

    This is the code that creates the social icon and after appends the created icons to the av-burger-social-container.

    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');
    				});
    

    You can remove all of it and instead create your own html and append it to the av-burger-social-container.

    Example:

    $('<li class="av-custom-social-icon dribbble">Dribbble</li>
     	<li class="av-custom-social-icon facebook">Facebook</li>
    ').appendTo('.av-burger-social-container ul');
    

    You will have to apply the icons manually and adjust the style. Unfortunately, it’s beyond the scope of, support so we won’t be able to help you with it.

    Best regards,
    Ismael

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

    Hi,

    You have to add the code in an external file, or use the following hook to insert it directly in the head tag.

    // https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section
    // https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-footer-section

    Best regards,
    Ismael

    Hi,

    We moved the filter in the child theme’s functions.php file to enable the page attributes box. We also edited the 3d-projects page and set the Order by settings to Page Order and the Display order to Ascending. The items are now sorted based on the value of the Order field.

    Please don’t forget to remove or purge the cache before checking the page.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: LayerSlider Text Background Not Responsive #1181609

    Hi,

    Thank you for the update.

    The reason the min font size doesn’t work as expected is that the property is applied directly to the paragraph/heading tag while the background color is applied to its parent container. What we can do is apply a class attribute to the layer and use it to adjust the font size of the text on mobile view. You can add the css media query in the Quick CSS field or the style.css file.

    Best regards,
    Ismael

    in reply to: Seit Update auf Version 4.7.2 Fehlermeldung #1181608

    Hi,

    The login info seems to be invalid — it doesn’t work. Please check the info carefully or provide another user account. Also, please post the link to the actual page where we can see the error, or provide the necessary steps on how we can reproduce it.

    Thank you for your patience.

    Best regards,
    Ismael

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

    Hi,

    @Jay: Thank you for following up. Please create a new thread/ticket and post the necessary details in the private field so that we can check the issue further. Thank you.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We tried to import the demo a few times but each attempt failed. We always get a service unavailable error — pointing to the admin-ajax.php file, which probably means that the server is timing out during the import. Unfortunately, this is not something we are very familiar with because it relates to server configurations. You should ask your hosting provider to enable the error logs and investigate why the server is timing out during the process.

    If you’d like, you can import the demo manually using the xml files in the theme. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/import-demos/#manual-demo-import–using-xml-files-

    Best regards,
    Ismael

    in reply to: 2 issues after the last update #1181602

    Hi,

    Again, to me it’s always been a native Enfold’s function…

    It’s not a default theme’s function, not even WordPress’, so there’s a custom modification or plugin in your site that enables tags for pages. Please disable the function or plugin.

    Regarding the excerpt, we just mentioned it because it’s really possible especially when the content is created using the advance layout builder.

    Best regards,
    Ismael

    in reply to: Header like rolex.com #1181251

    Hey Carsten,

    Thank you for the inquiry.

    To create a burger menu, you can start by setting Enfold > Header > Menu and Logo Position to Logo right, menu left. Set the Main Menu > General > Menu Items for Desktop to display as icon instead of text. This will convert the main or default menu to a burger menu.

    For the menu items beside the icon or burger menu, use the theme’s secondary menu. You can add a few css to adjust its position until it sits beside the main menu. And add a few more css to center align the logo.

    To create the icons located at the far right of the logo, try to add a widget in the header area. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

Viewing 30 posts - 19,381 through 19,410 (of 67,463 total)