Forum Replies Created

Viewing 30 posts - 10,291 through 10,320 (of 66,288 total)
  • Author
    Posts
  • in reply to: Slider on Home page seems to be showing behind Header #1342941

    Hi,

    Thank you for the info.

    You can have to adjust the top padding of the main container to push the slider a bit. Please try this css code.

    .html_header_top.html_header_topbar_active.html_header_sticky #top #main {
        padding-top: 145px;
    }
    

    Best regards,
    Ismael

    in reply to: Add Buttons to Top Bar #1342940

    Hi,

    You can add a widget inside the header containing the button shortcode instead of using the phone number field. Please check this documentation for more info.

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

    You may need to replace the action hook with avia_meta_header.

    Example:

    add_action("avia_meta_header", function() {
        dynamic_sidebar("header");
    }, 10);
    

    The code above will render a widget area called “header” inside the top bar.

    Best regards,
    Ismael

    in reply to: Hotspots stay open #1342939

    Hey BrendaSarg,

    Thank you for the inquiry.

    The hotspot tooltip is supposed to display on hover and automatically hide on mouse leave. Please make sure that the Advanced > Animation > Show Tooltips settings of the hotspot element is set to the first option. And please make sure to upgrade the theme to version 4.9.1.

    Best regards,
    Ismael

    in reply to: Related posts based on category 3 #1342938

    Hey BirgitteAlstrom,

    Thank you for the inquiry.

    The related posts section is still based on tags by default, so you will still have to edit the related-posts.php file as instructed on the previous thread. You can override the template file in the child theme directory if necessary.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    According to the error, the function beonepage_get_version is not defined. This is not a theme function, so it is probably generated by a plugin. Please try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    in reply to: Mailchimp widget not working #1342936

    Hey karinorage,

    Thank you for the inquiry.

    You may need to set the Enfold > Performance > Disable template builder elements settings to the first option, and temporarily disable the Enfold > Performance > File Compression settings. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Enfold Menu background colors #1342802

    Hey Erin,

    Thank you for the inquiry.

    You can actually change the main font color in the Enfold > General Styling > Main Content panel. If you would like to edit a specific element, please go to the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: class-framework-widgets.php file removed #1342800

    Hey zimbo,

    Thank you for the inquiry.

    The widget files are now located in the enfold/framework/php/widgets/widget-classes directory. Please look for the class-avia-combo.php file.

    Best regards,
    Ismael

    in reply to: Layerslider issues on mobile #1342797

    Hi,

    Thank you for the info.

    We edited the layer containing the text and switched its type from html to text. We also edited the size and positioning a bit so that the layer automatically adjusts based on the length of the content. To show the exact changes, we duplicated the slider and created a temporary page for testing. Please check the links in the private field.

    Best regards,
    Ismael

    in reply to: Localize Google Fonts #1342796

    Hi,

    Thank you for the update.

    The variations should be listed properly in the font manager after uploading a font. Would you mind posting the zip file that you actually uploaded in the site? We would like to test it on our installation.

    Best regards,
    Ismael

    in reply to: Editor for specific page not working #1342795

    Hi,

    Thank you for the info.

    We can reproduce the issue but we are not yet sure what is causing it. We have to switch your installation to debug mode and enable the error logs. Please check the following documentation and add the provided code in the wp-config.php file.

    // https://wordpress.org/support/article/debugging-in-wordpress/#example-wp-config-php-for-debugging

    Best regards,
    Ismael

    in reply to: How to add a background image into the footer #1342794

    Hey Jak73,

    Thank you for the inquiry.

    Looks like the footer is disabled on the page. If you want to apply a background to the socket or the container where the copyright is located, then you can use this css code.

    .page-id-536 #socket {
        background: url(IMAGE URL HERE);
    }
    

    Best regards,
    Ismael

    in reply to: Blog page formatting #1342793

    Hey advteksol,

    Thank you for the inquiry.

    would like to know how to make it so I can use the ALE and keep the expected blog formatting,

    Please note that when using the Advance Layout Builder (ALB) for posts or pages, all default elements including the featured image, post meta info, comments etc. will be not be included automatically in the template. Using the ALB is like starting from a blank canvas where you have to add all the elements manually. If you need the default post formatting, then you have to switch to the default or classic editor.

    Best regards,
    Ismael

    Hey soltner,

    Thank you for the inquiry.

    Did you set the language selector to display on a specific menu? If that it the case, you may need to instead manually insert the language selector using the designated hooks. Please check this documentation for more info.

    // https://wpml.org/documentation/getting-started-guide/language-setup/language-switcher-options/#using-php-actions

    Best regards,
    Ismael

    Hey eduardodelat,

    Thank you for the inquiry.

    The theme automatically generates different thumbnails or sizes for each image, which is why there are multiple versions of the image in your server. These thumbnails are used on different areas or elements in the site instead of loading the original image, which could improve the loading speed.

    We do not recommend removing or disabling those thumbnails but it is possible. Please check this thread for more info.

    // https://kriesi.at/support/topic/media-upload-and-enfolds-thumbnail-sizes/#post-1271808

    Best regards,
    Ismael

    in reply to: Layout issues (past few months) #1342789

    Hi,

    Thanks for the update.

    The font size of the h2 element is already set to 22px when we checked. The footer looks fine as well. We provided screenshots in the private field. Please make sure to purge the cache on your end or try to check it on a different browser.

    Best regards,
    Ismael

    in reply to: add on mobile devices only for .phone-info section #1342788

    Hey bearrockconcrete,

    Thank you for the inquiry.

    Looks like you have replaced the html with a span tag. To hide the span element on desktop view and only move the second phone number to the next line, use this css code.

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
      .desktop-br {
        display: none;
      }
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: logo center, burger menu right #1342786

    Hey melanie_erfrischt,

    Thank you for the inquiry.

    You can use this css code to move the logo at the center of the header.

    .responsive .logo {
      float: none;
      left: 50%;
      transform: translateX(-50%);
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Layerslider issues on mobile #1342683

    Hi,

    Thank you for the update.

    Can we access the site or the WP dashboard? We would like to check the layer slider settings. Please post the login info in the private field.

    Best regards,
    Ismael

    in reply to: LayerSlider Front End Problem #1342682

    Hey attifilm,

    Thank you for the inquiry.

    You will have use the WPML String Translation in order to translate the text or strings in the layer slider. Please check this documentation for more info about the slider translation.

    // https://wpml.org/documentation/plugins-compatibility/creating-multilingual-sliders-using-layerslider-and-wpml/

    Best regards,
    Ismael

    in reply to: The Original Calendar Pro – Css Override for View? #1342657

    Hi,

    No problem. Let us know if you have more questions regarding the theme. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Video slider new #1342655

    Hi,

    Alright. Glad to know that this has been resolved. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We created a few private test posts and pages in your installation and the issue occurred on all of them. Unfortunately, we are not sure why the translated pages do not inherit the editor or builder status from the original page and why it still uses the default template. We will forward the issue to our channel. For the meantime, please try to update the translated page manually directly in the builder to fix the layout issue.

    Best regards,
    Ismael

    in reply to: enfold ver. 4.9 breaking footer #1342651

    Hey laptophobo,

    Thank you for the inquiry.

    Did you modify the footer.php file in those sites? Please check the child theme directory for the any modified template files.

    Best regards,
    Ismael

    in reply to: Layerslider issues on mobile #1342649

    Hey andrea,

    Thank you for the inquiry.

    You can define a minimum font size for the text layer in one of its style settings. Please edit the text layer, go to the Styles panel and look for the Min. Font Size and the Min. Mobile Font Size fields. You can also toggle the visibility of the layers on certain screen sizes.

    Best regards,
    Ismael

    Hi,

    Glad it helped. You can reactivate the file compression settings once you are finished editing the site. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Video slider new #1342644

    Hi,

    Yes, you can override the shortcodes in the child theme. Please check this documentation for more info.

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

    You may need to adjust the path or URL of the scripts in the extra_assets function.

    Best regards,
    Ismael

    in reply to: Product list, thumbnails #1342641

    Hey orianos,

    Thank you for the inquiry.

    You have to modify or override the woocommerce/templates/content-widget-product.php file and define a custom thumbnail for the get_image function in this code around line 32.

    <?php echo $product->get_image(); // PHPCS:Ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
    

    Please check this documentation for more info on how to override a Woocommerce template file.

    // https://woocommerce.com/document/template-structure/

    Best regards,
    Ismael

    Hey Kyle,

    Thank you for the inquiry.

    When I open a post or page that is using the default layout and turn on Advance Layout Builder

    Are you trying to move the content from the default editor to the Advance Layout Builder? Please note that the content of the default editor cannot be edited using the Advance Layout Builder and vice versa. We tried to login to the site but for some reason it keeps insisting that our browser is not accepting cookies.

    Best regards,
    Ismael

    in reply to: Contact form validation error #1342635

    Hi,

    We created a test page (see private field), enabled recaptcha for the contact form and got the same error that @yigit mentioned above. The error occurs because the function that is supposed to validate the postal code field or the number field does not exists in the front end.

    To fix the issue temporarily, please edit enfold/config-templatebuilder/avia-shortcodes/contact/contact.js file, around line 159 look for this code.

    if( ! ( avia_isNumeric( value ) ) || value == "" || value < 0 )
    

    .. and replace it with..

    
    							function is_numeric( obj ) {
    								var type = typeof obj;
    								return ( type === "number" || type === "string" ) && ! isNaN( obj - parseFloat( obj ) );
    							}
    
    							if( ! ( is_numeric( value ) ) || value == "" || value < 0 )
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after editing the file.

    Best regards,
    Ismael

Viewing 30 posts - 10,291 through 10,320 (of 66,288 total)