Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the screenshots your “weird” editor looks like it was added from a plugin, perhaps TinyMCE Advance, notice the “powered by Tiny” text.

Try finding the plugin and disabling it, this doesn’t occur in the theme with a new install so it is either a plugin or a customization.Best regards,
MikeHey InSilentio,
Thank you for your question, but I don’t think I fully understand because I don’t understand why you would want to create a new CPT that works exactly like the portfolio post type, when you could just use the portfolio post type.
You can use it for your sound instruments and classes and still use the portfolio and masonry element sorting by assigning categories to them, for example if you only want to show the “classes” and “design” categories in a portfolio element, you can just choose those:

then the frontend sort will only show these:

creating a new CPT that works exactly like the portfolio post type and have it recognized in all of the elements and options in the theme just seems like trying to re-invent the wheel.Best regards,
MikeJuly 10, 2022 at 6:36 pm in reply to: Hide top menu and logo, when the scroll reach on particular section. #1357887Hi,
Thank you for the login to your site I believe the issue was that your child theme functions.php was missing the top <?php
I added it back and the script and the css to your child theme stylesheet.
I also adjusted the offset to 10% so the header hides just before the table gets to it.
Please clear your browser cache and check.Best regards,
MikeHi,
Naturally 😃, thank you Shari for figuring this out 🙌 Well Done 🎉
If you have any further questions please create a new thread and we will gladly try to help you, before you can figure it out yourself 😃. Thank you for using Enfold.Best regards,
MikeHi,
Thanks for the feedback, so when I looked at your homepage on mobile the very first image is 100% width, I thought this was desired, then after it are some posts that your screenshot indicated to have the 6% padding, so far good right?
Now below when I see the other two full-width image sections, I assume they are like the top one and should remain full width, correct?
▸ Sind Gesichtssprays wirklich hilfreich?
▸ Sind Neujahrsvorsaetze gemacht um zu scheitern?
plus:
▸ Hier entsteht in Kürze ein Newsletter
Now originally I thought the posts after “Sind Gesichtssprays wirklich hilfreich?” were 6% also, but I see they are not, my mistake.
So for those grid rows I added a custom class paddingsix

and below the grid rows you have color sections with columns, so to include these I added the custom class fakepaddingsix

then I updated the css to this:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main .av-flex-cells .no_margin:not(.av-zero-column-padding), .responsive #top #wrap_all #main .av-flex-cells .paddingsix .no_margin { padding-left:6% !important; padding-right:6% !important; } .responsive #top #wrap_all #main .av-flex-cells .no_margin.av-zero-padding{ padding-left:0 !important; padding-right:0 !important; } #top .fakepaddingsix { width: calc(100vw - 14%)!important; position: relative !important; left: calc(-44vw + 50%) !important; } }please clear your browser cache and check.
Best regards,
MikeHey Ralph,
Thanks for the link to your site, but it doesn’t look like you have enabled the cookie consent message bar or modal window, so the first step to becoming compliant is to do this, once you enable it you can make the adjustments above in the options, please review our documentation.
Also see our blog post: ENFOLD and the GDPRBest 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,
MikeJuly 10, 2022 at 2:52 pm in reply to: Hide top menu and logo, when the scroll reach on particular section. #1357877Hey qhsedirectory,
Thanks for the link to your page, currently you have an error showing at the top of your page above your menu:/** Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then.*/this is the text in your child theme functions.php, please try removing any changes that you have made to correct.
As for hiding and showing the header when a specific place on the page is in view, I tested on an example page containing many columns with text blocks, and for one text block I added a custom class waypoint-trigger:

this “trigger” element is down a ways on the page so it is not in view on the page load:

