Forum Replies Created

Viewing 30 posts - 1,681 through 1,710 (of 66,092 total)
  • Author
    Posts
  • in reply to: Create Non-Active Buttons as Table Headers in Avia? #1474907

    Hey Lance,

    Thank you for the inquiry.

    You can add this css code to disable the button link:

    .avia-button.av-2nmrfk9-f45ab28a99455a17e7ddcfebab1a4eb3, .avia-button.av-39v4g2x-65032c069c1501baa53c8d144f184430, .avia-button.av-4i3e4bt-f26691724adb5204f0eda6e0ac5c4208 {
        pointer-events: none;
    }

    Let us know how it goes.

    Best regards,
    Ismael

    in reply to: Icon List Element is not working on mobile #1474905

    Hi,

    Thank you for the info.

    We added the code in the Quick CSS field and temporarily disabled the Performance > File Compression settings. Please make sure to clear the cache before checking the page.

    Best regards,
    Ismael

    Hey Tanja,

    Thank you for the inquiry.

    You may need to create a custom shortcode or install an additional plugin to achieve this. Unfortunately, implementing this level of customization would require significant time and modifications to the theme, which falls outside the scope of our support.

    If this functionality is essential for you, we recommend hiring a freelancer to assist with the customization. You can find professionals specializing in theme customization by visiting our customization page.

    If you have any other questions or need further assistance, please don’t hesitate to reach out.

    Best regards,
    Ismael

    in reply to: Language error after update to 6.0.8 #1474860

    Hey Reyking74,

    Sorry for the delay. Where can we check the issue? Please clone the site to a staging environment and provide the login details in the private field. Did you install any plugins recently?

    Best regards,
    Ismael

    in reply to: logo mobile without link #1474859

    Hey schweg33,

    Thank you for the inquiry.

    The logo is not clickable because the header is covering it. Please add this css code to adjust the width of the header container and move it to the right, away from the logo.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .av-logo-container {
        padding: 0;
        width: 100px;
        margin: 0;
        position: absolute;
        right: 50px;
      }
    }

    Best regards,
    Ismael

    in reply to: Tag alignment on single post #1474858

    Hey AlpineWeb,

    Thank you for the inquiry.

    The site is currently on maintenance mode. Please provide the login details in the private field and provide a screenshot of the issue using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: How to adjust blog ingress mark amount? #1474857

    Hey pikkuapuri,

    Thank you for the inquiry.

    Which blog layout is enabled? Please provide the link to the blog page so we can check it. You can try adding these filters to the functions.php file:

    function av_custom_excerpt_length($length) {
        return is_admin() ? $length : 20;
    }
    
    add_filter('excerpt_length', 'av_custom_excerpt_length');
    add_filter('avf_postgrid_excerpt_length', fn($length) => 60);
    

    Best regards,
    Ismael

    in reply to: Loading time Pagespeed Test #1474856

    Hey filmblau,

    Thank you for the inquiry.

    These are the recommendations by the insight tool:

    There are a number of WordPress plugins that can help you inline critical assets or defer less important resources. Beware that optimizations provided by these plugins may break features of your theme or plugins, so you will likely need to make code changes.
    WP Rocket
    Enable Remove Unused CSS and Load JavaScript deferred in ‘WP Rocket’ to address this recommendation. These features will respectively optimize the CSS and JavaScript files so that they don’t block the rendering of your page.

    Have you tried enabling the option in the WP Rocket plugin and installing a compression plugin such as Autoptimize? You can also enable the theme’s Enfold > Performance > File Compression settings and disable the compression option from the cache plugin. Let us know of the result.

    Best regards,
    Ismael

    in reply to: How do I place a photo next to text #1474855

    Hi,

    The button seems to be perfectly visible on our end. Please see the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: Follow to Old Thread #1474854

    Hey ballindigital,

    Thank you for the inquiry.

    You may need to adjust the z-index of the #header_main element. Please add this css code:

    #header_main {
        z-index: 50;
    }

    Best regards,
    Ismael

    in reply to: H2 Not Staying the Right Size #1474853

    Hi,

    You need to edit all the Special Heading elements on the page and adjust the Styling > Font Sizes settings. Please refer to the screenshot in the private field.

    To learn more about the theme, please check the documentation: https://kriesi.at/documentation/enfold/intro-to-layout-builder/

    Best regards,
    Ismael

    in reply to: Probleme mit Portfolio Raster #1474852

    Hey Blatze,

    Thank you for the inquiry.

    The site is in maintenance mode, so we can’t access it and you might have forgotten to include the username in the private field. Please provide an admin account so we can check the issue.

    Best regards,
    Ismael

    in reply to: Get rid of this icon on mobile #1474815

    Hi,

    Thank you for the update.

    We’ve checked the site on an Android device, but we didn’t see the same icon (see private field).

    Is there a way I can use the inspect tool on mobile Android and see if it comes up in code?

    You can use USB debugging or inspect it using Android Studio. Please check the article below:

    // https://www.browserstack.com/guide/how-to-inspect-element-on-android

    Best regards,
    Ismael

    in reply to: Enfold theme causing critical error on site #1474814

    Hi,

    Great! Glad to know that this has been resolved. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474813

    Hi,

    We edited the product “The Original Freeze Flat” and added the custom field sales_text_last_month, set its value to “bought in the past month”. We also edited av_show_product_sales function and temporarily disabled the condition “if ($sales_count > 0)”so that you can see the modification (see private field). The product doesn’t have any orders yet. You can re-enable the condition if you wish.

    Best regards,
    Ismael

    in reply to: H2 Not Staying the Right Size #1474812

    Hi,

    UPDATE: We set the font size of the “Ready to take the Plunge?” heading to 40px.

    Best regards,
    Ismael

    in reply to: H2 Not Staying the Right Size #1474811

    Hi,

    Thank you for the update.

    Did you check the value of the Styling > Font Sizes settings? Please edit the Special Heading elements in the page, then adjust the value of the Styling > Font Sizes settings.

    Best regards,
    Ismael

    in reply to: Related Posts Preview in the blog #1474810

    Hey ibuzaev,

    Thank you for the inquiry.

    Try selecting the second option (Show thumb and title by default), then add this css code to hide the thumbnail container.

    #top .related_image_wrap {
        display: none !important;
    }

    Let us know if this works for you.

    Best regards,
    Ismael

    in reply to: Insert Image not loading & Media Library not showing #1474809

    Hi,

    Thank you for the info.

    We tried to login to the site but 2FA is enabled. Please disable 2FA so that we can access the dashboard.

    Best regards,
    Ismael

    in reply to: Woopayments checkout page 2 card fields #1474807

    Hi,

    Thank you for the inquiry.

    Are you using a plugin for this? Please provide the login details in the private field so we can check the issue further. If the problem persists even after activating another theme, you may need to contact the plugin developers for additional assistance.

    Best regards,
    Ismael

    in reply to: How do I place a photo next to text #1474806

    Hi,

    Thank you for the update.

    How did you add the button? Make sure that the “Styling > Appearance > Button Position” is set to “Align Left”. If you added it as a shortcode, look for the position parameter, then set it to left. Let us know if this works for you.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this has been resolved. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog catgerories not displaying #1474761

    Hey clermedia,

    Thank you for the inquiry.

    The header.php file and the includes folder have been overridden in the child theme. You may need to update these files or temporarily remove them. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474760

    Hey!

    It’s not loading on our end. Did you install a security plugin? Please disable it temporarily so that we can access the site again.

    Cheers!
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474758

    Hey!

    The site is not loading our end. Please check the screenshot in the private field.

    Regards,
    Ismael

    in reply to: H2 Not Staying the Right Size #1474757

    Hey jnightingale,

    Thank you for the inquiry.

    The font sizes of the Special Heading elements were configured manually. You have to adjust them by editing the elements and adjusting the values in the Styling > Font Sizes panel. Let us know the result.

    Best regards,
    Ismael

    in reply to: A second menu below the main menu #1474756

    Hi,

    We adjusted the hook a bit — try it again:

    add_action('ava_after_main_container', 'ava_after_main_container_mod', 10);
    function ava_after_main_container_mod()
    {
        $output = '';
        $output .= do_shortcode("[av_submenu which_menu='' menu='6' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled' av_uid='av-7sgq']
    [av_submenu_item title='Menu Item 1' av_uid='av-1qu' link='' linktarget='no' button_style='']
    [av_submenu_item title='Menu Item 2' av_uid='av-41hu' link='' linktarget='no' button_style='']
    [/av_submenu]");
        echo $output;
    }

    Please feel free to open another thread if the issue persists.

    Best regards,
    Ismael

    in reply to: How do I place a photo next to text #1474755

    Hey melanie308,

    Thank you for the inquiry.

    In a Text or Code Block elementy, you can add something like this:

    
    <div style="overflow: hidden;">
      <img src="main-enfold.png" alt="Image" alt="Image" style="float: left; margin-right: 20px; max-width: 50%;">What is Lorem Ipsum?
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
    
    Why do we use it?
    It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
    
    Where does it come from?
    Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
    
    The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
    
    Where can I get some?
    There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
    
    </div>
    

    Make sure to update the image URL.

    Best regards,
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474753

    Hi,

    We tried adding the custom field, but the site is not loading on our end anymore. Are you working on it? To learn more about how to add custom fields, please check this link.

    // https://woocommerce.com/document/custom-product-fields/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You may need to temporarily disable the Enfold > Performance > File Compression settings and make sure to purge the cache or just disable the cache plugin temporarily. Let us know if it’s still not working.

    Best regards,
    Ismael

Viewing 30 posts - 1,681 through 1,710 (of 66,092 total)