Forum Replies Created

Viewing 30 posts - 10,831 through 10,860 (of 66,218 total)
  • Author
    Posts
  • Hey Thomas,

    Thank you for the inquiry.

    Have you tried using the avf_show_author_meta to completely disable the author info? The filter is located in the includes > loop-index.php template.

    Example:

    add_filter("avf_show_author_meta", "__return_false");
    

    Best regards,
    Ismael

    in reply to: Shop Description translation? #1336886

    Hi,

    Thank you for the update.

    Looks like the shop description cannot be translated in the String Translation management panel, so what we did is we added the description for each language in the same field.

    <span class="av-lang av-lang-fi">TERVETULOA
    tutustumaan Glungan mallistoon</span>
    <span class="av-lang av-lang-gb">WELCOME
    Check out the Glunga collection</span>
    

    Then used this css code to toggle their visibility based on the active language.

    .av-lang { display: none; }
    html[lang="en-GB"] .av-lang-gb { display: inline-block; }
    html[lang="fi"] .av-lang-fi { display: inline-block; }
    

    Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Cookiefenster ist bei mobiler Ansicht abgeschnitten #1336881

    Hi,

    Thank you for the short clip.

    On the video, looks like the scrolling occurs in the tab container instead of the parent av-consent-extra-info container or the popup window. Please try to add this css code to prevent the actual tab container from scrolling.

    @media only screen and (max-width: 767px) {
        .responsive #top .main_color .tabcontainer {
            overflow: hidden;
        }
    }
    

    Best regards,
    Ismael

    in reply to: shop page fully transparent #1336877

    Hi,

    Thank you for the update.

    1-2.) This css code also applies the background image to the header container.

    .page .container_wrap {
        background: url(https://www.toysanarchy.com/wp-content/uploads/2022/01/annie-spratt-scaled.jpg);
        background-attachment: fixed;
    }
    

    To retain the original header background, you have to replace the css code with this one.

    .page #main .container_wrap {
        background: url(https://www.toysanarchy.com/wp-content/uploads/2022/01/annie-spratt-scaled.jpg);
        background-attachment: fixed;
    }
    

    Also, please note that container_wrap is a common class name, so the css code above will be applied on every sections in the page. You may have to adjust the css selector a bit so that the changes will be only applied on the intended sections. Adding a custom css class name to the sections should help.

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

    Best regards,
    Ismael

    in reply to: Fonts Problem #1336871

    Hi,

    Thank you for the update.

    The font is already loaded in the site but it has to be applied manually to the heading element. To apply it on an h1 element for example, try to use this css code.

    #top #wrap_all .header_color h1, #top #wrap_all .main_color h1 {
        font-family: "adobe-caslon-pro";
    }

    This is where the font file is loaded.

    // https://use.typekit.net/nfs3fno.css

    Best regards,
    Ismael

    in reply to: Button too big in blog page #1336868

    Hi,

    Thank you for the update.

    According to Mike, you have to find and remove the custom css code above to change the button back to its default appearance. They were probably added in the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Fonts still loaded from Google #1336843

    Hey hasbeat,

    Thank you for the inquiry.

    One can upload as many fonts as you want in the import/export – fonts will be still loaded by gstatic.

    Did you select the uploaded font in Enfold > General Styling > Fonts panel? The theme will not automatically load the uploaded fonts if they were not selected or activated. Please check the font settings. You may also have to temporarily disable the Enfold > Performance > File Compression settings and make sure to purge the cache.

    Best regards,
    Ismael

    in reply to: Impossible to edit/add/change a page. #1336842

    Hey Daniele,

    Thank you for the inquiry.

    We cannot find the accordion element in the page (shown in the 2nd screenshot). Did you remove it?

    The issue probably occurs because there are html in the builder elements that do not have a proper closing tag, which could break the layout of the page and remove the following builder elements.

    Best regards,
    Ismael

    in reply to: Display problems #1336840

    Hey Veronika,

    Thank you for the inquiry.

    Where can we see the issue? Please provide a direct link to the page or post so that we can check it. We cannot find the post shown in the short clip and it is quite blurry, so we cannot read the URL field.

    Best regards,
    Ismael

    in reply to: Margin on grid row #1336837

    Hi,

    The same css code should work on Safari. Make sure to keep the file compression settings disabled while editing the site and please do not forget to purge the cache.

    Best regards,
    Ismael

    in reply to: AV FONT ICON – displaying in all text boxes? #1336836

    Hi,

    Thank you for the update.

    Are you expecting the icon shortcode to display as an actual icon in the builder? That is not how it works, unfortunately. The text block will render the shortcode as is in the builder and only render the actual element in the front end. If you don’t want to see the shortcode in the builder, try to replace the text block with a code block element.

    Best regards,
    Ismael

    in reply to: Problems with Seopressor #1336825

    Hi,

    Thank you for the info.

    That element is a part of the block editor, not the theme. Are you using the block editor in any of your posts or pages? If you are not using the new block editor, you can revert back to the classic editor by adjusting the Enfold > Theme Options > Select your editor settings.

    Best regards,
    Ismael

    in reply to: Shop Description translation? #1336821

    Hi,

    Thank you for the info.

    Did you change the login URL? We cannot access the login page using the default URL (wp-login or wp-admin). Please post the custom login URL in the private field.

    You can use the Say What? plugin to add translations for custom strings or text.

    // https://wordpress.org/plugins/say-what/

    Best regards,
    Ismael

    in reply to: show events in blog loop #1336818

    Hey Tobias,

    Thank you for the inquiry.

    You have to edit the Blog Posts element and set the Content > Select Entries > Do you want to display blog posts? settings to the second option (custom taxonomies). Make sure that the Tribe Events Cat taxonomy is selected to display event items.

    Best regards,
    Ismael

    in reply to: Blog posts block, grid view #1336816

    Hi,

    Thank you for the update.

    Did you create a site backup? Try to manually upload the enfold-child folder in the wp-content > themes folder, then activate it in the Themes panel. You may need to extract it from the zip file first.

    Best regards,
    Ismael

    in reply to: Margin on grid row #1336814

    Hi,

    Thank you for the screenshot.

    Adding this css code should help with the height issue.

    @media only screen and (max-width: 989px) {
        .responsive #top #wrap_all .av-flex-cells .no_margin {
            height: 100% !important;
            overflow: hidden;
        }
    }
    

    If the same css media query already exists, you can just copy the css rule within and place it inside the current css media query.

    Best regards,
    Ismael

    in reply to: Video not Formating #1336813

    Hi,

    Thank you for the update.

    The password for the username above is incorrect according to the login error. Please check the info carefully or provide another admin account. Did you manually set the Styling > Background Video > Video Aspect Ratio settings of the color section? Please try to set it back to the default aspect ratio value, which is 16:9.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can manually define the size of the menu item background with the following css code.

    li#menu-item-1464 {
        background-size: 40px;
    }
    

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

    Best regards,
    Ismael

    in reply to: Fonts Problem #1336811

    Hey Veronika,

    Thank you for the inquiry.

    Did you upload the font using the Custom Font Manager in the Enfold > Import/Export panel? Please note that this feature is intended for Google Fonts, so font files from other sources may not work correctly. You may need to use the @font-face rule for the Caslon Pro font and apply it to the heading elements manually with custom css.

    // https://css-tricks.com/snippets/css/using-font-face-in-css/

    Best regards,
    Ismael

    in reply to: Background images aren't showing up on mobile devices. #1336805

    Hey Hurricane,

    Thank you for the inquiry.

    Looks like you’ve managed to fix the background issue by adding a whitespace element inside the grid row cells. All background images in the home page displayed correctly on mobile view when we checked. If you need more help, please let us know.

    Best regards,
    Ismael

    in reply to: Sidebar not showing up on WooCommerce category page #1336802

    Hi,

    Thank you for the update.

    Unfortunately, the FTP account above is not working. Please check it carefully or provide another login account, and make sure to place it the private field.

    Best regards,
    Ismael

    in reply to: slider not being translated #1336801

    Hi,

    Thank you for the clarification.

    The screenshots are not accessible and we cannot access the dashboard using the URL above. For some reason, we get a 403 forbidden error (see private field). Did you change the login URL?

    Best regards,
    Ismael

    in reply to: Timeouts and spinning wheel #1336800

    Hi,

    Thank you for the update.

    Is the issue only happening on specific pages? The editor seem to be loading properly on a few pages that we edited. We did not encounter any timeouts or issues. Please check the screenshots in the private field.

    Best regards,
    Ismael

    in reply to: Angular to Enfold Transition #1336794

    Hi,

    Do you know of some ‘function’/’feature’ in Angular that we could use to ‘get around’ the Avia javascript ‘issue’?

    The issue in the script that we mentioned above has to be fixed. You have to hire someone to update the Angular theme and make it compatible with the latest version of WordPress and of jQuery.

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

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Optimising Masonry Gallery #1336508

    Hi,

    Thank you for the access.

    We adjusted the code in the functions.php file a bit.

    
    function ava_custom_script() { ?>
        <script>
            (function($) {
                $(".slide-entry").on("click", function(e) {
    				e.preventDefault();
    				var link = $(this).find(".slide-image").attr("href");
    				window.location.href = link;
                });
            })(jQuery);
    	</script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script');

    You may need to add this css code to adjust the mouse cursor to pointer when hovering the articles.

    .slide-entry {
    	cursor: pointer;
    }
    

    Best regards,
    Ismael

    in reply to: Toggle Name #1336506

    Hi,

    Glad it worked. But there might be an invalid css code somewhere in that field that requires fixing. Please feel free to open another thread if you need anything else. We will close this for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Change Fontsize of Masonry-Gallery #1336503

    Hi,

    Alright! We will close the thread now. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Toggle Name #1336500

    Hi,

    Thank you for the info.

    There might be a missing closing bracket somewhere in the css code. Please make sure that all css media queries and css rules are closed properly. To fix the issue temporarily, try to move the css code at the very bottom the Quick CSS field. Or post the login details in the private field so that we can check the css.

    Best regards,
    Ismael

    in reply to: Customize visualization for desktop #1336498

    Hi,

    Thank you for the clarification.

    Try to add three 1/3 columns in a single row, move the video inside the second column, then edit the Advanced > Responsive Settings > Element Visibility of the first and third columns. You can set them to only display on desktop and hidden on mobile view. This should limit the width of the video on desktop view and display it as is on smaller screens.

    Best regards,
    Ismael

    in reply to: Sidebar not showing up on WooCommerce category page #1336496

    Hi,

    Thank you for the update.

    The site is now accessible but we cannot yet figure out why the sidebar is not displaying in the product category pages. Can we access the file server? We would like edit the taxonomy-product_cat.php file template and maybe override and place it in the child theme directory. Please post the FTP details in the private field.

    Best regards,
    Ismael

Viewing 30 posts - 10,831 through 10,860 (of 66,218 total)