then I added this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.waypoint-hide { position: fixed !important; top: -100px; width: 100%; z-index: 999; opacity: 0; background: #fff; transition: 0.3s all; box-shadow: 0 2px 3px rgba(0,0,0,0.15); } .waypoint-show { top: 0; opacity: 1; transition: 0.3s all; }and this code in the child theme functions.php file in WordPress ▸ Appearance ▸ Editor:
function custom_waypoint_trigger_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ var $header = $('#header_main'); var $things = $('.waypoint-trigger'); $things.waypoint(function(direction) { if (direction === 'down') { $header.addClass('waypoint-hide'); $header.removeClass('waypoint-show'); } if (direction === 'up') { $header.addClass('waypoint-show'); $header.removeClass('waypoint-hide'); } }, { offset: '95%' }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_waypoint_trigger_script');Note in the script the “offset” is 95%, this will trigger when the element is just in view, you can adjust to suit, such as 50% for when the element is in the middle of the page.
Please give this a try, I linked to my example page below.Best regards,
MikeHi,
Thank you for the link to your site, I added the css to your Quick CSS for both your EN & DE theme options, and it is now working, please clear your browser cache and check.
Please note that WPML creates a theme panel for each language, so often you need to make the changes in both.Best regards,
MikeHi,
Thanks for the login, it looks like your web host is deferring your jQuery, note that the options are not available in your theme options at Enfold Theme Options ▸ Performance ▸ Change WordPress Defaults

these are the options that you should see

You will need to ask your web host to restore the WordPress defaults as they have modified the default install.
Also note that your WordPress ▸ Tools ▸ Site Health says that your Debug mode is enabled, displaying errors on your site which is a critical security issue and recommends that you disable this.

Best regards,
MikeJuly 10, 2022 at 2:52 am in reply to: Mobile Fallback image appears before video on homepage #1357862Hi,
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, but unfortunately, I don’t have an iPhone or iPad to test with and I do not see this on a Galaxy Android, with Firefox, Chrome, or Brave.
But I’m sure we will be able to sort this out, thank you for your patience.Best regards,
MikeJuly 10, 2022 at 2:24 am in reply to: Certains sous-menu du menu principal s'affichent en gros et en violet #1357859Hey Eric,
Merci pour le lien vers votre site, les grandes couleurs violettes du titre du méga menu sont définies dans vos options de thème, si vous regardez dans votre Enfold Theme Options ▸ General Styling vous trouvez-en un qui soit violet. Les titres du méga menu sont traités comme des en-têtes plutôt que comme des liens simples, mais si vous voulez qu’ils ressemblent à des liens simples, essayez ce code dans le champ Style général ▸ CSS rapide ou dans le champ WordPress ▸ Personnaliser ▸ CSS supplémentaire :#top #header #header_main .mega_menu_title a { color: #c6d6be; font-size: 12px; font-weight: 400; } #top #header #header_main .mega_menu_title a:hover { color: #1078ff; }Après avoir appliqué le CSS, veuillez vider le cache de votre navigateur et vérifier.
— Translated with Google —
Thanks for the link to your site, the large purple mega menu title colors are set in your theme options, if you look in your Enfold Theme Options ▸ General Styling you will find one that purple. The mega menu titles are treated like headings rather than simple links, but if you want them to look like simple links please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:
#top #header #header_main .mega_menu_title a { color: #c6d6be; font-size: 12px; font-weight: 400; } #top #header #header_main .mega_menu_title a:hover { color: #1078ff; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the screenshots, unfortunately, I don’t see this on Android, I have asked the rest of the team to check with an iPhone, please include what version of iPhone you are using and what version of Safari you see this in. Have you also checked with Chrome and Firefox on your iPhone?Best regards,
MikeHey bonsaimedia,
Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#av-burger-menu-ul .avia_mega_text_block.menu-item-2701 { padding: 10px 30px; } #av-burger-menu-ul .avia_mega_text_block.menu-item-2701:before { content: "\ Diverse praktische informatie over roosterzaken, ICT, Ziek, te laat, verlof, etc. vindt u op ons communicatienet."; }After applying the css, please clear your browser cache and check.
Please see the screenshot in the Private Content area or 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,
It should link to the specific category archive page, not back to the blog page showing those category items.Best regards,
MikeJuly 10, 2022 at 12:57 am in reply to: Youtube link doesn't open in lightbox on mobile using Testimonials component #1357850Hey aestheticare,
Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.avia_mobile #top .avia-slider-testimonials { pointer-events: all; }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,
MikeHey Sozo,
Thanks for the login and link to your site, but I don’t see that your background image is “zoomed in” on mobile.
I noted that you said that it only shows on an actual device so I checked on my Android, since I don’t see anything I assume you are using an iPhone?
Please include a screenshot of what you are seeing on your device so we can understand better.
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
MikeHi,
Thank you for the link to your site, your SSL is working and I see that you have updated to v5.0.1 and you have no errors, glad to see that you and Nikko were able to sort this out, shall we close this then?Best regards,
MikeHey InSilentio,
Seems like a conflict, please create a test page with both buttons side-by-side so we can examine.
I can’t reproduce this on a clean install.Best regards,
MikeHey Veronika,
Try this instead:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main .av-flex-cells .no_margin:not(.av-zero-column-padding){ padding-left:6% !important; padding-right:6% !important; } .responsive #top #wrap_all #main .av-flex-cells .no_margin.av-zero-padding{ padding-left:0 !important; padding-right:0 !important; } }Best regards,
MikeJuly 9, 2022 at 11:40 pm in reply to: blog masonry-images overlapping the heading and excerpt #1357838Hey Veronika,
Since this has just occurred, could it be a result of some other changes? Can you retrace your last changes?Best regards,
MikeHi,
Thanks for the feedback I see from your screenshot you are using an iPhone, I only have an Android to test with and it is working correctly with it and in the Chrome Dev Tools, as you pointed out.
I tried adjusting the css by adding !important; toposition: fixed !important;

see if this helps, 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.
Perhaps @Guenni007 has an idea to address this for iPhones.Best regards,
MikeJuly 9, 2022 at 11:15 pm in reply to: Mobile Fallback image appears before video on homepage #1357835Hi,
Thanks for the feedback and the login, I duplicated your slider and on one I set the Element Visibility to only show on desktop:

and I removed the fallback image, on the other slider I set the Element Visibility to not show on desktop and left the fallback image so it will show on mobile devices.
Please clear your browser cache and check.Best regards,
MikeHi,
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 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 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 -
AuthorPosts
