Forum Replies Created

Viewing 30 posts - 151 through 180 (of 34,144 total)
  • Author
    Posts
  • in reply to: Blog post featured image size #1479911

    Hi,
    Your image is cropped, see below.
    You could try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'post_thumbnail_size', 'custom_single_event_post_thumbnail_size' );
    function custom_single_event_post_thumbnail_size($size) {
        if( !is_singular('post') ) {
            return;
        }
        if( ! has_post_thumbnail() ) {
            return;
        }
        $size = 'full'; 
        return $size;
    }

    otherwise we would need a login to examine.

    Best regards,
    Mike

    in reply to: Add class to avia-gallery-thumb conditionally #1479910

    Hey betaphase,
    We don’t have a conditional method, I believe that there is a css solution to count the items and apply the css if there is only one item, but we will need to see two examples, for one item and another for more.
    Otherwise this will need to be a Github Feature Request

    Best regards,
    Mike

    in reply to: Remove vertical line next to video #1479909

    Hey Jusdem,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-video, .avia-video iframe, .avia-video video {
        background-color: #fff;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hamburger Menu with strange background #1479908

    Hey Bernd,
    It looks like you have this custom css:

    nav a {
        color: rgb(255, 255, 255) !important;
        background-color: rgb(0, 98, 54) !important;
    }

    try removing the background color.

    Best regards,
    Mike

    in reply to: Best demo for a blog focussed site driven by Categories #1479907

    Hey John,
    Try using the “blog element” as in this demo: https://kriesi.at/themes/enfold-2017/blog/blog-default/

    Best regards,
    Mike

    in reply to: Place excerpt text in a Masonry gallery below the image #1479906

    Hey tribaleye13,
    Please link to your site and possibly a admin login so we can examine.

    Best regards,
    Mike

    in reply to: theme uodate – Vnaish Canada #1479905

    Hey Mohanned
    Please explain what theme version you are now using and what PHP version you are using, and what issues that you see.
    It would help to have a admin login so we can see the site and issues, to advise.

    Best regards,
    Mike

    in reply to: Importing theme pages #1479904

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Ok we will close this thread, please open a new one if you still have issues.

    Best regards,
    Mike

    in reply to: Animated logo appears not animated #1479888

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Hide default WPML language switcher #1479871

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add Jquery code does not work #1479805

    Hey Freek,
    I see you have the error: Uncaught TypeError: $ is not a function
    your top half of the code is javascript, but the second half is jQuery which needs to be wrapped with this:

    (function($) {
    //your code here
    })(jQuery);

    like this:

    <style>
    .bootstrap .player-selection-ul li.player-selection-li{
    padding: 6px 15px;
    line-height: 1;
    }
    </style>
    <link href="https://nl.escapeall.com/Content/API/styles.css" rel="stylesheet">
    <link href="https://nl.escapeall.com/CustomCss/fun-thrills.css" rel="stylesheet">
    <script type="text/javascript">
    function updatePlayersOptions(element) {
        var jThis = ea_jQuery(element);
        const selectedLanes = parseInt(jThis.find('option:selected').data('quantity')) || 0;
        const maxPlayers = selectedLanes * 6;
        jThis.closest(".alert-reservation-added").find('.extra-options-row-2 option').each(function () {
            const playerCount = parseInt(ea_jQuery(this).val()) || 0;
            if (playerCount > maxPlayers) {
                ea_jQuery(this).prop('disabled', true).hide();
            } else {
                ea_jQuery(this).prop('disabled', false).show();
            }
        });
    }
    (function($) {
    $(document).ready(function() {
    $.getScript("https://nl.escapeall.com/Scripts/API/all.js", function (data, textStatus, jqxhr) {
    GetBookingCalendra('#BookingId', {
            ServiceId: ['23fa314b-449e-4881-9b8d-3674fa6bdeab'],
            lang: 'nl',
            Template: 9,
            QuantitySelectionAsPlayers: true,
            FirstWeekDay: 'Monday',
            InitialQuantity: 1,
            successReservationSelected: function (reserv) {
                console.log('hello');
            },
            success: function () {
                ea_jQuery('.choose-player-panel h4').text('Aantal banen');
                ea_jQuery('.service-time-selection-panel h4').text('Tijd en Prijs');
                ea_jQuery('.player-selection-ul li[data-quantity="1"]').html('1<br/><small>1-6 spelers</small>');
                ea_jQuery('.player-selection-ul li[data-quantity="2"]').html('2<br/><small>2-12 spelers</small>');
                ea_jQuery('.player-selection-ul li[data-quantity="3"]').html('3<br/><small>3-18 spelers</small>');
                ea_jQuery('.player-selection-ul li[data-quantity="4"]').html('4<br/><small>4-24 spelers</small>');
                ea_jQuery('.service-time-selection-panel h4').text(' Activiteit en tijd');
                ea_jQuery(document).on('change', '.multiple-reservation-price', function (e) {
                    updatePlayersOptions(this);
                });
            },
            successReservationSelected: function (toBeAppended) {
                updatePlayersOptions(ea_jQuery(".multiple-reservation-price", toBeAppended));
            }
        });
    });
    });
    })(jQuery);
    </script>
    <div id="BookingId"></div>
    <div class="escapeall">Booking System powered by: <a href="https://nl.escapeall.com/">Escape<span>All</span></a></div>
    

    Best regards,
    Mike

    in reply to: Contact-Form: How to send a copy to the sender? #1479804

    Hi,
    and the email addresses:
    Enfold Support 6613
    perhaps your email is in the spam folder, or it is being marked as spame and the server is deleting it. Try using a email address from your domain and set your site to use SMTP for sending emails with a login and password instead of using the default WP php mail.
    See this plugin: WP Mail SMTP

    Best regards,
    Mike

    in reply to: Tab Section – Direct links for tabs #1479803

    Hi,
    I made adjustment and it now works, please check.

    Best regards,
    Mike

    in reply to: cookie banner needs some work #1479667

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia_cookie_text {
    	max-width: 50%;
    	line-height: 12px;
    }

    Screen Shot 2025 03 18 at 6.08.00 PM

    Best regards,
    Mike

    in reply to: Enfold download #1479664

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Tab Section – Direct links for tabs #1479659

    Hi,
    Perhaps you copied the code from an email instead of the forum, or you have an error in your child theme functions.php file.
    Please include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Setting up two new social profiles under Enfold 7.1 #1479658

    Hi,
    I tested your fontello-d73127ed.zip and added this php code to my functions.php

    function avia_add_custom_icon($icons) {
    $icons['mastodon'] = array( 'font' =>'mastodon-bluesky', 'icon' => 'ue800');
    $icons['bluesky'] = array( 'font' =>'mastodon-bluesky', 'icon' => 'ue801');	
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    $icons['mastodon'] = 'mastodon';
    $icons['bluesky'] = 'bluesky';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args){
        $mastodon = array('mastodon' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.mastodon.com/", 'label' => __("Share on mastodon",'avia_framework')));
    	$bluesky = array('bluesky' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.bluesky.com/", 'label' => __("Share on bluesky",'avia_framework')));
        $args = array_merge($mastodon,$bluesky, $args);
        return $args;
    }

    and this css to my quick css:

    #top #wrap_all .av-social-link-mastodon:hover a{
        color:#fff; 
        background-color:blue; 
    }
    #top #wrap_all .av-social-link-bluesky:hover a{
        color:#fff; 
        background-color:blue; 
    }

    and they both show in my social profiles:
    Screen Shot 2025 03 18 at 4.09.25 PM
    and in my “Profile Links At The Bottom Of Your Blog Post”
    Screen Shot 2025 03 18 at 4.11.09 PM
    and in the header:
    Screen Shot 2025 03 18 at 4.15.24 PM
    and in the “Share this entry” on blog posts:
    Screen Shot 2025 03 18 at 4.16.42 PM
    please give this a try.

    Best regards,
    Mike

    in reply to: Line appears under header in mobile views #1479489

    Hey ausgesonnen,
    This is from the top border of a section that you only show on mobile, to remove it try this css:

    #av_section_2.container_wrap.av-desktop-hide.av-medium-hide {
        border-top-style: none;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey distortedimage,
    Try this css instead:

    #top .package-slider .avia-slideshow-arrows.avia-slideshow-controls a.prev-slide:before {
        content: "<" !important;
    }
    #top .package-slider .avia-slideshow-arrows.avia-slideshow-controls a.next-slide:before {
        content: '>' !important;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 03 16 at 3.11.36 PM

    Best regards,
    Mike

    in reply to: horizontal gallery must click twice #1479487

    Hi,
    Glad to hear that you have this sorted out, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Tab Section – Direct links for tabs #1479486

    Hey amyncuih,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_action( 'wp_footer', 'ava_custom_script_tab_section',99 );
    function ava_custom_script_tab_section() {
        ?>
    <script>
    window.addEventListener('DOMContentLoaded', function() {
        (function($) {
            function scrollToTab(s, e) {
                $(s).on(e, function(event) {
                    var anchor, loc, cur, hash, tab, parent, pos;
                    if( e == 'load' ) {
                        loc = window.location.hash;
                        hash = loc;
                    } else {
                        loc = $(this).attr('href');
                        hash = loc.substring(loc.indexOf('#'));
                    }
                    tab = $('.av-section-tab-title[href="'+ hash +'"]');
                    parent = tab.parents('.av-tab-section-outer-container');
                    pos = parent.offset();
                    tab.trigger('click');
                    if(hash) {
                        setTimeout( function() {
                            $(window).scrollTop( pos.top - 100 )
                        }, 100 );
                    }
                });
            }
            scrollToTab( '.avia-buttonrow-wrap a', 'click' );
            scrollToTab( window, 'load' );
        })(jQuery);
    });
    </script>
        <?php
    }
    
    add_theme_support( 'deactivate_tribe_events_calendar');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Header on mobile view sticks #1479474

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Table with image pushing text below #1479473

    Hey finchkelsey,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-data-table-wrap td {
    	vertical-align: top;
    }

    Screen Shot 2025 03 16 at 9.07.45 AM

    Best regards,
    Mike

    in reply to: navigation – Logo centred – Laptop view #1479468

    Hey Diana,
    Since your menu is too large for screens lower than 1500px you should display the mobile menu instead, I changed this for you
    Screen Shot 2025 03 16 at 8.39.36 AM
    Screen Shot 2025 03 16 at 8.40.03 AM
    clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header on mobile view sticks #1479467

    Hey ausgesonnen,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 989px) { 
    .html_header_sticky.html_mobile_menu_tablet #top #wrap_all #header, .html_header_sticky.html_header_transparency #top #wrap_all #header, .html_header_sticky #top #wrap_all #header {
        position: absolute !important;
    }
    }

    Best regards,
    Mike

    in reply to: Theme is showing as “broken” in WordPress #1479466

    Hi,
    It looks like someone changed the directory name from “enfold” to “enfold-” with a dash:
    Screen Shot 2025 03 16 at 8.02.07 AM
    This maybe the issue, you will need to change this via ftp or your webhost file manager

    Best regards,
    Mike

    in reply to: Theme is showing as “broken” in WordPress #1479465

    Hi,
    When I check your parent theme enfold looks correct:
    Screen Shot 2025 03 16 at 7.36.15 AM
    and in the child theme the Template name looks correct:
    Screen Shot 2025 03 16 at 7.44.55 AM
    but I have not seen this code in your child theme functions.php:
    Screen Shot 2025 03 16 at 7.47.42 AM
    I tried commenting it out, but it didn’t help.
    Currently you have the Twenty Twenty-Five active, I’m not sure what your critical error was, perhaps the best solution is to restore from a older backup.

    Best regards,
    Mike

    in reply to: Can’t change a picture on homepage parallax #1479459

    Hey Sandra,
    First, click the edit button for the half column:
    Screen Shot 2025 03 16 at 7.17.07 AM
    then change under design:
    Screen Shot 2025 03 16 at 7.19.42 AM

    Best regards,
    Mike

    in reply to: why does @container query rule not work #1479458

    Hi,
    Thanks for sharing your findings.

    Best regards,
    Mike

Viewing 30 posts - 151 through 180 (of 34,144 total)