Forum Replies Created
-
AuthorPosts
-
Hi,
@venocl I tested Guenni007’s edited file in my child theme as posted here ensuring the directory structure is:/wp-content/themes/enfold-child/shortcodes/postslider/postslider.php
and it works correctly with the latest version
Thanks Guenni007Best regards,
MikeFebruary 13, 2022 at 9:02 pm in reply to: Editor not working without saving as a draft before #1340409Hey Nicolas,
Thank you for your patience, but the login you posted is not working.
I tried to test this on a new install using an editor role and was able to use the Advanced Layout Builder on a Post and a Page without saving, I could add and edit elements creating a full page/post. What user role did you have trouble with?
Did you test by disabling your plugins?
Are you using any user role or security plugins?
Did you try multiple user logins to ensure it was not only one user with this error?Best regards,
MikeFebruary 13, 2022 at 8:49 pm in reply to: Search page possibly creating outgoing internal links contain nofollow attribute #1340408Hi,
Thank you for your patience, I took a look at your pagehttps://domain.com/blog/page/2/
but it didn’t load ashttps://domain.com/blog/page/2/?s=
for me, I tried a few other paginations and none of them loaded with the trailing/?s=
You said that you tried the solution here and it didn’t work for you, I found that your page source code for this solution is showing the< and >
html entities incorrectly< and >
so please check your code and ensure when you paste it the html entities don’t change.
I also found that if you search the source code for?s=
the yoast-schema-graph is adding it:
so you may want to also look at that.
I hope this helps.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,
Your css is still being served from wpo-minify cache:
/wp-content/cache/wpo-minify/1644759388/assets/wpo-minify-header-070ae8c4.min.css
and it looks like cloudflare is active
are you also using litespeed caching on your server?
Try disabling all of these and check again in a few hours, it can take a while for these to stop serving the cache.
Please note that yesterday in my screenshot showing that the widget titles were centered, you can see that the “back to top” arrow was working fine, see the screenshot below in the Private Content area.Best regards,
MikeFebruary 13, 2022 at 7:04 pm in reply to: How to remove background from header area in responsive mode #1340397Hi,
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,
MikeFebruary 13, 2022 at 7:03 pm in reply to: Email sent via contact form shows admin email instead of configured email #1340396Hey mebi,
Thank you for your patience, I see that you are using Version: 4.8.6.2, I tried to recreate this issue on our current version 4.8.9.1 and was not able to recreate so I recommend updating to the current version.
Here is how I tested, I used a different address for each field describing the field used:
and I used (Email address hidden if logged out) as the contact form email, ie. the visitors email:
the email sent from the Autoresponder only shows the two Autoresponder address:
and the email sent to “you” the admin has the Reply-To as the contact’s email:
since this test was with the default WordPress PHP Mailer the only thing I can imagine is that either there was a bug in that version or you are using a SMTP plugin which is directing the emails through your mail server which is changing the email due to the server’s policies to combat spam, which if that is the reason you will have to talk to your web host as we can’t control them.
From the above test you can see that using the current theme with a new install the Autoresponder doesn’t show the admin email address.Best regards,
MikeHi,
Ok, to display the post meta data you either need to manually add the shortcode Yigit posted above to every post, which you don’t want to do, or change the Theme Options ▸ Blog Styling to one that shows the post meta data, the only issue you seem to have with this is that the excerpts are too short and the meta was above the excerpts, so I added this to your functions.php to make the excerpts longer:add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1); function avia_change_postgrid_excerpt_length($length) { $length = 300; return $length; }
and this to more the blog grid meta below the excerpt:
function custom_script() { ?> <script> (function($){ $( '.slide-entry' ).each(function() { $( this ).find( '.slide-meta' ).insertAfter( $(this).find('.entry-footer')); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');
I believe that it is very close to matching, probably no one will notice the change:
and now the posts have the meta:
Best regards,
MikeHi,
Do you mean you “back to top” arrow? I see your caching is active again, try disabling it and your cloudflare, then wait a while and check again.Best regards,
MikeFebruary 13, 2022 at 3:54 pm in reply to: Buttons flipping below each other in responsive view #1340388Hi,
Thanks for the screenshot, I see that Yigit’s css is meant to work up to 767px, which it does, at 768px is when the error begins until 990px
so please leave that css and include this css also:@media only screen and (min-width: 768px) and (max-width: 989px) { #top .flex_column.av-b06jd-7aa723c4880ea8922c045f58448a9c6d, #top .flex_column.av-3yndl-7bbbd9cec1b3026b5be7583f5d30dfb1 { width: 50% !important; display: inline-block; float: none; } #top .flex_column.av-am57p-d4ca5034c8232c647ae2a808fa9f3665,#top .flex_column.av-49jyx-6d77460c89009f4c568b495af470f2f4 { width: 100% !important; } }
After applying the css, please clear your browser cache and check.
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 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 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,
MikeHey Corina,
Please see this solution for the contentURL meta tag error.Best regards,
MikeHi,
For mobile you will need to use a smaller font size than 14px, but even then you will probably need to use two lines, I’m not sure how small you will want to go, but here is an example:@media only screen and (max-width: 767px) { #socket .copyright { font-size: 10px; display: inline-block!important; } }
Best regards,
MikeFebruary 13, 2022 at 3:00 pm in reply to: How to remove background from header area in responsive mode #1340369Hi,
To have a transparent mobile header please use Yigit’s css above:@media only screen and (max-width: 990px) { .responsive.html_mobile_menu_tablet #top #wrap_all #header { position: absolute; } .html_mobile_menu_tablet #top #wrap_all .av_header_transparency { background: transparent; } }
Now currently on desktop you have a fixed header that is transparent until you scroll, then it is blue, to have that blue transparent add the second css separately:#top .header_bg { background-color: transparent; }
Best regards,
MikeHi,
Glad this helps, sorry about the other thread, it sounded like we were done,
So a shadow to the burger menu icon will be a square shadow because the png image is square, you have two options inset box-shadow:
box-shadow: rgba(0, 0, 0, 0.6) 3px 2px 9px -3px inset;
and regular box-shadow:
box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
you would add them to the other css like this:
But I don’t think this is what you really want, I believe you want a shadow that outlines the hamburger image and for that you will need to add it via photoshop, you can probably get it done on fivver this afternoon.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,
I see, sorry you need to add it like this:#socket .copyright { float: none; width: 100%; display: inline-flex; justify-content: center; font-family: 'press-start-2p'; font-size: 15px; } #socket .copyright a { padding: 0 10px; }
one rule for copyright text, and one rule for copyright links.
Best regards,
MikeHey Jak73,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a { border-color: #fff; } #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a .avia-menu-text { font-size: 18px; font-family: 'verdana'; } #av-burger-menu-ul { background-repeat: no-repeat; background-image: url(https://joakims.art/wp-content/uploads/2022/02/bg-intro-2000px.jpg); background-position: 50% 100%; background-attachment: scroll; background-size: cover; }
adjust the background image to suit but ensure it is in a profile image that meets the desktop size at minimum, the mobile should be the same aspect and scales down fine.
Best regards,
MikeHi,
I don’t see the css above in your stylesheet, please check or add it in the WordPress ▸ Customize ▸ Additional CSS fieldBest regards,
MikeHi,
Try adding this:#socket .copyright a { padding: 0 10px; }
Then clear your browser cache and check.
Best regards,
MikeFebruary 12, 2022 at 11:25 pm in reply to: how can i make the burgee menu bigger and more noticeable? #1340313Hi,
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 hear, if you have other changes to make I would recommend leaving these off until you have made them so you are not fighting with them, shall we close this then?Best regards,
MikeFebruary 12, 2022 at 9:45 pm in reply to: Icon box colors not showing up correctly on live website #1340309Hi,
Glad to hear that you have this sorted out, please note that if you are minifying in WP Fastest Cache and merging in the theme options the second minification could lead to errors because minifying looks to remove spaces and some characters. Try to use the theme merging and the WP Fastest Caching, but disable the WP Fastest minifying.
I’m not knocking WP Fastest Cache, just multiple minifying, Autoptimize creates this error the most.
Shall we close this thread then?Best regards,
MikeFebruary 12, 2022 at 9:35 pm in reply to: Corrupted Thumbnails on Enfold Latest News Sidebar Widget #1340308Hi,
Glad to hear, it looks like the news thumbnail that is also the featured image for that post is getting the classeswp-caption featured
, which has the extra margin that the above css adjusted for, I’m not sure why I will need to test more and let the Dev Team know of my findings. Either way, I don’t expect this to affect you further in the future.
You can move your Quick CSS to your child theme stylesheet and comment out rules one at a time to check if they are still needed, this is probably a huge job :(
Another option is to use the chrome extension CSS Used, this will output all of the css used for the page you are viewing, if you copy the code to a text file and check a page, a post, an event, etc then you can compare it to your Quick CSS and see if any rules are not used, probably still a big job :|
I thought there used to be an extension that would output the un-used css from your stylesheet but I couldn’t find it, perhaps there is a plugin or a website that now does this, try searching for one as this would be the easiest solution :)Best regards,
MikeHi,
My screenshot above is in Chrome, please disable all caching and minifying plugins and leave it disabled for a day while the Cloudflare server cache catches up, if you are using Safari please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeFebruary 12, 2022 at 9:02 pm in reply to: how can i make the burgee menu bigger and more noticeable? #1340305Hey Jak73,
Ok, burger icon replaced with a hamburger:
Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.av-hamburger::before { content: url(https://img.icons8.com/external-sbts2018-lineal-color-sbts2018/58/000000/external-hamburger-fast-food-sbts2018-lineal-color-sbts2018.png); display: block; padding-top: 15px; } .av-hamburger-inner {display:none!important;}
After applying the css, please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts