Forum Replies Created

Viewing 30 posts - 23,791 through 23,820 (of 67,155 total)
  • Author
    Posts
  • in reply to: font import via theme #1083345

    Hi,

    Yes, the fonts should be usable but you have to select the font in the Enfold > General Styling > Fonts panel. Did you set the fonts?

    Best regards,
    Ismael

    in reply to: Blog posts next to each other #1083344

    Hi,

    Thanks for the update.

    Edit the blog posts element and set the “Blog Style” to “Grid Layout”.

    Best regards,
    Ismael

    in reply to: Icon List #1083343

    Hi,

    Thanks for the update. Try setting a minimum height to the icon list container.

    .avia-icon-list article.article-icon-entry {
        min-height: 200px;
    }

    Use css media queries to adjust the minimum height value on different screen sizes.

    Best regards,
    Ismael

    in reply to: Revision History is not available #1083340

    Hi,

    Good to hear. Thanks for the info. Please don’t hesitate to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Menu Navigation #1083339

    Hi,

    The spaces are created due to the elements’ padding. You have to turn on the custom css class field so that you can target the elements specifically and adjust the padding value on mobile view.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    This is not possible, unfortunately. The product filters or widgets are limited to the default or base shop page. It’s not going to work for the product grid or any other elements outside the default Woocommerce template.

    Best regards,
    Ismael

    in reply to: information abiout masonry #1083334

    Hi,

    The site is using a different theme. Is that the old site? Please provide a link to the actual page with the issue.

    Best regards,
    Ismael

    Hi,

    We can’t reproduce the issue on our end. This is what we get on iPad view.

    // https://imgur.com/a/AxOmKRo

    Best regards,
    Ismael

    in reply to: Weird page loading behavior #1082991

    Hey kilimats,

    Thank you for using Enfold.

    We are not really sure why it’s happening. There are no redirects or page refresh when we check the network activity in the browser inspector tool. Did you add any custom scripts to the theme? Have you tried checking it while the plugins are disabled?

    Best regards,
    Ismael

    in reply to: Home page contents disappear when updating/publishing. #1082990

    Hi,

    Thanks for the update.

    1.) Make sure that there are no unclosed html tags in the page. These tags if left unclosed can cause the builder to erase the subsequent content.

    2.) Set the Enfold > Theme Options > Select Your Editor to “Classic Editor” instead of the new block editor. And disable the plugins temporarily.

    Best regards,
    Ismael

    in reply to: Changing h2 to normal formatting in last post feed #1082989

    Hi,

    Thanks for the update.

    You can use this filter in the functions.php file to adjust the markup of the title.

    
    remove_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 );
    add_filter( 'post-format-standard', 'avia_default_title_filter_mod', 10, 1 );
    
    function avia_default_title_filter_mod($current_post)
    	{
    		if(!empty($current_post['title']))
    		{
    			$heading = is_singular() ? "h1" : "h2";
    
    			$output  = "";
    			//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    			$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    			$output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</a>";
    			$output .= "</{$heading}>";
    
    			$current_post['title'] = $output;
    		}
    
    		return $current_post;
    	}

    Adjust this line:

    $heading = is_singular() ? "h1" : "h2";
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Are you adding any html code in that page? Make sure that you’re closing the html tags properly because unclosed tags could break the layout of the page. Please check the login credentials above because they seem to be invalid.

    Best regards,
    Ismael

    in reply to: Videos Break Ongoingly #1082986

    Hi,

    The videos should work fine even without the “https” or “http” at the start of the url. It is going to be automatically prepended based on the protocol the site is loaded, so if the site loads over “https”, those youtube videos will load over the same protocol.

    Best regards,
    Ismael

    in reply to: Tab section not working #1082985

    Hi,

    Thanks for the update.

    We don’t see any issues with the test page. The tab section title and content are both visible. Is this fixed?

    Best regards,
    Ismael

    in reply to: Mobile Responsive issues – need fixes #1082965

    Hey webguy007,

    Thank you for using Enfold.

    Are you using the grid row element before? We don’t see the described issue on the Services page. Did you find a workaround?

    Best regards,
    Ismael

    in reply to: Easy Slider: Apply a link to the slide #1082964

    Hi,

    Thank you for using Enfold.

    That is possible, but you have to modify the config-templatebuilder > aviashortcodes > slideshow > slideshow.php file. Look for this code around line 227:

    "name" 	=> __("Apply a link to the slide?", 'avia_framework' ),
    

    Below that line, look for this code:

    "std" 	=> "",
    

    Set the “std” value to “image”.

    "std" 	=> "image",
    

    The “Image Link?” std can then be set to “lightbox”. You can find that code around line 251:

    "std" 	=> ""),
    

    Replace it with:

    "std" 	=> "lightbox"),
    

    Best regards,
    Ismael

    Hi,

    We would like to apologize for the late response.

    It seems to be an error with the greensock animation scripts that are included in the layer slider. Would you mind if we deactivate the plugins temporarily while debugging the issue?

    greensock.js?ver=1.19.0:18 Uncaught TypeError: i is not a function
    greensock.js?ver=1.19.0:18 Uncaught TypeError: Cannot read property ‘length’ of undefined

    Best regards,
    Ismael

    in reply to: Widgets on top of Woocommerce Shop Overview page #1082959

    Hey sberendss,

    Thank you for using Enfold.

    You can use action hooks to insert additional content above the shop overview page. An example of that hook can be found in this article.

    // https://wpsites.net/web-design/2-ways-to-add-a-widget-before-woo-commerce-product-pages/

    Best regards,
    Ismael

    in reply to: Enfold 4.5.5 – Icon List Element Issue #1082957

    Hey Maarten,

    Thank you for using Enfold.

    Do you have a test page where we can see the issue? What is the css modification that you have used to fix the issue? Please provide the info in the private field.

    Best regards,
    Ismael

    in reply to: Scripts and Styles missing – Enfold #1082955

    Hi,

    Those scripts are for the advance layout builder and should not affect your the site speed. The avia_modal.js file, which is one of their dependencies is not loaded anywhere else except when the ALB is active or currently in used, so the warning occurs.

    Best regards,
    Ismael

    in reply to: wpml integration with icon menu #1082954

    Hi,

    Thanks for the update.

    You can add this hook in the functions.php file to render the language switcher inside the header container. You can then add css codes to adjust the switcher’s position.

    add_action( 'ava_main_header', 'ava_wpml_switch_to_header' );
    function ava_wpml_switch_to_header() {
    	echo do_action('wpml_add_language_selector');
    }

    Best regards,
    Ismael

    in reply to: Submenu and socket menu #1082950

    Hi,

    Thank you for using Enfold.

    1.) This css code should highlight the current menu item.

    .main_color .av-subnav-menu > .current-menu-item > a {
        color: blue;
    }

    Unfortunately, you can’t make the parent menu items clickable when the sub menu items are not visible on initial load or the “Hide Mobile Menu Submenu Items” is enabled.

    2.) Use this one to adjust the line height of the socket menu items.

    #socket .sub_menu_socket li {
        line-height: 23px;
    }

    Best regards,
    Ismael

    in reply to: Enfold header widget and WPML #1082946

    Hey aderal2016,

    Thank you for using Enfold.

    Have you tried using the Widget Logic plugin to control the visibility of the widgets? You can also use the WPML Widget plugin.

    // https://wpml.org/documentation/getting-started-guide/translating-widgets/displaying-different-widgets-for-different-languages/

    Best regards,
    Ismael

    in reply to: Website broke when upgrading to WordPress 5.1.1 #1082945

    Hi,

    Thanks for the update.

    The latest error on that log is not critical or fatal and not likely to cause an internal server error. It is also dated March 9, 2019 and completely not related to the theme.

    PHP Warning: Invalid argument supplied for foreach() in /home1/ashforth/public_html/wp-content/mu-plugins/wpengine-common/plugin.php on line 1078

    Do you have a staging site where we can replicate the issue? We don’t see any fatal errors on that log.

    Best regards,
    Ismael

    in reply to: Huge hit in performance after update #1082940

    Hey Pixel_Production,

    Thank you for using Enfold.

    How do you check the TLS-handshakes? The initial load time of the site on our end, without cache, is less than 10 seconds and less than 2 seconds on succeeding loads. That is not slow considering that the home page itself is more than 3MB. Have you done any optimization to the site? These articles should help.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    You can start with the image compression.

    Best regards,
    Ismael

    in reply to: 404 and avia_forced_reroute=1 #1082936

    Hi,

    We would like to apologize for not replying immediately.

    A fix has been included in the latest version of the theme, 4.5.5. Is the site running on that version? How did you fix it?

    Best regards,
    Ismael

    in reply to: spam on Enfold forms – insane spam won't stop #1082935

    Hi!

    Are there any spam protection plugins like Akismet installed in the site? These plugins should filter out spams, delete existing ones or block them completely. A good list of plugins can be found in the following article.

    // https://www.wpexplorer.com/antispam-plugins-wordpress/

    Regards,
    Ismael

    in reply to: woocommerce 3.5.6 #1082630

    Hi,

    Alright. We’ll close the thread now. Please don’t hesitate to open a new one if you encounter any issues after the update.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Bilder werden geladen, aber nicht angezeigt #1082626

    Hi,

    The images are not displaying when the Section ID is filled because of this css code.

    #so-123 img {
        opacity: 0!important;
    }

    Looks like you’re using the generic (.avia-builder-el-11, .avia-builder-el-6 etc) class attributes as selectors for the elements. Those class attributes are temporary and can change based on the number of elements in the page and their order in the builder. Turn on the custom css class field in order to apply a permanent css class attribute to the elements, which can then be used to change their style.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: WOCOMMERCE PROBLEMS on checkout #1082625

    Hi,

    Thanks for the update.

    The endpoint works properly on our installation. Could you provide a user account that we could use? Make sure that at least one order has been processed under the account.

    Best regards,
    Ismael

Viewing 30 posts - 23,791 through 23,820 (of 67,155 total)