Forum Replies Created

Viewing 30 posts - 12,211 through 12,240 (of 66,126 total)
  • Author
    Posts
  • in reply to: Connect two columns #1319287

    Hi,

    Glad to know that it now runs or looks exactly as expected. Thanks to @Guenni007. Please do not hesitate to open a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold – Auto play video issues on Iphone #1319286

    Hi,

    Thank you for the update.

    The video is working correctly but it is not visible because the layer’s visibility settings are disabled on all devices.

    As mentioned previously, we already edited the visibility options of the video layer and it is now displaying properly on mobile screens. Please check the screenshots below.

    Screenshots:

    View post on imgur.com

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: CSS to hide Blog-Latest News on top of Single Blog posts? #1319285

    Hi,

    Thank you for the inquiry.

    Yes, the css code should work. The title and breadcrumbs can also be removed by adjusting the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings.

    Best regards,
    Ismael

    in reply to: Double H1 in the code of Enfold! #1319284

    Hey TT2495,

    Thank you for the inquiry.

    Looks like you have added the h1 tag manually in the content editor. We tried to check the link above but the page does not exist. Please provide a valid URL so that we could check the page and inspect the title.

    Best regards,
    Ismael

    in reply to: Applying text drop text to specific pages #1319283

    Hey sunilskrishnan,

    Thank you for the inquiry.

    You can apply a custom css class name or ID to the builder elements and use it to define a css rule for sections or elements that should have the shadow or that should have a custom style. The css fields are located in the elements’ Advanced > Developer Settings toggle.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Add an Icon to a Button Styled Menu Item #1319277

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    In the Appearance > Menu editor, you can add a custom menu item and enable the Button Style option from the Menu Style settings. This should create a menu item that looks like button, but you will have to use additional css code to insert an icon.

    #menu-item-755 a:before {
        font-family: 'entypo-fontello';
        width: 10px;
        height: 10px;
        display: block;
        position: absolute;
        color: white;
        content: "";
    }
    

    The css code above will apply the search icon to the menu item with the ID 755. You can also insert a widget in the header instead of a custom menu item.

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

    Best regards,
    Ismael

    in reply to: Breaking Avia Layout Builder – Spinning Wheel #1319269

    Hi,

    Great! Glad to know that you have found a working solution. Please do not hesitate to open a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: PHP Error with every update #1319267

    Hey Lana,

    Thank you for the inquiry.

    Do you update the theme in the dasboard (Enfold > Theme Updates)? Try to edit the enfold/functions-enfold.php, look for the avia_mailchimp_widget function and this code around line 2219:

    
    		function __construct() {
    			//Constructor
    			$widget_ops = array('classname' => 'avia_mailchimp_widget', 'description' => 'A widget that displays a Mailchimp newsletter signup form' );
    			parent::__construct( 'avia_mailchimp_widget', THEMENAME.' Mailchimp Newsletter Signup', $widget_ops );
    		}
    

    Replace it temporarily with:

    	function __construct() {
    			$theme = wp_get_theme();
    
    			//Constructor
    			$widget_ops = array('classname' => 'avia_mailchimp_widget', 'description' => 'A widget that displays a Mailchimp newsletter signup form' );
    			parent::__construct( 'avia_mailchimp_widget', $theme->name.' Mailchimp Newsletter Signup', $widget_ops );
    		}
    

    Let us know if the error still occurs.

    Best regards,
    Ismael

    in reply to: adding Woocommerce to health coach demo #1319262

    Hey kardnas,

    Thank you for the inquiry.

    Yes, you can install the plugin and create a shop page with the current demo. The demo does not have preconfigured options for shop pages or for the plugin, so you will have to configure it manually.

    Best regards,
    Ismael

    in reply to: Enfold Ankerlinks / Sprungmarken funktionieren nicht #1319259

    Hey Johannes,

    Thank you for the inquiry.

    We checked the home page but we cannot find the button using the #kontaktaufnahme anchor. Where did you add the button? Did you try to include the complete or absolute URL plus the anchor?

    Example.

    https://site.com/page/#kontaktaufnahme
    |OR|
    https://site.com/#kontaktaufnahme
    

    Using just the anchor may not work if you are on a different page without the anchor destination or without an element with the named anchor.

    Best regards,
    Ismael

    in reply to: 'tab' at the edge of a page #1319258

    Hey steridhh,

    Thank you for the inquiry.

    That is the post navigation and it can be disabled in the Enfold > Blog Layout > Single Post Navigation settings. You can also use this filter in the functions.php file.

    add_filter("avf_post_nav_settings", function($settings) {
        $settings['skip_output'] = true;
        return $settings.
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Site crashed afer update #1319257

    Hi,

    Thank you for the update.

    The issue only occurs when the excerpt is enabled or when the Captions > Element Title and Excerpt settings is set to the first option. We selected the second option temporarily to disable the excerpt and only display the title.

    Did you modify the masonry element to display the post content instead of the post excerpt?

    Best regards,
    Ismael

    in reply to: DE/EN : QUESTION ABOUT STRUCTURED DATA (SCHEMA) #1319256

    Hey Hoernchen089,

    Thank you for the inquiry.

    The theme contains basic schema structure for blog posts or articles, images, breadcrumbs and other elements. The option is enabled by default but it can be toggled from the Enfold > SEO Support > Automated Schema.org HTML Markup settings. For more complex structure (e.g recipes, books etc), you will have to install a plugin or extend the existing structure in the theme.

    Best regards,
    Ismael

    in reply to: Enable Mouse(wheel) in Google Maps #1319255

    Hey Soehnke,

    Thank you for the inquiry.

    According to the documentation, you can set the gestureHandling parameter of the map to “greedy” to allow any gestures (e.g touch, pan, pinch, scroll). Unfortunately, the documentation did not specify if this will also include the mousewheel.

    Try to add this script in the functions.php file.

    function ava_custom_script_map_params(){
    ?>
    	<script>
    		window.addEventListener('DOMContentLoaded', () => {
    			window.av_google_map.av_gmap_0.gestureHandling = "greedy";
                            window.av_google_map.av_gmap_0.scrollwheel = true;
    		});
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_map_params', 9999);
    

    Default value of the gestureHandling parameter is “cooperative”.

    UPDATE: There is actually a scrollwheel option. We added it above and set it to true.

    Best regards,
    Ismael

    in reply to: Anchor link from subpage to homepage #1319249

    Hi,

    Great! Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Content Element: Magazine Change heading #1319248

    Hey agiledynamicss,

    Thank you for the inquiry.

    You can use the following filter in the functions.php file to change the heading to h4.

    function avf_avf_customize_heading_settings_mod( array $args, $context, array $extra_args = array()) {
      if( $context == 'avia_magazine' ){
        $args['heading'] = 'h4';              
      }
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'avf_avf_customize_heading_settings_mod', 10, 3 );
    

    You may need to insert additional css code or apply the previous css from the h3 tag to keep the style of the heading.

    Best regards,
    Ismael

    Hey jnrdavo,

    Thank you for the inquiry.

    That is the block editor shortcode field. You have to upgrade the theme from version 4.5.1 to the latest version, 4.8.6.1, and remove the unused themes to avoid conflict. After the theme update, make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings. This should remove the shortcode field from the Advance Layout Builder and help fix any theme-related issue the site might have.

    Best regards,
    Ismael

    in reply to: what is the reason for keyframe names with id*s ? #1319065

    Hey Guenter,

    Thank you for the inquiry.

    The ID is probably added to differentiate the custom animation of an element from other elements that are also using the sonar effect. This is required in cases where two or more elements are using the same sonar/pulsate option but with different color, duration and overall effect.

    Best regards,
    Ismael

    in reply to: masonry blog post #1319064

    Hi,

    Thank you for the inquiry.

    Did you modify the av-helper-masonry.php file or override the masonry templates in the child theme? The following thread might help clarify and fix the issue.

    // https://kriesi.at/support/topic/masonry-custom-image-source/#post-1314600
    // https://kriesi.at/support/topic/theme-upgrade-causes-shortcodes-av-helper-masonry-php-to-crash-site/#post-1313296

    If you are using the avf_masonry_loop_prepare filter, you might have to apply the attachment value to the attachment_overlay as shown in the thread above.

     $content['attachment'] = !empty( $content['thumb_ID'] ) ? wp_get_attachment_image_src( $content['thumb_ID'], $img_size ) : '';
      $content['attachment_overlay'] = $content['attachment'];
    

    Best regards,
    Ismael

    in reply to: Revolution Slider Conflict #1319063

    Hey thrivecommunities,

    Thank you for the inquiry.

    The slider is not displaying correctly when the theme is active because the page’s Page Attributes > Template defaults to Slider Revolution Blank Template. We tried changing it to the theme’s default template, but it reverts back to the 4th option after updating the page. Did you set any settings for this or add any modifications to auto assign the template?

    FYI, you have to add the slider using Advance Layout Builder > Plugin Additions > Revolution Slider element. You can use the shortcodes but you have to adjust the template manually.

    Best regards,
    Ismael

    in reply to: eliminatge page title and navigation menu #1319061

    Hey Spiru_show1,

    Thank you for the inquiry.

    You can set the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings to the 4th option (Hide Both) to hide the default page title and the breadcrumbs.

    Best regards,
    Ismael

    Hey LaurenKaz,

    Thank you for the inquiry.

    Are you adding custom html tags to the page or to the content? You have to make sure that all tags are closed properly because unclosed or invalid tags could break the content. Please post the site URL in the private field and include the login details so that we could check the issue properly.

    Best regards,
    Ismael

    in reply to: Enfold Template builder error #1319059

    Hey seferdemirci,

    Thank you for the inquiry.

    It seems to be related to the custom footer section. Did you select a custom page to display as footer? This is where the warning occurs.

    // global fix for https://kriesi.at/support/topic/footer-disseapearing/#post-427764
    			if( in_array( $last_el['tag'], AviaBuilder::$full_el_no_section ) )
    			{
    				avia_sc_section::$close_overlay = '';
    			}
    

    The error is not critical, so it should not affect how the builder or how the theme works.

    Best regards,
    Ismael

    in reply to: V4.8.6.2 causing errors – Urgent #1319056

    Hey Nik,

    Sorry for the delay. We provided a reply in one of the threads, about the possible cause of error. Please continue there. https://kriesi.at/support/topic/enfold-v4-8-6-2-causing-errors-to-portfolio/

    Best regards,
    Ismael

    in reply to: Default Cookie Behaviour on last Option Bug or Feature? #1319055

    Hi,

    Thank you for the inquiry.

    The theme only hides the notification for the current session, so when the user continue browsing and moved to a different page, the session will end, and so the message bar will display again.

    We could set it so that the message bar is always hidden when the value of the aviaCookieConsent cookie is the same, but we might get unexpected results. If you want to continue, try to edit the enfold/js/avia-snippet-cookieconsent.js file, look for this code around line 111..

    if( ! ( oldCookieContents || aviaCookieRefused ) || msgbar_changed )
    			{
    				aviaCookieConsentBar.removeClass('cookiebar-hidden');		
    				set_cookie_consent_aria_attr( 'show' );
    			}
    

    .., and replace it with:

    
    			if( ! ( oldCookieContents ) || msgbar_changed )
    			{
    				aviaCookieConsentBar.removeClass('cookiebar-hidden');		
    				set_cookie_consent_aria_attr( 'show' );
    			}
    

    You may have to toggle or temporarily disable the Enfold > Performance > File Compression settings after the modification.

    Best regards,
    Ismael

    in reply to: Theme Issues #1319053

    Hey Nik,

    Sorry for the delay. We provided a reply in the following thread. https://kriesi.at/support/topic/enfold-v4-8-6-2-causing-errors-to-portfolio/

    We will close this thread for now. Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. What happens when you add the modification directly within the avia_woocommerce_overwrite_catalog_ordering function in the enfold/config-woocommerce/config.php file?

    You may also have to assign the order and orderby value to the $avia_config global variable in order to actually override the avia_woocommerce_overwrite_catalog_ordering function, which is using the same filter.

    $avia_config['woocommerce']['product_order'] = strtolower(  $args['orderby'] );
    $avia_config['woocommerce']['product_sort'] = strtolower(  $args['order'] );
    

    Best regards,
    Ismael

    in reply to: Fatal error #1319051

    Hey Murmeltier,

    Thank you for the inquiry.

    Where can we see the issue? Please post the site URL in the private field and make sure to update the theme to version 4.8.6.1. After the update, make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Blog Featured Image Size #1319049

    Hi,

    Glad to know that it is working. Template modification and adding custom css code are some of most common way to achieve or create a certain layout. Sadly, we cannot add every little options in the theme without it getting bloated, so we have to be very selective on what options to actually add.

    If you have more questions, please feel free to open another thread. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Contact form elements via php functions #1319047

    Hi,

    Alright. Glad to know that it is fixed. Please feel free to open another a thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 12,211 through 12,240 (of 66,126 total)