Forum Replies Created

Viewing 30 posts - 9,331 through 9,360 (of 34,660 total)
  • Author
    Posts
  • in reply to: Waypoints removed? #1376057

    Hi,
    Glad Günter was 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

    Hi,
    Thanks for the login, I see that when I am login in the icons are the correct size and white because all of the css files are loading, but when I’m logged out all of the css files are not loading and I don’t see and error message. I see that you are using Cloudflare and WP Rocket so I think one of these is the cause.
    Please try disabling these and clearing your Cloudflare cache online, it may take a few hours for this to stop serving the cache with the missing files then your site should work correctly.
    I don’t know all of the options and settings with Cloudflare but typically logged in users are not shown the cache so this explains why when we are logged in the icons show correctly and is why I believe Cloudflare or WP Rocket is showing a cache with missing files.
    If you know of a setting in Cloudflare or WP Rocket that would account for the difference between the logged in and out view then try adjusting those settings first otherwise disable an clear both for a clean start.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I see you are getting this error:

    Failed to load resource: the server responded with a status of 400 ()
    /wordpress/wp-admin/admin-ajax.php 400

    Please try disabling your plugins and see if it solves this, if it does try enabling your plugins again one at a time and text to find which one was causing the error.
    The 400 server error indicates that the server was unable to process the request, so if disabling the plugins doesn’t help try copying your server error log to a plain text file and linking to it in DropBox or Google Drive or similar so we can see if it points to the cause for the error.

    Best regards,
    Mike

    in reply to: Custom location breadcrumb #1376053

    Hi,
    Please try setting the color at Enfold Theme Options ▸ Advanced Styling ▸ Breadcrumbs
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Blog title after featured image #1376016

    Hey Madeleine,
    Thanks for the link to your site, as I understand you would like the title on the single posts after the featured image, the following function will do this for you but we would recommend placing it in your child theme functions.php file so that it won’t be lost the next time you update.
    While I couldn’t login it looks like you don’t have a child theme installed if you don’t want to install one you could use the plugin WPCode – Insert Headers, Footers, and Code Snippets, this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snipets.
    You would add this code as a PHP snippet.

    function single_post_title_after_featured_image() { ?>
      <script>
    (function($){
      $( '#top .post-entry' ).each(function() {
      $( this ).find( '.entry-content-header' ).insertAfter( $(this).find('.big-preview.single-big'));
      $( this ).find('.av-vertical-delimiter').insertAfter( $(this).find('.big-preview.single-big'));
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'single_post_title_after_featured_image');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Text extends beyond the edge of tables #1376014

    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: Display images in search #1376013

    Hi,
    If you want to show the image it did look good, I just checked again and now there are no images but numbers instead and that looks good also.

    Best regards,
    Mike

    in reply to: Header conflict #1376012

    Hi,
    Ok, this points to one of your customized child theme files as the cause, but you have so many customized child theme files that I recommend creating a staging copy of the site and then remove your customized files from the child theme and add them back one at a time to find which one is causing the error.

    Best regards,
    Mike

    in reply to: Enfold Customization #1375992

    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: Display images in search #1375991

    Hi,
    Sorry that this was not helpful, the title and image are in the same div. Perhaps you should leave the image above and just center it as that will be the best layout for mobile.

    Best regards,
    Mike

    Hi,
    My IP is in the screenshot above

    Best regards,
    Mike

    in reply to: Enfold Customization #1375988

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: define a headline with a different font #1375947

    Hi,
    The way you are commenting in your css is not correct:
    <!-- Türkis und Hintergrundfarbe Caveat für Headline 2 -->
    that is an HTML comment, CSS needs to be like this:
    /* Türkis und Hintergrundfarbe Caveat für Headline 2 */
    It does matter, please correct.

    Best regards,
    Mike

    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: Image Sizes #1375944

    Hi,
    It sounds like regenerating your thumbnails is the root cause. I recommend testing on your staging site to correct this.

    Best regards,
    Mike

    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: Mobile Optimization Grid Row Tablet Landscape #1375940

    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

    Hi,
    Glad to hear, please let us know after you test the update.
    In the link above the Dev Team explains it well, so your Dev’s workaround would be a good suggestion.
    Unfortunately, we can’t make our selectors any weaker and still have the same functionality.

    Best regards,
    Mike

    in reply to: Hidden full screen slider image is downloaded on phone #1375934

    Hi,
    The javascript was running before the slider was created in the DOM, so the error was that the slider was not found.
    This was because I originally loaded the script in the head add_action(‘wp_head’, , moving it to the footer corrects add_action(‘wp_footer’, this is the new script:

    function pure_javascript_remove_slider_on_mobile() { ?>
      <script>
    const fullscreenSlider = document.querySelector("#top.home .avia-fullscreen-slider");
    const viewportWidth = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0)
    function removefullscreenSlider(width){
        if(width <= 480){
            fullscreenSlider.parentNode.removeChild(fullscreenSlider);
        }
    return
    }
    removefullscreenSlider(viewportWidth);
    </script>
      <?php
    }
    add_action('wp_footer', 'pure_javascript_remove_slider_on_mobile');

    Please give this a try.

    Best regards,
    Mike

    in reply to: define a headline with a different font #1375903

    Hi,
    For green font instead of a green background color change to this:

    .av-special-heading.lime-background h2.av-special-heading-tag {
    color: #719430;
    font-family: 'Caveat', cursive;
    }

    Best regards,
    Mike

    in reply to: on phone no header, hamburger menu deeper #1375901

    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: Yoast SEO Problem mit Kriesi Theme #1375900

    Hi,
    Glad to try to help, but I didn’t see any difference when enabling/disabling yoast.
    We will leave this open while you double check.
    Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: define a headline with a different font #1375891

    Hi,
    You could add a custom class to your H2 element such as caveat-font and use this css:

    #top #wrap_all .all_colors .caveat-font h2 {
    	 font-family: 'Caveat', cursive;
    }
    

    Or you could add the font to the custom color class that you are using, but that was for a H1:

    .av-special-heading.turquoise-background h1.av-special-heading-tag {
    background-color: #24727c;
    font-family: 'Caveat', cursive;
    }

    If it is for a special heading that is an H2 then try this:

    .av-special-heading.turquoise-background h2.av-special-heading-tag {
    background-color: #24727c;
    font-family: 'Caveat', cursive;
    }

    Best regards,
    Mike

    in reply to: Yoast SEO Problem mit Kriesi Theme #1375888

    Hi,
    Thanks for the login to your site, when I checked the yoast plugin was active and I didn’t notice anything slow in your site loading so I ran two tests linked below.
    with Yoast disabled it had First View in 3.907s
    with Yoast abled it had First View in 3.978s
    So no real difference, your slowest items were images that you could probably compress.
    I tested your largest image on tinyjpg.com and it was able to make it 48% smaller:
    2022-12-11_009.jpeg
    so perhaps this would help you overall.

    Best regards,
    Mike

    in reply to: Poor layout architect handling when scrolling #1375885

    Hi,
    Thanks for linking to the duplicate thread for this, we will close this one since there is no need for duplicates.
    Thank you for your understanding and for using Enfold.

    Best regards,
    Mike

    in reply to: define a headline with a different font #1375884

    Hey Nic_007,
    Do you want all H2 to be this font?
    You can set this in Enfold Theme Options ▸ Advanced Styling choose the H2 element from the dropdown and choose the font.
    2022-12-11_008.jpeg

    Best regards,
    Mike

    Hi,
    Please explain what you are trying to do when you see this error so we can test and include an admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375881

    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: Blog Images #1375880

    Hi,
    Thank you for your explanation, featured images are picked in the featured image sidebar option, they are not automatically picked.
    2022-12-11_007.jpeg
    If you want to use an certain image as your featured image when you don’t choose one try the Default featured image plugin, I have tested it and it worked.
    It creates an option in WordPress ▸ Dashboard ▸ Settings ▸ Media, select the image and save the settings at the bottom of the page.

    Best regards,
    Mike

    in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375875

    Hi,
    To add a custom class to almost any element in Enfold open the element and look in the Advanced tab and then in the Developer Settings and you will see the Custom Class field:
    2022-12-11_006.jpeg
    To make the background color just a little bit larger than the text I changed the css to this:

    .av-special-heading.turquoise-background h1.av-special-heading-tag {
       background-color: #24727c;
        display: inline;
        padding: 0 20px;
        margin-left: -20px;	
    }
    .av-special-heading.lime-background h1.av-special-heading-tag {
        background-color: #719430;
        display: inline;
        padding: 0 20px;
        margin-left: -20px;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 9,331 through 9,360 (of 34,660 total)