Forum Replies Created
-
AuthorPosts
-
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,
MikeDecember 13, 2022 at 3:02 pm in reply to: Text blocks, icons and colour sections do not show the selected colour #1376056Hi,
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,
MikeDecember 13, 2022 at 2:41 pm in reply to: enfold saving didnt work! please reload the page and try again! #1376055Hi,
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,
MikeHi,
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,
MikeHey 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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeDecember 12, 2022 at 8:35 pm in reply to: Text blocks, icons and colour sections do not show the selected colour #1375990Hi,
Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
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,
MikeDecember 12, 2022 at 1:52 pm in reply to: Anchor link form hotspot to content section on the same page #1375945Hi,
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,
MikeHi,
It sounds like regenerating your thumbnails is the root cause. I recommend testing on your staging site to correct this.Best regards,
MikeDecember 12, 2022 at 1:41 pm in reply to: Changing size of blog images from sidebar affects images of backend #1375942Hi,
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,
MikeHi,
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,
MikeDecember 12, 2022 at 1:40 pm in reply to: Update to Enfold 5.2.1 breaks footer and other child elements #1375939Hi,
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,
MikeDecember 12, 2022 at 1:09 pm in reply to: Hidden full screen slider image is downloaded on phone #1375934Hi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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:
so perhaps this would help you overall.Best regards,
MikeHi,
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,
MikeDecember 11, 2022 at 9:28 pm in reply to: enfold saving didnt work! please reload the page and try again! #1375883Hi,
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,
MikeDecember 11, 2022 at 9:22 pm in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375881Hi,
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,
MikeHi,
Thank you for your explanation, featured images are picked in the featured image sidebar option, they are not automatically picked.
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,
MikeDecember 11, 2022 at 8:06 pm in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375875Hi,
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:
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 -
AuthorPosts