Forum Replies Created

Viewing 30 posts - 12,811 through 12,840 (of 66,075 total)
  • Author
    Posts
  • in reply to: Responsive issue (bug?) with accordion element #1309058

    Hey goldengate415,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue? We cannot find the border and the contact form looks perfectly fine as shown in the screenshot below.

    Screenshot: https://postimg.cc/8sGM3SWM

    Best regards,
    Ismael

    in reply to: Different navigation for a page. #1309057

    Hey peterolle,

    Thank you for the inquiry.

    1.) You can use a plugin to control the visibility of the menu or the items within it.

    // https://wordpress.org/plugins/menu-items-visibility-control/
    // https://wordpress.org/plugins/zen-menu-logic/

    2.) You can find the “center logo, split menu” and more header layout options in the documentation.

    // https://kriesi.at/documentation/enfold/header/#header-widget-position

    Split menu: https://kriesi.at/documentation/enfold/menu/#toggle-id-145

    Best regards,
    Ismael

    in reply to: Portfolio Grid order #1309055

    Hey merryng,

    Thank you for the inquiry.

    The portfolio post type does not support the page order option by default, but you can enable it manually. You can add this filter in the functions.php file to enable the page attributes for the portfolio items.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    Make sure to set the “Order by” settings to “Page Order”.

    Best regards,
    Ismael

    in reply to: Portfolio grid hover like masonry grid hover #1309040

    Hi,

    Looks like adjusting the transition is not helping but applying a maximum height does. Did you disable the portfolio grid animation? We added this css code.

    .grid-sort-container .grid-entry {
        max-height: 279px;
    }
    

    Best regards,
    Ismael

    in reply to: Shop Banner on mobile #1309038

    Hey aliciapotts,

    Thank you for the inquiry.

    You can use this css code to adjust the height of the banner on mobile view.

    @media only screen and (max-width: 767px) {
    #av_product_description {
        max-height: 172px;
    }
    
    #av_product_description .av-parallax {
        height: 100% !important;
        top: 0 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Color Section with columns #1309037

    Hey davs74,

    Thank you for the inquiry.

    You can start by creating 2 rows with three 1/3 columns each. Edit the first column in the row, enable the Equal Height Columns option and remove the Space between columns. You should also enable the Custom top and bottom margin and keep the top margin to 0. You can then add a few css code to set a minimum height for the columns.

    Best regards,
    Ismael

    in reply to: Content Slider – Slider controls missing #1309034

    Hey jwidmann,

    Thank you for the inquiry.

    The slider arrows or navigation are not displaying because of this css code.

    .avia-smallarrow-slider-heading {
        display: none!important;
    }
    

    Did you install a plugin for custom css code?

    Best regards,
    Ismael

    in reply to: Startup Business Demo & WPML not working #1309028

    Hey cristinapizzato,

    Thank you for the inquiry.

    How did you translate the pages? Did you follow the instructions in the following documentation?

    // https://wpml.org/documentation/theme-compatibility/enfold/

    Best regards,
    Ismael

    in reply to: Mobile device display order #1309024

    Hi,

    The code in the Quick CSS field is saved or added in the stylesheet located in the wp-content > uploads > dynamic_avia folder. The theme loads this file along with other stylesheets.

    Since we cannot access the site, please set the builder to debug mode, copy the actual shortcode from the debug mode field just below the advance layout builder and post it here using pastebin or using the same code sharing tool (controlc) that we used above.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Unique title and description on pagination pages! #1309023

    Hi,

    The login token is no longer working. Please generate another so that we can access the site again. Removing the value of the title field should fix the issue because when the field is empty, the function avf_add_page_number_to_title will not be overridden.

    Best regards,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1309022

    Hi,

    you will realize that there is a huge blank space on top of this other tab

    Try to set the Content height to the second option. The space is created because it forces the same height for all tabs. This option only works well if you know that the content will actually have the same height or if you don’t mind a little space on other tabs with shorter content.

    Best regards,
    Ismael

    in reply to: BBPress can't create new topics #1309020

    Hi,

    Yes, it is fine to switch the compression settings off temporarily. You could switch it back when you are done with the site configuration.

    Best regards,
    Ismael

    in reply to: Autorotate Horizontal gallery #1308781

    Hey FamalcoGroup,

    Thank you for the inquiry.

    Have you tried using the Easy Slider or the Partner/Logo Element? These sliders have an auto rotation option by default unlike the horizontal gallery element.

    Best regards,
    Ismael

    in reply to: Change inner content width #1308779

    Hey Sebastian,

    Thank you for the inquiry.

    We may need to check the site or inspect the elements in order to understand the issue. Please post the site URL in the private field, and toggle or temporarily disable the Enfold > Performance > File Compression settings. Have you tried checking the site on incognito mode?

    Best regards,
    Ismael

    Hey joelnewcomer,

    Thank you for the inquiry.

    Have you tried to manually add the svg image using a text or code block? This way you will be able to define the width and height attribute of the svg image directly.

    Best regards,
    Ismael

    in reply to: Background image hides content after updating #1308776

    Hi,

    Thank you for the update.

    Looks like a css or animation issue. Try to add this css code to set the opacity of the color section container.

    .js_active .av-minimum-height .container {
       opacity: 1;
    }

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

    Best regards,
    Ismael

    in reply to: Button row customization #1308774

    Hi,

    Thank you for the inquiry.

    It might be due to the border. Please try to replace the css code with the following.

    .avia_button_background {
        opacity: 0 !important;
    }
    
    .avia-button:hover {
        opacity: 1 !important;
        border-color: transparent !important;
    }

    Best regards,
    Ismael

    in reply to: Custom Post Type Display #1308762

    Hey getfletch,

    Thank you for the inquiry.

    Unfortunately, you cannot modify the archive pages using the advance layout builder (ALB). You have to modify the template files directly (archive.php, taxonomy-custom-post-type-name.php etc). Another solution is to create a page using the ALB, then redirect the archive or category page to it.

    Best regards,
    Ismael

    in reply to: Just portfolio item from demo #1308760

    Hey Knutnik,

    Thank you for the inquiry.

    This is not possible but we can give you the shortcodes for that particular page. The shortcode can be added in the debug mode field of the advance layout builder. You have to enable debug mode first.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    After enabling it, just paste this shortcode in the debug mode field.

    // https://pastebin.com/L1qSqjMJ

    Best regards,
    Ismael

    in reply to: Sorting "You might also like" #1308756

    Hi,

    Unfortunately, this will require significant amount of modification that is not included in the scope of support. You can hire a freelance developer or contact our partner Codeable for this kind of customization.

    Best regards,
    Ismael

    Hey webWahine,

    Thank you for the inquiry.

    We cannot find the menu item with the anchor. Would you mind providing a screenshot of the menu item or the section so that we could understand the issue better?

    Best regards,
    Ismael

    in reply to: Table of content with Custom Wishes #1308754

    Hey Tobias777G,

    Thank you for the inquiry.

    There is actually a widget called Table of Contents (TOC) that maybe you could use in one of your pages. It automatically detects heading elements in the page and create a navigation or a list of sections accordingly. To add it in a page, just use the Widget Area element and select the widget area where the TOC widget is located.

    Best regards,
    Ismael

    in reply to: ENFOLD PROBLEMS #1308745

    Hi,

    1.) Would you mind providing a screenshot of the issue? It works well on our end when we switch the menu breakpoint, or when we se the Menu Items for mobile settings to the second option.

    2.) You can adjust the top margin value to adjust it. You can also move it further to the left or right by applying a left or right margin.

    Best regards,
    Ismael

    in reply to: Google Api Key don't works #1308741

    Hi,

    Great! Glad to know that the is fixed. Please do not hesitate to open another should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Problem with layer order #1308738

    Hi,

    No problem. Glad to know that it is fixed. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1308737

    Hi,

    We modified the script a bit and disabled the ava_custom_script_fix function. The tab section is now resizing when loading more posts or when it contains an iframe with the dynamic height.

    Best regards,
    Ismael

    in reply to: Enqueue custom CSS #1308732

    Hey davs74,

    Thank you for the inquiry.

    What do you mean? Maybe it’s the cache or the file compression. Please toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache after making the changes.

    Best regards,
    Ismael

    Hi,

    The snippet that we recommended previously will only enable the advance settings for the post type. If you want to include the custom post type in the masonry or blog selection, you have to create a custom taxonomy for the custom post type and attach the terms or categories to your posts. You can then select the custom taxonomy to display the posts associated with it.

    You can also add this code in the functions.php file to make the public post types selectable but we do not recommend it.

    add_theme_support("add_avia_builder_post_type_option");
    

    Best regards,
    Ismael

    in reply to: Fix Coupon Code Not Accepted #1308724

    Hi,

    Thank you for the info.

    Try to use this css code to remove the button and the space above the coupon field.

    #coupon-anchor .ui-dialog-titlebar-close, #coupon-anchor #ui-id-2 {
        display: none;
    }
    

    Best regards,
    Ismael

    in reply to: BBPress can't create new topics #1308723

    Hi,

    Did you install any plugin for custom css code? Try to searching in the Enfold > General Styling > Quick CSS field or in the child theme’s style.css file. You can also check in the Appearance > Customize panel.

    Best regards,
    Ismael

Viewing 30 posts - 12,811 through 12,840 (of 66,075 total)