Forum Replies Created

Viewing 30 posts - 23,341 through 23,370 (of 66,696 total)
  • Author
    Posts
  • 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

    in reply to: Space between full width masonry news items #1082621

    Hi,

    Thanks for the update.

    Replace the previous modification with the following css code.

    .av-masonry-entry.post {
    box-shadow:0px 0px 0px 5px rgba(255,255,255,1);
    }
    

    That should exclude the items from the masonry gallery.

    Best regards,
    Ismael

    in reply to: custom page not displaying content #1082617

    Hey ihtezaz,

    Thank you for using Enfold.

    The template looks correct. Could you give us a link to the a page where this template is activated?

    Best regards,
    Ismael

    in reply to: Homepage "wonky" after theme update #1082616

    Hi,

    We can no longer see the issue on the page. Is it fixed?

    // http://keremshalom.org/wp-content/uploads/2019/03/KS-homepage-preview.png

    Best regards,
    Ismael

    in reply to: Gridlayout #1082528

    Hi,

    That is not possible out of the box. You have to specify the tags for each item manually. Please open a new thread for new inquiries.

    Best regards,
    Ismael

    in reply to: Paypal button #1082525

    Hi,

    Thanks for the update.

    This should remove the yellow paypal button in the cart page.

    .woocommerce-cart .wcppec-checkout-buttons.woo_pp_cart_buttons_div {
        display: none !important;
    }

    Don’t forget to disable or toggle the Enfold > Performance > File Compression settings after adding that code.

    Best regards,
    Ismael

    Hi,

    We would like to apologize for the late response.

    The product thumbnails in the footer widgets are 100x100px in size. All of them. Is this fixed? The product widget in the sidebar is no longer there, so we were not able to check it.

    Best regards,
    Ismael

    in reply to: 2 columns on mobile #1082523

    Hi,

    Great! Thanks for the reviews. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Issues with ALB #1082521

    Hi,

    Alright. Let us know in a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Awesome! Glad that it’s fixed.

    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

Viewing 30 posts - 23,341 through 23,370 (of 66,696 total)