Forum Replies Created

Viewing 30 posts - 22,531 through 22,560 (of 66,739 total)
  • Author
    Posts
  • in reply to: Cant change widgets or menu #1101736

    Hi,

    Thanks for the update.

    Did you copy that code from your email? Please copy it directly from the forum to avoid the conversion of signs or symbols to their character code.

    Best regards,
    Ismael

    in reply to: Easy Slider – Slide direction #1101735

    Hi,


    @mintsuze
    : You can now find that script in the config-templatebuilder > aviashortcodes > slideshow > slideshow.js file. If you want to override it in your child theme, you have to add the “avia_load_shortcodes” filter and create a new folder called “shortcodes” or whatever path name it is that is set in the filter.

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

    Best regards,
    Ismael

    in reply to: Testimonials gone and Video Widget #1101728

    Hi,

    Thanks for the update.

    I don’t have a Safari browser to check this with, so I’ll ask the team to help. Can you provide a screenshot of the page or the facebook video section on Safari?

    Best regards,
    Ismael

    in reply to: Need some custom code #1101725

    Hi,

    We would like to apologize for the late response.

    1.) For that, you can use this css code to adjust the position of the menu items whenever the page scrolled.

    .header-scrolled .avia-menu.av-main-nav-wrap {
        margin-top: 0 !important;
    }

    Make sure that you add it right after this css code.

    .avia-menu.av-main-nav-wrap {
        margin-top: 23px !important;
    }
    

    2.) The layer slider is by default, a full width element, so it pushes the sidebar underneath it. Try to add the layer slider shortcode inside a text or block.

    Best regards,
    Ismael

    in reply to: Mega Menu Styling Issue #1101723

    Hi,

    Thanks for the update.

    It doesn’t work because there’s a PHP code and a random URL inside your Quick CSS field, which is not supposed to be there. The PHP code should be added in the function.php file. This is the code.

    remove_action('tribe_events_single_event_after_the_meta', 'tribe_single_related_events');
    

    And please copy the code directly from the forum instead of your email. That usually converts symbols into their html entity code and the conversion breaks the code.

    We corrected the code. Please check the page again after removing the browser cache.

    Best regards,
    Ismael

    in reply to: ampforwp #1101720

    Hi,

    Thanks for the update.

    The theme is not amp ready yet, but we do have some recommendations on how you can optimize the theme without amp. You can find those in the following article.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Reverse blog post order for specific post types? #1101662

    Hi,

    Awesome. Glad that you a solution. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Reverse blog post order for specific post types? #1101660

    Hi,

    Awesome. Glad that you a solution. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Back end, front end, not working #1101657

    Hi,

    Thanks for the update.

    We can’t figure out the issue. We edited a few files and deactivated the plugins to no avail. We also tried to login in the dashboard but the previous info is no longer valid. Please provide another account so that we can recheck the settings.

    Best regards,
    Ismael

    in reply to: Shrinking Header on Tablet #1101651

    Hey Photoart-Huebner,

    Thank you for using Enfold.

    Do you want the header to shrink on tablet view? That behavior is disabled by default. You can only enable it for desktop view, unfortunately.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You can set the sub menu items to display on hover instead of click. Please go to the Enfold > Main Menu > Burger/Mobile Menu panel and set the “Menu Icon Submenu items” to “Display submenu items on hover”.

    Best regards,
    Ismael

    Hi,

    We would like to apologize for the late response.

    The following filter should help fix the issue. Please add it in the functions.php file.

    function ava_remove_parent_filters() {
    	remove_filter('comments_open', 'av_comments_on_builder_posts_required');
    }
    add_action( 'after_setup_theme', 'ava_remove_parent_filters' );
    

    Best regards,
    Ismael

    in reply to: Blog Layout Page and Post #1101634

    Hi,

    Thanks for the update.

    1.) Looks like you’re using a plugin for the related posts section. You can use this css code to remove that.

    #jp-relatedposts {
        display: none !important;
    }

    2.) This css code should add spaces between or underneath the portfolio items.

    #top .no_margin.av_one_third {
        margin-bottom: 50px;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Yes, you can apply an ID to a specific color section so that you can easily distinguish them from other sections. The Section ID is going to be added beside the element name. Example:

    Color section: my_custom_id
    

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    That is for the “Fullwidth Submenu” element and it works the same as the “Menu Items for mobile” settings. You can use this css modification to adjust the breakpoint.

    @media only screen and (max-width: 1400px) and (min-width: 768px) {
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
        display: block;
    }
    
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: none;
    }
    }

    Best regards,
    Ismael

    in reply to: Disable image overlay function? #1101619

    Hi,

    Thanks for the update.

    Did you toggle the Enfold > Performance > File Compression settings after adjusting the “Linked image overlays” advanced styling? That will only work for images with links.

    Best regards,
    Ismael

    in reply to: How to add a label to the portfolio grid #1101616

    Hey liquidsociety,

    Thank you for using Enfold.

    Did you enable the excerpt? Try to add a container with a custom class attribute in the excerpt field. Example:

    
    <div class="av-availability sold-out">SOLD OUT</div>
    

    You can then use that class attribute to style that particular container.

    .av-availability {
        position: absolute;
        top: 20px;
        right : 20px;
        background: green;
        color: white;
        padding: 7px 14px;
    }
    
    .av-availability.sold-out {
        background: red;
    }
    
    .av-availability.fifty-sold {
        background: orange;
    }
    
    .av-availability.new {
        background: blue;
    }

    You can also modify the config-templatebuilder > aviashortcodes > portfolio > portfolio.php file directly.

    Best regards,
    Ismael

    in reply to: licence #1101615

    Hi,

    Thanks for thee update.

    It doesn’t really matter which domain the theme is installed. All you need to do is generate a new access token, set the required permission and put that token in the theme options so that you can automatically update the theme in the future. You can find more info about that in the documentation.

    // https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Ismael

    in reply to: Sub menu roll out delay #1101610

    Hi,

    Thanks for the update.

    You may need to modify the js > avia-snippet-megamenu.js file for that. Look for the this line:

    // bind events for dropdown menu
    

    Try to specify the duration of the animate function.

    Best regards,
    Ismael

    in reply to: Menu Not Visible #1101350

    Hi,

    Thanks for the info.

    Can you generate another login token? The previous one has expired. Please add it in the private field. We’ll check the issue afterwards.

    Best regards,
    Ismael

    in reply to: Options for Display of Custom Post Types #1101345

    Hey NicomIT,

    Thank you for using Enfold.

    On a quick search, I found the following plugin which might help.

    // https://wordpress.org/plugins/custom-post-type-widgets/

    The plugin allows you to display items from a custom post type or taxonomy.

    Best regards,
    Ismael

    in reply to: layerslider thumbnails #1101342

    Hi,

    Thanks for the update.

    The slider sets the height of the layer container but it doesn’t take into account or include the height of the thumbnail wrapper. You can use the css code above or apply a bottom margin to the layer slider itself. Enabling the custom css class field should help.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: scrolling not jumping #1101329

    Hi,

    We would like to apologize for the late response.

    We’d like to help you with the issue, but this thread is bit too long, so we’re having difficulty reviewing it. Would you mind opening a new thread for other issues? We do encourage users to open a fresh thread or ticket for each inquiry because having multiple questions on a single ticket become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Submenu active menu item #1101321

    Hi,

    Thanks for the update.

    You have to remove the relative path and leave the anchor in the link field. For example, we replaced “/soluciones/informatica-corporativa/#servidores-y-virtualizacion” with “#servidores-y-virtualizacion”. That should tell the script that this particular menu item is related to the “#servidores-y-virtualizacion” section.

    Best regards,
    Ismael

    in reply to: error404.php Sprache ändern in de_DE.po #1101313

    Hi,

    Thanks for the update.

    Did you specify the exact line in the .po file where the code is? Example:

    # @ avia_framework
    #: includes/error404.php:31 includes/loop-search.php:137
    msgid "Or contact us and we will answer your question."
    msgstr "ADD THE TRANSLATION HERE"
    

    Since you appended it at the very last of the list, the code should be on line 31. Don’t forget to sync or compile the language file after adding the translation.

    If you don’t want to edit the file manually, you can use the Loco Translate plugin.

    // https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    in reply to: Blank layout for post – post without header #1101310

    Hi,

    Thanks for the update.

    In the post editor, there is a panel called Layout. You can set the “Header visibility and transparency” to the very last option (Hide header on this page). You can also hide the socket and the footer if necessary. Please note that these options are only available if you’re using the default top header (General Layout > Layout > Logo and Main Menu) , not left or right sidebar.

    Best regards,
    Ismael

    Hi,

    We hope that you or your clients don’t encounter that issue anymore. Please feel free to open a new thread if you do.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Spaceing between Main Menu and Megamenu Submenu #1101296

    Hi,

    Thanks for the info.

    You can use this css to move the mega menu container downward.

    #top #wrap_all .avia_mega_div {
        margin-top: 0;
    }

    Best regards,
    Ismael

    in reply to: Button Row Different Color Scheme #1101294

    Hey eskitaco,

    Thank you for using Enfold.

    Use a pseudo or nth child css selector. Some examples can be found in this article.

    // https://css-tricks.com/almanac/selectors/n/nth-child/

    Best regards,
    Ismael

    in reply to: masonry gallery transition time – how to change? #1101291

    Hi,

    Thanks for the update.

    You have to modify this code around line 832:

    displaySlide.css(properties).avia_animate({opacity:1}, self.options.transitionSpeed/2, 'linear', function()
    				{
    					hideSlide.avia_animate({opacity:0}, 200, 'linear', fadeCallback);
    				});
    

    Set the transition speed from 200 to the same speed set in the slider options.

    displaySlide.css(properties).avia_animate({opacity:1}, self.options.transitionSpeed/2, 'linear', function()
    				{
    					hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear', fadeCallback);
    				});
    

    Best regards,
    Ismael

Viewing 30 posts - 22,531 through 22,560 (of 66,739 total)