Forum Replies Created

Viewing 30 posts - 8,311 through 8,340 (of 67,453 total)
  • Author
    Posts
  • in reply to: Overlapping vertical columns embedded in a Tab Section #1405907

    Hey mikegrace78,

    Thank you for the inquiry.

    Adding this css code should prevent the columns from overlapping each other.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    
      .responsive #top .container .av-content-small,
      .responsive #top #wrap_all .flex_column,
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 50px;
        width: 100%;
      }
    }
    

    Please adjust the margin-bottom value to suit your specific layout.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    We may need to inspect the site in order to understand the issue better. Please provide the site details in the private field.

    If you need a quick fix, please look for this code in the previous filter.

    $link_prev = $url . ‘page/’ . ($page – 1);
    $link_next = $url . ‘page/’ . ($page + 1);
    

    Replace it with:

    $link_prev = str_replace("ppage", "page", $link_prev);
    $link_next = str_replace("ppage", "page", $link_next);
    

    Best regards,
    Ismael

    in reply to: “You may also like” images are cropped #1405905

    Hey mescalytequila,

    Thank you for the inquiry.

    You may need to add this code in the functions.php file in order to adjust the related product thumbnails.

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }
    

    Best regards,
    Ismael

    in reply to: Critical error after updating to Enfold 5.5 #1405903

    Hi,

    Thank you for the update.

    We checked the site and noticed that it still contains the older version, 4.8.5. Please update the theme in the live site or clone it to a development environment so that we can check the issue properly.

    Best regards,
    Ismael

    in reply to: The video won't load #1405902

    Hi,

    Glad to know that the suggestion helped. If the issue returns after enabling compression, please disable the option again. You can also consider installing a third-party compression plugin like Autoptimize or BWP Minify in place of the default file compression settings.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Is it happening in the live site? We can’t reproduce the same issue on our local and live installations, so it might have something to do with your local server configuration.

    Best regards,
    Ismael

    in reply to: leaflet map custom icon not showing #1405900

    Hi,

    Thank you for the update.

    We may need to access your site in order to further investigate the issue. Please share your login credentials with us in the “private data” field so that we can take a look at your backend.

    To do this, please follow these steps:

    1. Install and activate the plugin “Temporary Login Without Password“.
    2. On the left-side menu, go to “Users > Temporary Logins”.
    3. Click on “Create New”.
    4. Enter an email address for the account (you can use (Email address hidden if logged out) ), select the highest possible “Role”, and set the expiry time for about four days (to ensure that we have enough time to debug).
    5. Click on “Submit”.
    6. You’ll now have a temporary account. Please provide us with the URL in the private section so that we can login and assist you.

    Once your issue is resolved, you can always remove the plugin.
    If you prefer not to use the plugin, you can manually create an admin user and share the login credentials with us in the “private data” field.

    Best regards,
    Ismael

    in reply to: soacial media icon whatsapp #1405899

    Hey rixi,

    Thank you for the inquiry.

    This should be the format of a Whatsapp number or URL.

    https://wa.me/<number>
    

    The placeholder represents a full phone number in international format. Additionally, to make the header icons visible on mobile view, please add the following CSS code.

    @media only screen and (max-width: 479px) {
      .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
          display: block;
          margin-left: 15px;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Change urls of portfolio pages #1405898

    Hey Fieldtripper,

    Thank you for the inquiry.

    You will have to install a plugin or two in order to adjust the URL or permalink of the portfolio items. Please check the links below.

    // https://wordpress.org/plugins/permalink-manager/
    // https://wordpress.org/plugins/remove-cpt-base/

    The following article might help as well.

    // https://www.greengeeks.com/tutorials/how-to-change-the-permalink-structure-of-wordpress-custom-post-types/

    Best regards,
    Ismael

    in reply to: Demo Import Not Working #1405897

    Hey FoundationsFour,

    Thank you for the inquiry.

    You may need to manually import the demo as described in the following thread.

    // https://kriesi.at/support/topic/issues-with-importing-theme-demo-missing-images/#post-956658

    To increase the curl timeout, please check this thread.

    // https://kriesi.at/support/topic/sitespeed-slow-ttfb-10-seconds/#post-1401966

    Best regards,
    Ismael

    in reply to: Issue with woocommerce after update #1405896

    Hey amyteslin,

    Thank you for the inquiry.

    The ticket options are not displaying because of this code in the Quick CSS field.

    .av-single-event-meta-bar-desktop {
        display: none !important;
    }
    

    We removed the css code and temporarily disabled the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    Hi,

    We have activated CSS compression and it appears that the issue is no longer occurring. This is how the site looks after activating the compression.

    // https://1drv.ms/i/s!AjjTfXSRbKTvgcExWGOoott7YaBiNw?e=kg2sgB

    Best regards,
    Ismael

    Hey keikomazz,

    Thank you for the inquiry.

    To determine the issue, it may be necessary for us to inspect the site. Please provide the site URL in the private field, and including screenshots would also be helpful. Please use imgur, savvyify or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Content not showing in color section with minimum height #1405798

    Hi,

    Please note that you don’t have to install a compression plugin once the native compression option is enabled. If the issue returns after enabling the compression option, try to disable it back, then activate the compression plugin. If the issue persists, try to look for another compression plugin.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: how to change the table size in text block #1405796

    Hi,

    Looks like you’ve placed the table inside a text block. To make the table scroll on smaller screens, please add this css code.

    .avia_textblock {
        overflow: scroll;
    }
    

    Have you tried using the Table element in the builder?

    Best regards,
    Ismael

    in reply to: Color Section video not autoplaying [Vimeo] #1405795

    Hi,

    Thank you for the update.

    The format of the video URL that you are using is not valid. The URL should be in the following format.

    https://vimeo.com/1084537
    

    Let us know if this works.

    Best regards,
    Ismael

    in reply to: Größe des Beitragsbilds #1405793

    Hi,

    Thank you for the update.

    If the modification above is not working, please override the themes/enfold/includes/loop-index.php template file and look for this code around line 93.

    $size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';
    

    Replace the code with:

    $size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'full' : 'full' ) : 'square';
    
    

    Best regards,
    Ismael

    in reply to: MEC (M.E. Calender) and other troubles #1405792

    Hey MareenMalessa,

    Thank you for the inquiry.

    1-2.) The site is currently using an outdated version of the theme, which is version 4.7.6.4. To fix the issue, it is recommended to upgrade to the latest version of the theme, which is version 5.5. This can be done through FTP. Upgrading the theme will not only address the problem but also ensure that your site runs smoothly and securely with the latest features and enhancements provided by the updated version.

    Best regards,
    Ismael

    in reply to: Dynamic category using Blog Posts element #1405789

    Hi,

    Thank you for the update.

    There are available hooks in the shortcode template but none would be useful for what you are trying to do. You may need to override the existing shortcode (enfold/config-templatebuilder/avia-shortcodes/blog) and customize it, or use it as a reference for a completely new element.

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

    Best regards,
    Ismael

    in reply to: Größe des Beitragsbilds #1405655

    Hey mwuehle,

    Thank you for the inquiry.

    To adjust the size of the featured image or display the full-size version, you can add this code to the functions.php file.

    add_action('after_setup_theme', function() {
        global $avia_config;
        $avia_config['image_size'] = 'full';
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Portfolio items keep disspaearing from teh front end, #1405650

    Hey S-edwards,

    Thank you for the inquiry.

    Did you install any plugin or add any scripts prior to the issue? Please provide the login details in the private field so that we can check the issue further.

    Best regards,
    Ismael

    in reply to: Accordion Not Working #1405648

    Hi,

    We may need to access the site in order to further check the issue. Please provide the login details in the private field. Additionally, please disable the Enfold > Performance > File Compression settings temporarily.

    Best regards,
    Ismael

    in reply to: Post Grid not working #1405647

    Hi,

    Great! If you need further assistance, please don’t hesitate to open another thread. We will now close this one.

    Have a nice day!

    Best regards,
    Ismael

    Hi,

    Also, my header video is not showing all of the text on mobile.

    You can decrease the font size of the heading element to make room for the rest of the content. Please add this css code.

    @media only screen and (max-width: 489px) {
        #top #wrap_all .av-special-heading.av-lgwoy0g4-67703d5d6519f9f2bd4d8bcfc4f4746e .av-special-heading-tag {
           font-size: 0.6em;
        }
    }
    

    Best regards,
    Ismael

    in reply to: video image fallback bug #1405644

    Hey mandarijn,

    Thank you for the inquiry.

    We cannot find any video element in the home page. Where did you add the video with the fallback image? Please provide a direct link or create a test page.

    The following thread might be related to this issue.

    // https://kriesi.at/support/topic/video-lightbox-thumbnails-not-loading-black-screen/#post-1403093

    Best regards,
    Ismael

    in reply to: Is it possible to rename Portfolio CPT as a term? #1405643

    Hey Jason,

    Thank you for the inquiry.

    You can actually use the avf_portfolio_cpt_args filter to adjust the parameters of the portfolio post type. Example of the code can be found in the following link.

    // https://kriesi.at/support/topic/can-i-rename-portfolio-items-to-something-my-content-team-will-relate-to/#post-1162772

    For reference, please check the enfold/includes/admin/register-portfolio.php file.

    Best regards,
    Ismael

    in reply to: Required Enfold Image Sizes #1405642

    Hey Jason,

    Thank you for the inquiry.

    Have you considered using this plugin instead? It should allow you to disable registered thumbnails that come with the theme.

    // https://wordpress.org/plugins/image-sizes-controller/

    Please keep in mind that when the specified thumbnail is not available, WordPress will automatically use the original or full-size image as a fallback option. Therefore, disabling all thumbnails may negatively impact the loading speed of your website.

    Best regards,
    Ismael

    in reply to: Dynamic category using Blog Posts element #1405640

    Hi,

    UPDATE: There is a possible solution but you have to use the Portfolio Grid element and its category sort option.

    // https://kriesi.at/support/topic/portfilio-grid-pre-filtered/#post-1363125

    Best regards,
    Ismael

    in reply to: Dynamic category using Blog Posts element #1405639

    Hey Rustybucket,

    Thank you for the inquiry.

    There is no option for this by default, unfortunately. You may need to install a plugin or extend the functionality of the blog posts element with the help of a third party developer. Please check the link below.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: how to change the table size in text block #1405638

    Hey Alison,

    Thank you for the inquiry.

    Did you add this css code somewhere?

    td {
        font-size: 13px;
        padding: 9px 12px;
        border-style: solid;
        border-width: 1px;
        border-left: none;
        border-top: none;
    }

    It sets the font size of the table content to 13px. To override, it you can add the following code in the Quick CSS field.

    td {
        font-size: 1.2em;
    }
    

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

    Best regards,
    Ismael

Viewing 30 posts - 8,311 through 8,340 (of 67,453 total)