Forum Replies Created

Viewing 30 posts - 22,201 through 22,230 (of 66,745 total)
  • Author
    Posts
  • Hi,

    Awesome! Glad that you found that option. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Full size header image #1109333

    Hi,

    Thanks for the update.

    Have you tried wrapping those columns inside a color section? You should be able to toggle the visibility of the color section for difference devices using the Screen Options.

    Best regards,
    Ismael

    in reply to: Submenu not sticky #1109332

    Hi,

    Good to hear. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hey mediafacto,

    You can add this code in the Quick CSS field to remove the menu overlay.

    #top .content .flex_column .widget_nav_menu li a:hover, #top .content .flex_column .widget_nav_menu ul:first-child>.current-menu-item, #top .content .flex_column .widget_nav_menu ul:first-child>.current_page_item {
        background-color: transparent;
    }

    Thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Change position of post-nav buttons below post #1109066

    Hi,

    You should be able to move the post nav by editing the single.php file. Look for this code around line 42:

    
    $blog_disabled = ( avia_get_option('disable_blog') == 'disable_blog' ) ? true : false;
    

    Below, add this code:

    
    echo "<div class='custom-post-nav'>";
    echo avia_post_nav();
    echo "</div>";
    

    And then use this css code to change the style of the navigation:

    #top .custom-post-nav {
        clear: both;
    }
    
    #top .avia-post-nav {
        position: relative;
        height: 110px;
    }
    
    #top .avia-post-nav .entry-info-wrap {
        width: auto;
    }

    After that, edit the footer.php file and remove this code around line 239 to disable the default navigation:

    echo $avia_post_nav;
    

    Best regards,
    Ismael

    in reply to: Form refresh the page on submit #1109060

    Hi,

    Glad that you were able to fix the initial issue. Have you tried setting another page as your 404 page?

    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

    Hey Grant,

    Thank you for using Enfold.

    You can disable the block or gutenberg editor from the Enfold > Theme Options panel. Look for the “Select Your Editor” settings. Let us know if it makes any difference.

    Best regards,
    Ismael

    in reply to: Tab Section – cant make tabs above/below content #1109048

    Hi,

    Thanks for the update.

    The account is still invalid. Please check it carefully. And make sure that the site is running on version 4.5.7.

    The translations in the lang > de_DE.po file seem to be correct.

    # @ avia_framework
    #: enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.php:228
    msgid "Display Tabs above content"
    msgstr "Reiter drüber anzeigen"
    
    # @ avia_framework
    #: enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.php:229
    msgid "Display Tabs below content"
    msgstr "Reiter darunter anzeigen"
    

    Are those the correct translations?

    Best regards,
    Ismael

    in reply to: Layer Slider zeigt keine Bilder an #1109046

    Hi,

    Thank you for the update.

    The images in the layer slider are not displaying because of Jetpack’s lazyload option. We disabled the plugin temporarily.

    Best regards,
    Ismael

    in reply to: Work method #1109043

    Hey Webvriend,

    Thank you for your concerns.

    We will ask @Gunter and @Kriesi to check this thread so that either one of them can you personally. Please wait for their response.

    Best regards,
    Ismael

    in reply to: A button directly to a picture gallery #1109001

    Hi,

    Thank you for the info.

    The gallery should be hidden on page load. You can use the following css code to do that.

    .my-custom-gallery { display: none; }
    

    Turn on the custom css class field first so that you can apply a special class attribute (ex: my-custom-gallery) to the gallery.

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

    You can then create a custom script that will toggle the visibility of the gallery when someone clicked on the “photo” button. The following function should help.

    // http://api.jquery.com/toggle/

    Best regards,
    Ismael

    in reply to: changing read more button with different language #1108996

    Hi,

    Have you tried using the suggested plugin above to translate the strings or text?

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

    You can find more info in the plugin’s documentation.

    // https://localise.biz/wordpress/plugin/beginners

    Best regards,
    Ismael

    Hi,

    Looks like a script is preventing the default action of the links, so it can’t open the assigned URL.

    Please add this script in the functions.php file to override that script:

    function ava_tribe_events_mobile_link(){
        ?>
        <script>
        (function($) {
            $('#tribe-events-content a').on('click', function(e) {
                e.preventDefault();
                window.location.href = $(this).attr('href');
            });
        })(jQuery);
        </script>
        <?php
        }
    add_action('wp_footer', 'ava_tribe_events_mobile_link');
    

    Thanks for the update.

    Best regards,
    Ismael

    in reply to: Reviews section is taking the page down #1108987

    Hi,

    Thank you for the update.

    Have you tried changing the tab title to “User Reviews” or “Customer Reviews” instead of just “Reviews”? It scrolls down because there is a container or anchor called “reviews” inside the tab section content.

    It does scroll down on my end, but I can still access the whole page properly after.

    Best regards,
    Ismael

    in reply to: HELP! Function to show different Homepage #1108986

    Hi,

    The theme is using the following filters to redirect to the page set as front page.

    add_filter('pre_option_show_on_front', 'avia_show_on_front_filter');
    add_filter('pre_option_page_on_front', 'avia_page_on_front_filter');
    

    You should be able to check that in the themes\enfold\includes\ folder. Look for the helper-template-logic.php file > avia_modify_front function.

    Best regards,
    Ismael

    in reply to: Shop view – active products in active category #1108977

    Hi,

    What is the login url for your WordPress site? The URL above takes us to a joomla site.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Event Tracking Social Media Links #1108975

    Hi,

    Thank you for the update.

    We applied an additional custom css class to the icons and adjusted the script accordingly.

    //-------------------------------
    // Social Media icons + tracking
    //-------------------------------
    add_action('wp_footer', 'ava_social_gtag');
    function ava_social_gtag(){
    ?>
    <script type="text/javascript">
        (function($) {  
            $('.cta-icons-kontakt-1 li:nth-child(1) a').on('click', function(e) {
                gtag('event', 'Click', { 'event_category': 'Whatsapp' })
            });
    
            $('.cta-icons-kontakt-1 li:nth-child(2) a').on('click', function(e) {
                gtag('event', 'Click', { 'event_category': 'Facebook' })
            });
    
            $('.cta-icons-kontakt-2 li:nth-child(1) a').on('click', function(e) {
                gtag('event', 'Click', { 'event_category': 'Phone' })
            });
    		
    		$('.cta-icons-kontakt-2 li:nth-child(2) a').on('click', function(e) {
                gtag('event', 'Click', { 'event_category': 'Email' })
            });
        })(jQuery);
    </script>
    <?php
    }

    The icons executes the gtag function now when clicked. (see private field)

    Best regards,
    Ismael

    in reply to: Portfolio grid display issue with Chrome and Firefox #1108972

    Hi,

    Awesome! Glad it worked. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: auction plugin compatibility with Enfold #1108969

    Hi,

    That hook removes the default sort element.

    You have to disable that code because it removes the default sorting element for the shop page.

    Best regards,
    Ismael

    in reply to: symbol box – own Icons #1108968

    Hi,

    I gave you the wrong link to the documentation. Sorry about that.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Your icon or image should have an svg format so that you can convert it to an icon font as described in the documentation above. That’s how you extend or include another icon font.

    Best regards,
    Ismael

    in reply to: Mix and Match does not count with Enfold theme #1108965

    Hi,

    You should try another compression plugin like Autoptimize instead of using the option in the theme.

    // https://wordpress.org/plugins/autoptimize/

    Let us know if it helps. Please open a new thread if it doesn’t make any difference. We’ll close this thread now.

    Best regards,
    Ismael

    in reply to: Problema. POST filter catagory #1108964

    Hi,

    Sorry for the confusion. We are not asking you to select the parent category. You need to select the child or sub category so that the element will only display items that belong to that particular category. For example, if you have a parent category called “Parent” and two sub categories “Child A” and “Child B”, all you need to do is select the category “Child A”. The element will then only display items that belong to the category “Child A”. Do not select or highlight the parent category because it will display both “Child A” and “Child B” items.

    Please post the login details in the private field so that we can check the portfolio setup. And additional screenshots will help.

    Best regards,
    Ismael

    Hi,

    I don’t have the budget for it though.

    Moving to a child theme is quite easy, so there’s no need to hire someone else. Just follow the instructions in the documentation.

    // https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme

    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.

    Use this css code to have the navigation display on load, without hovering.

    .avia-post-nav .entry-info-wrap {
        width: auto;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    We can’t access the dashboard using the account above. Did you disable it? We would like to check the slider settings.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    1-2.) This should adjust the size of the masonry image and get rid of the white border.

    .av-masonry-image-container img {
        width: 100%;
        object-fit: cover;
    }

    Sorry for the delay. We ask users to avoid including multiple questions in a single thread, however closely related they are, so that other users can effectively search the forum. And to keep the thread as short as possible. Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Portfolio grid display issue with Chrome and Firefox #1108810

    Hi,

    Thanks for the update.

    We adjusted the following line a bit and it seem to have fixed the issue. Please don’t forget to delete the cache prior to checking the page.

    $(window).trigger('debouncedresize');
    

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You should wrap the code inside a css media query if you don’t want it to affect the desktop view.

    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
       .main_color .container .av-inner-masonry-content, .main_color .container .av-masonry-entry .avia-arrow {
           background-color: transparent;
       }
    }
    

    Best regards,
    Ismael

    in reply to: enfold button nofollow shortcode #1108806

    Hi,

    @cg / @fromcouch: Thanks for the reply. It’s quite informative.

    Best regards,
    Ismael

    in reply to: Mobile menu on tablets not activating #1108804

    Hi,

    Thanks for the update.

    The css code in the following threads should help adjust the header/sidebar breakpoint.

    // https://kriesi.at/support/topic/changing-global-breakpoint-didnt-work/#post-1102885
    // https://kriesi.at/support/topic/change-media-break-to-activate-burger-menu-in-enfold-photography/#post-1085626

    Best regards,
    Ismael

Viewing 30 posts - 22,201 through 22,230 (of 66,745 total)