Forum Replies Created

Viewing 30 posts - 10,801 through 10,830 (of 66,218 total)
  • Author
    Posts
  • in reply to: add menu button/link next to hamburger menu #1337062

    Hi,

    Thanks for the update.

    We modified the code a bit, wrapped the button inside a container and applied a custom class name to it.

    add_action("ava_main_header", function() {
       $output = "<div class='av-custom-menu-button'><a href='#'>This is a button</a></div>";
       echo $output;
    }, 10);
    

    You should be able to style it with this css.

    .av-custom-menu-button a {
       padding: 10px 20px;
       background: red;
    }

    And about @Guennie’s solution, you can enable the CSS Classes field from the Appearance > Menus > Screen Options panel.

    Best regards,
    Ismael

    in reply to: slider not being translated #1337060

    Hi,

    Thank you for the access.

    The appropriate sliders seem to be displaying as they should on every languages (see private field). Would you mind providing a screenshot of the issue? The last two screenshots above are not accessible.

    Best regards,
    Ismael

    in reply to: Display problems #1337056

    Hi,

    Did you move the content inside the columns as we suggested above? Try to insert two 1/5 element in a row and place a 3/5 column in the middle, then move the content inside the middle 3/5 column. This should limit the width of the text and the columns should respond accordingly on smaller screens or when the browser is resized.

    Best regards,
    Ismael

    Hi,

    Did you add this ID to the heading element?

    Black-background-color-and-white-text-color

    Please edit the column where the heading element is located and apply the custom ID or class name to it instead. Apply av-custom-column as the custom css class name for example, then add this css code.

    .av-custom-column h2, .av-custom-column p {
        text-shadow: 3px 3px #734854 !important;
    }
    

    Best regards,
    Ismael

    in reply to: Add Custom Post Type inside link select #1337051

    Hey Jan,

    Thank you for the inquiry.

    You cannot select a custom post type but you can create taxonomies or categories inside that post type and select those items instead. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Space between product image and description #1337037

    Hi,

    Thank you for the update.

    Yes, that css code should work. The space was created because of the declared padding in this css code.

    #top div.product .woocommerce-tabs {
        clear: both;
        padding: 50px 0 0 0;
        margin: 0 0 30px 0;
    }
    
    .single-product-main-image {
        width: 33%;
        float: left;
        margin-right: 50px;
        overflow: hidden;
        padding-bottom: 50px;
    }
    

    You can keep your custom css code modification, or override the css above and adjust the padding.

    Best regards,
    Ismael

    in reply to: Logo + Menu #1337033

    Hi,

    Thank you for the update.

    You can use this css code to move the main menu closer to the logo.

    .responsive #top #header .main_menu {
        position: relative;
        right: auto;
        float: left;
        left: auto;
    }
    
    .responsive #top #header .logo {
        float: left;
        position: relative;
        left: 0;
        z-index: 1;
    }
    

    Please make sure to purge the cache after adding the css.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    We have only checked the home page but the images in the cells are displaying on that page as well. Please check the screenshot in the private field.

    Did you set the Background Attachment to Fixed previously? Setting it back to Scroll might help with the background issue on iOS devices.

    Best regards,
    Ismael

    in reply to: Disqus #1337030

    Hi,

    Did you create a Disqus account? Is it working correctly when Jetpack is disabled? Please follow these steps to properly configure the Disqus plugin.

    1.) Go to “Plugins” > “Add Plugin”
    2.) Search for “Disqus Comment System” by Disqus
    3.) Click “Install Now”
    4.) Activate the plugin
    5.) (Automatic: easiest) From the Install page of the Disqus plugin settings, follow the Automatic Installation steps to set up Disqus on your site. During this process, you will need to create a Disqus account and register your site. This also creates the API application required for enabling Comment Syncing.
    6>) (Manual: fastest) Enter your site’s Disqus shortname in Site Configuration. This requires you to have created a Disqus account and registered your site.

    NOTE: It is recommended that you backup your database before installing the plugin.

    Or watch this video for more details.

    // https://www.youtube.com/watch?v=a4JBJXyuaFk

    Best regards,
    Ismael

    in reply to: MailChimp with Google reCaptcha #1337029

    Hi,

    We will keep the thread open. :)

    Best regards,
    Ismael

    in reply to: Changing fullwidth break point for columsn #1337026

    Hey laptophobo,

    Thank you for the inquiry.

    Did you select a page to display as footer, or are you just using the default footer columns? If you are using the default footer columns, you can use this css code to adjust the breakpoint.

    @media only screen and (max-width: 500px) {
      .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: 20px;
        width: 100%;
      }
    }
    
    @media only screen and (min-width: 501px) {
      .responsive #top #wrap_all #footer .av_one_fourth {
        margin-left: 6%;
        width: 20.5%;
      }
    }
    

    Best regards,
    Ismael

    in reply to: add menu button/link next to hamburger menu #1337024

    Hey laptophobo,

    Thank you for the inquiry.

    You can add a widget area inside the header or directly modify the includes > helper-main-menu.php file and manually add the html for the button there. Please check this documentation fo more info if you want to use the widgets.

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

    Aside from those two options, you can also use hooks to insert additional content inside the templates. To insert something on the main header for example, you can use the ava_main_header hook.

    add_action("ava_main_header", function() {
       $output = "<button>This is a button</button>";
       echo $output;
    }, 10);
    

    Best regards,
    Ismael

    in reply to: Make table scrollable in text element #1337023

    Hey tremblayly,

    Thank you for the inquiry.

    Adding this css code should make the tab container scrollable and allow the users to check the rest of the table.

    .active_tab_content .tab_inner_content {
        overflow: scroll;
    }
    

    You may need to disable the file compression and purge the cache after adding the css.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    We tried to clone the page by saving the current content as template but some of the content are gone when we add it back to the test page (see private field). Please set the builder to debug mode so that we can copy the shortcodes manually.

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

    Did you add html tags in the page (scripts, input tags, divs etc)? Please check if there are unclosed html tags and correct them.

    Best regards,
    Ismael

    in reply to: show events in blog loop #1337016

    Hi,

    Thank you for the update.

    But we want to represent blogposts and tribe events cat together.

    That option is not available by default, unfortunately. You may need to add two Blog Posts element, one for the default posts and another for events.

    Best regards,
    Ismael

    in reply to: Cant load Fonts in Safari #1337014

    Hi,

    Thanks for the update.

    It is working correctly on our end as shown in the screenshot below (see private field). You might have to ask your clients to purge the cache or tell them to check the site on incognito mode.

    Best regards,
    Ismael

    in reply to: contact form change css of select element #1337011

    Hi,

    Thank you for the update.

    You can use this css code to move the checkboxes underneath each other.

    .wpcf7-checkbox .wpcf7-list-item {
        display: block;
        margin-left: 0;
    }
    

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

    Best regards,
    Ismael

    in reply to: Shop Description translation? #1337008

    Hi,

    No problem. Glad we could help. Please let us know in a different thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    Hey Dejan,

    Thank you for the inquiry.

    Looks like you have managed to import the lifestyle demo correctly based on the current appearance of the site. If this is not the case, you can try to manually import the xml files using the default WordPress import option.

    // https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Best regards,
    Ismael

    in reply to: Lazy Loading Question #1337004

    Hey havi,

    Thank you for the inquiry.

    Where can we check the post? The image will only be lazy loaded if the loading attribute is set to lazy.

    I did see your Theme Featured Image Block.

    The theme doesn’t generate any block elements out of the box. Would you mind providing a screenshot?

    Best regards,
    Ismael

    in reply to: Best way to do responsive type? #1337000

    Hi,

    Thank you for the update.

    Did you update enable the Enfold > Performance > File Compression settings? You may need to disable these options first before editing the site, or just make sure to toggle them and purge the cache afterwards.

    Best regards,
    Ismael

    in reply to: Video not Formating #1336999

    Hi,

    Thanks for the update.

    We can now access the site but still not sure why the iframe in the color section resizes like that. It looks like the Vimeo player is not working at all but we cannot find any errors. It’s just displaying the small preview image. Did you modify the color section file?

    Have you tried using Youtube or a locally hosted video?

    Best regards,
    Ismael

    in reply to: Notification bar & header settings #1336997

    Hi,

    Thank you for the inquiry.

    Instead of adding a widget, you can use this code in the functions.php file to insert another element (a banner, notification bar etc) above the logo container.

    add_action("ava_main_header", function() {
        $banner = "<div id='banner'>This is a banner</div>";
        echo $banner;
    }, 10);
    

    You can then add this css code to style it a bit.

    .responsive #top #header_main #banner {
        width: 100%;
        height: 30px;
        background: red;
        text-align: center;
    }
    

    Best regards,
    Ismael

    in reply to: Display problems #1336995

    Hi,

    Thanks for the link.

    It resizes like that because the left and right padding is set to 330px. Did you configure the left and right padding of the column, or did you add this css code?

    .flex_column.av-kyq43cw8-afa5fb8d3eb4c9e6c5e2c109354aec12 {
        padding: 30px 330px 30px 330px;
    }
    

    Instead of adding a large padding, try to use the column elements to control the width of the text block.

    Best regards,
    Ismael

    in reply to: Submenu links to tab sections not working on mobile #1336992

    Hi,

    Glad to know it is solved. Please let us know in a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: shop page fully transparent #1336988

    Hi,

    Did you toggle the Enfold > Performance > File Compression settings after adding the css code? Please make sure to purge the cache before checking the page, or just disable the compression and cache plugin temporarily while editing the site.

    Best regards,
    Ismael

    in reply to: Margin on grid row #1336987

    Hi,

    Thank you for the update.

    We cannot figure out why it resizes like that on Safari but we can see that the cell is not inheriting the full height of the grid row container. Have you tried replacing the Grid Row element with a Color Section? You should be able to reproduce the same layout using the Color Section elemen and it might get rid of the height issue with the grid row cells.

    Best regards,
    Ismael

    in reply to: Fonts Problem #1336986

    Hi,

    I don´t understand why one font is already working and I need to manually apply the second

    The font has to be applied manually because the theme overrides the css code that the plugin is using to apply the font. Please try the css code that we recommended above to change the font of the h1 tag or element.

    What is the heading element?

    They are the h1-h6 elements, usually use for titles. For additional assistance regarding the fonts, please contact the plugin authors.

    Best regards,
    Ismael

    Hi,

    Thank you for the access.

    Looks like it is including the post_translations and language taxonomies in the list. To fix the issue, we modified the config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.php and added this code around line 947.

    if( in_array($taxonomy_slug, array("post_translations", "language") ) )
    				{
    					continue;
    				}
    

    Best regards,
    Ismael

    in reply to: Disqus #1336982

    Hey Veronika,

    Thank you for the inquiry.

    Did you install a plugin to enable the Disqus platform? You can try the official plugin if you haven’t installed one already.

    // https://wordpress.org/plugins/disqus-comment-system/

    Best regards,
    Ismael

Viewing 30 posts - 10,801 through 10,830 (of 66,218 total)