Forum Replies Created

Viewing 30 posts - 991 through 1,020 (of 33,013 total)
  • Author
    Posts
  • in reply to: Info: automatic sitemap for your page #1446458

    Hey Guenter,
    Thank you for sharing, I left the page empty so the visual sitemap is centered in the page.
    But my install automatically creates /wp-sitemap.xml like this https://kriesi.at/themes/enfold-2017/wp-sitemap.xml
    Enfold Support 5912
    will Google Search Console not accept that link?

    Best regards,
    Mike

    in reply to: Images not exist in rankmath sitemap #1446456

    Hi,
    Thanks for the link, it recommends using ?page=n for pagination, this is their example:
    Enfold Support 5910
    we use ?avia-element-paging=n it is the same, it doesn’t have to be the word page.
    If you feel this is still an error you can submit a request to the Dev Team in their Github Feature Request for the Dev Team to review it.

    Best regards,
    Mike

    in reply to: Icon grid flip – close #1446436

    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: .mp3 player doesn’t work in IOS #1446433

    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

    Hey JoeSurf,
    Thank you for the link to your site while checking your pages I found this error:
    Deferred exception: $(…).pointer is not a function TypeError: $(…).pointer is not a function
    which seem to be from your Classic Editor so I disabled it, since you already have this option in the theme settings.
    All of your pages have these errors even if the backend loads:
    https://my.yoast.com/api/downloads/file/morphology-v2?plugin_version=11.5&site=https%3A%2F%2Fwww.yoursite.com 403 (Forbidden)
    https://www.yoursite.com/wp-admin/admin-ajax.php 500 (Internal Server Error)

    so for the Yoast plugin I guess you need to activate your Yoast SEO Premium subscription, and that would solve the first error
    Enfold Support 5908
    But I don’t know what is causing the /admin-ajax.php 500 (Internal Server Error) error.
    Try enabling WP Debugging on your site and this might help track this down.

    Best regards,
    Mike

    in reply to: Icon grid flip – close #1446387

    Hi,
    Thanks, it doesn’t seem to interfere with the mobile behavior.

    Best regards,
    Mike

    in reply to: Correct way to render excerpt on custom post template #1446146

    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: Highlight menu color #1446145

    Hi,
    Oh no, there are no silly questions, I hope that I didn’t sound like that, I was just saying where it came from.
    Glad we were able to help and have a good weekend, 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: Google Maps Failing to show #1446098

    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

    in reply to: the contact buttom miss when hover #1446096

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

    .main_color input[type='submit'].wpcf7-submit:hover {
    	background-color: #e94a3f;
        color: #ffffff;
        border-color: #c7281d;
    }

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

    Best regards,
    Mike

    Hi,
    For your pricing page try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .page-id-2429 .template-page.content.av-content-full.av-main-page {
    	padding: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Highlight menu color #1446088

    Hi,
    This color is from your browser, you will alos notice that it occurs on your logo and burger menu icon, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to remove it:

    .av-active-burger-items,
    #header_main .logo,
    #header_main .av-burger-menu-main {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .av-active-burger-items:focus,
    #header_main .logo:focus,
    #header_main .av-burger-menu-main:focus {
        outline: none !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: display custom taxonomies individually #1446076

    Hey jaitinrosa,
    If you need to display the info in different parts of the page you can use the “X” to show only the part you want, and the use several of these elements and place them where you wish on the page.
    Enfold Support 5906

    Best regards,
    Mike

    in reply to: Icon grid flip – close #1446070

    Hey Julie,
    Thank you for the link to your site, first I added the custom class click-to-close to your flipbox
    Enfold Support 5904
    Then I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_click_to_close_flipbox_script() { ?>
      <script>
    jQuery(document).ready(function($) {
        $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').hover(
            function() {
                var $flipback = $(this).find('.avia-icongrid-flipback');
                // Check if the transform is rotateY(0deg)
                if ($flipback.css('transform') == 'matrix(1, 0, 0, 1, 0, 0)') {
                    $(this).addClass('avia-hover');
                    console.log('avia-hover class added');
                }
            }
        );
    
        // Function to handle clicks outside the element
        $(document).on('click', function(event) {
            if (!$(event.target).closest('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').length) {
                $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').removeClass('avia-hover');
                console.log('avia-hover class removed');
            }
        });
    
        // Prevent clicks inside the element from triggering the document click handler
        $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').on('click', function(event) {
            event.stopPropagation();
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_click_to_close_flipbox_script', 99 );

    Now when you hover over the flipbox and it flips the class avia-hover is added to it so that it won’t flip back, until you click outside of the element, in which the class is removed.
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Menu Parallax Demo Issues #1446054

    Hi,
    When I check your site on my Android the Contact & Schedule mobile menu link works for me, it also works on my desktop emulating as a mobile device.

    Best regards,
    Mike

    in reply to: scaling fonts #1446051

    Hey Advantage09,
    Please see the theme options at Enfold Theme Options ▸ General Styling ▸ Typography ▸ Advanced Options: Customize Typography Settings
    you can set the default sizes
    Enfold Support 5902

    Best regards,
    Mike

    Hi,
    Thank you for the link to your site, I don’t know how to correct this in your vendor function, but this javascript will change the div into a H1.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function cision_title_heading() { ?>
      <script>
    (function($){
        var el = document.querySelector('.single-cision_block_post .entry-content-header .av-heading-wrapper');
        el.outerHTML = '<h1 class="av-heading-wrapper ">' + el.innerHTML + '</h1>';
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'cision_title_heading', 99 );

    Best regards,
    Mike

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field, it will make the icon larger and center vertically:

    .iconbox_left .iconbox_content {  
    	display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: 1fr;
      grid-auto-columns: auto 1fr;
      gap: 0px 0px;
      grid-auto-flow: column;
      align-items: center;
      justify-content: center;
    }
    .iconbox_left .iconbox_content .entry-content-header .iconbox_icon {
        height: 60px;
        width: 60px;
        font-size: 40px;
        top: 0;
        left: 0;
        align-content: center;
    }
    .iconbox_left .iconbox_content .entry-content-header {
      justify-self: center;
    }
    .iconbox_left .iconbox_content .iconbox_content_container p {
    	margin-top: 0;
    }

    Best regards,
    Mike

    Hi,
    When I check your page I see errors for your videos
    Refused to load the script ‘https://www.youtube.com/iframe_api&#8217; because it violates the following Content Security Policy directive: “script-src-elem ‘self’ ‘unsafe-inline'”.
    Refused to frame ‘https://player.vimeo.com/&#8217; because it violates the following Content Security Policy directive: “frame-src ‘self’ blob:”.

    I have not see this kind of error before but it seems that your plugin is causing a violation since you posted above the when it is disabled the videos work fine.

    Best regards,
    Mike

    in reply to: Footer showing cookie consent but not social icons #1446008

    Hi,
    Thank you for your patience your social media icons in the footer were hidden due to this css in your Quick CSS, I removed it for you
    Enfold Support 5896
    Please clear your browser cache and check.
    I didn’t find any issues with your cookie consent, when I click “accept” it hides.

    Best regards,
    Mike

    in reply to: Blogs slider #1445997

    Hi,
    Thank you for your patience I see that you have both v5.2.1 & v5.7.1 with the same Theme Name so I’m not sure how you have it setup to enable which parent theme is used, I see that v5.2.1 is currently loading. I also see that you have a custom header.php & footer.php in the child theme, we do not recommend adding these files to your child theme, it is the most common reason for errors when updating. Try removing these and see if this solves. You could replacing these with the header.php & footer.php from the v5.7.1 parent theme, but then you would need to manually update these with each update. I recommend removing these and any customizations you wish to make should be done in your child theme functions.php instead.
    If this doesn’t help then I would recommend looking at your custom avia-shortcodes files as it looks like you have created customized elements and I assume they were based on the older v5.2.1 elements:
    Enfold Support 5894
    The theme has changed a lot since then so you may need to review the elements from v5.7.1 and update your custom elements to suit.

    Best regards,
    Mike

    Hi,
    You will see that those items are from two of your plugin when you examine the file path:
    /wp-content/cache/fvm/
    /wp-content/plugins/ewww-image-optimizer/

    and the last one is your google tag manager, so you will probably want to leave all of these as is, since you already stated that your site is even slower without these plugins.

    Best regards,
    Mike

    in reply to: Accessibility of Enfold #1445930

    Hey Morgan,
    Thanks for your patience, typically the feedback we receive is positive and once in a while we are asked to address small issues. We don’t have a WCAG 2.0 testing account or a screen reader to test with, but you are welcome to test our demo.

    Best regards,
    Mike

    in reply to: .mp3 player doesn’t work in IOS #1445418

    Hey ajaxkls,
    Thank you for your patience, I checked your site on Mac in Safari and the mp in the sidebar played correctly, I double checked in Windows and it played the same.
    I only have a Mac desktop, are you seeing this error on a mobile device?
    I know that some iPads & iPhones can not update their Safari browsers, try posting your device model and the device Safari version number so we can try to reproduce the error.

    Best regards,
    Mike

    Hey Robert,
    Thanks for your patience, it seems that showing all of the recurring events would be the correct behavior.
    I checked both pages but they seem to show the same items, the only difference that I see is that the ALB page is sorted by Date then title ASC, and the shortcode page is by Date title DESC, but both show all of the items by date.
    Did you also update the events calendar version, perhaps the change is in the plugin? Are you using the Pro version?
    Please try rolling back the plugin version and see of that helps.

    Best regards,
    Mike

    Hi,
    It can cause a conflict, sometimes this is seen, if you notice an error try disabling it.

    Best regards,
    Mike

    in reply to: Images not exist in rankmath sitemap #1445411

    Hi,
    The url ?avia-element-paging=3 is correct and the Dev Tea has set this to not interfere with the WordPress pagination.
    In the past the pagination was as you point out but it caused a conflict and so the Dev Team changed this, if you feel this is in error you can submit a request to the Dev Team in their Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Full size images loaded in mobile mode #1445410

    Hi,
    This is true, I also found that the artificially throttle the scroces to 3g, which is much lower that most users.
    Since this is not a theme issue shall we close this thread then?

    Best regards,
    Mike

    Hi,
    Thanks your account looks activate, please open a new thread with this link
    Please remember you may need to login to the support forum first.
    Try to view this from the support forum and not from a email notification.

    Best regards,
    Mike

    in reply to: Full size images loaded in mobile mode #1445320

    Hi,
    Thank you for your patience, when I check your page as mobile the image src is 260px 153px
    Enfold Support 5892
    the other image sizes are in the srcset, which a available sizes for larger screens, so in this case the correct image size has been picked.
    When I test in lighthouse, it only tests the full image size even though the correct image height & width is there 260px 153px
    I researched this and found many comments like this, in this thread the lighthouse code serves up to 3x the image size in the test, and looks like they recommend changing it.
    So since we can see that the correct image is the src image, this looks like a error in the lighthouse test. The only recommend that I found was to use a tag for the test to work correctly, but this would not be effective just for the test.

    Best regards,
    Mike

Viewing 30 posts - 991 through 1,020 (of 33,013 total)