Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the late reply, I see that you have imported the default Enfold demo, this demo doesn’t include all of the images and content, please add your own images and content, or try the 2017 Enfold demo that does include the images and content.

You can use the “Single Portfolio 2/3 Slider” as a service page, I’m not sure I understand what you mean by “other portfolio options they want to set as a portfolio submenus”
Please explain what you are having issues with when setting up the “Single Portfolio 2/3 Slider” as a service.Best regards,
MikeHey Knoblich,
Sorry for the late reply, please see our documentation here.
Please keep in mind that we can not give legal advice, but you can read the EU cookie law here, and if you are still unsure please consult with a law expert in your country.Best regards,
MikeHi,
Sorry for the late reply, I was also blocked from the login page.
Please try disabling your plugins and cacheBest regards,
MikeHi,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.archive .sidebar_left .widget { float:left !important; text-align: left !important; } #top.archive .sidebar_left .widget li { margin-left: 1em !important; padding: 3px 0 !important; } #top.archive .sidebar_left .widget li a { color: #2a6077 !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Thanks for the login, I checked your site and found the error is coming from your mailchimp widget, you are getting this error:
magnificPopup is not a functiontypically this occurs when jQuery is loaded in the footer, but in your case it is loading in the head. I found removing this javascript link from your widget solves:
downloads.mailchimp.com/js/signup-forms/popup/embed.jsso there seems to be a conflict.
I recommend that you use the Enfold mailchimp widget instead of using this code.Best regards,
MikeNovember 16, 2019 at 5:47 pm in reply to: Enfold: Latest version of Event Calendar not working with Counter #1157515Hi,
Thank you, I tested the event countdown element on my localhost with the latest version and it works correctly.
I took a look at your event countdown element and found an error in it, it didn’t have the event taxonomies option because your events didn’t have any categories so I added one as a test and I also disabled your plugins to see if there was a conflict, but the error continued, without any error messages in the console. I then downloaded your theme and event calendar plugin to my localhost believing there may be a corrupt file, but both worked correctly on my localhost.
I looked at your functions.php for custom scripts but found none.So I was unable to discover what this cause was, I will ask the rest of the team to take a look, please leave the plugins disabled on your dev site so the team can check quickly without having to disable.
Best regards,
MikeNovember 16, 2019 at 2:34 pm in reply to: ADD MAPBOX INSTEAD OF GOOGLE MAP – MUCH NICER STYLE #1157465Hi,
Thank you, I’m sure this will help out many people, I can confirm that this works.
Here is what I added to a code block element:<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.js'></script> <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.css' rel='stylesheet' /> <style> #map { position:absolute; top:0; bottom:0; width:100%; height: 100vh;} .avia_codeblock_section {height: 100vh;} </style> <div id='map'></div> <script> mapboxgl.accessToken = 'pk.eyJ1IjoiZ2RsbndzIiwiYSI6ImNrMW11Ym9jMjAzMjQzZ25xam1oMmhwcnoifQ.JSIPcNr0kAA5KYkzqoZW_g'; var map = new mapboxgl.Map({ container: 'map', // container id style: 'mapbox://styles/mapbox/dark-v10', //hosted style id center: [-77.38, 39], // starting position zoom: 3 // starting zoom }); map.on('load', function() { // Add a single point to the map map.addSource('point', { "type": "geojson", "data": { "type": "FeatureCollection", "features": [{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.38, 39] } }] } }); map.addLayer({ "id": "point", "type": "circle", "source": "point", "paint": { "circle-radius": 10, "circle-color": "#ffa500" } }); }); </script>and the result:

Shall we close this then?Best regards,
MikeHi,
Please include an admin login in the Private Content area so we can take a look.Best regards,
MikeHi,
Thank you for the cPanel and WordPress logins, I have taken a look at your site and I adjusted your child theme so that it work correctly, the issue was that your parent theme was not in the default directory. I then moved your gtag scripts to the child theme functions.php and corrected the curly quotes in the code, and cleared your Autoptimize cache, and tested to ensure your scripts loaded correctly, which they do now.
Please clear your browser cache and check.Best regards,
MikeHi,
Thank you for the login, I commented out your css and adjusted the function to this:function custom_logo_script(){ ?> <script> (function($){ $(window).load(function(){ $('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '175%' }); $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 5) { $('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '100%' }); $('.logo .subtext img.alternate').attr("src","https://lnsc.nl/lnsc2020/wp-content/uploads/Logo-LNSC2020-240.png"); } else if (scroll <= 5){ $('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '175%' }); $('.logo .subtext img.alternate').attr("src","https://lnsc.nl/lnsc2020/wp-content/uploads/Logo-LNSC-2020-240.png"); } else { $('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '175%' }); $('.logo .subtext img.alternate').attr("src","https://lnsc.nl/lnsc2020/wp-content/uploads/Logo-LNSC-2020-240.png"); } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_logo_script');result:
via GIPHYplease clear your browser cache and check.
Best regards,
MikeNovember 15, 2019 at 12:24 pm in reply to: Latest News widget — how to prevent time stamps from rendering? #1157156Hi,
Yes, because theavia_newsboxis pulling posts, which includes among other things the time and date, thus the filter:
$time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_newsbox' );
butavia_newsboxhas no baring on$time_formatplease see the entire function at\enfold\framework\php\class-framework-widgets.phpthis filter occur at line 961Earlier you wrote:
Yes I accidentally left out that part about the conditional requirements. But let’s not worry about that–I was able to find a solution in terms of those conditions I specified.
So this means this is solved?
Best regards,
MikeNovember 14, 2019 at 2:16 pm in reply to: Latest News widget — how to prevent time stamps from rendering? #1156792Hi,
Sorry, that is not correct date_format is how Date and Time is Formated. Please read: Formatting Date and Time
Here is an example:<span class='date-container minor-meta updated'><?php the_time(get_option('date_format')); ?></span>Try using Visual Studio Code, it is free, then open the theme folder with it, this will load every file, then you can search “find in files” for “date_format” or anything else, and you will see every instance of it.
Best regards,
MikeHi,
To move the slider under the menu you need to set the page with a transparent header.
please try this css for the logo, I didn’t see the other css I posted above, where you sure to clear your browser and cache plugin cache?
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home #logotwist .avia-image-container img.avia_image:hover { -webkit-transform: rotate(30deg) !important; -moz-transform: rotate(30deg) !important; -ms-transform: rotate(30deg) !important; transform: rotate(30deg) !important; -webkit-transition: all 0.4s ease-in-out !important; -moz-transition: all 0.4s ease-in-out !important; -o-transition: all 0.4s ease-in-out !important; transition: all 0.4s ease-in-out !important; }If this doesn’t work Please include an admin login in the Private Content area, perhaps you have a missing bracket in your css not allowing the css to work.
Best regards,
MikeHi,
Thank you, please see the screenshot in the Private Content area of the two sidebars side by side.
So what I see is:- link colors are not the same
- text is not justified the sane
- indention is not the same
and you like the blog style, is this correct?
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeNovember 14, 2019 at 1:00 pm in reply to: Enfold: Latest version of Event Calendar not working with Counter #1156764Hi,
Thank you, I checked again, the ftp access works, and the dev & live sites allow me into WordPress, but they are not admin access, please see the screenshot in Private Content area.
I would prefer to investigate and test within the dev site, please check.Best regards,
MikeHi,
Glad to help, please check one more time and then we will close this thread.Best regards,
MikeHi,
Ok I have enabled categories only for the mobile homepage view with this css:@media only screen and (min-width: 768px) { .blog-categories.minor-meta { display: none !important; } } @media only screen and (max-width: 767px) { #top:not(.home) .blog-categories.minor-meta { display: none !important; } }Please clear your browser cache and check.
Best regards,
MikeHi,
So it is working only when scrolling down, correct?
I tried adjusting for the scroll back up, but I will have to research more and perhaps try something else.
Try removing it and changing your css to this:#header.av_header_transparency .logo img.alternate { height: 175%; max-height: 350px; overflow: visible; }Otherwise please include an admin login in the Private Content area, so I can test when I find a new solution.
Best regards,
MikeHi,
OK, I also notice that the gradient is not very good with display:flex, so it seems display:inline is the best way.
So lets try adding a div around the h2 and center that:<div class="cme"><h2 class="kop-gradient center">Sta-op stoel Arnhem</h2></div>this will be the css for the new class “cme”
.cme { display: flex; justify-content: center; }So we are leaving the h2 in the way we know works in Safari, and wrapping it in a new div which we will then center with flex.
If your not sure how to add a div, Please include an admin login in the Private Content area so I can demonstrate.Best regards,
MikeHi,
Thank you, that link does have a date and time that is a link, but Enfold does not.
We can enable the categories on the homepage for mobile only, but the date and time will still not be a link.
But I’m now not sure why we are talking about categories when we were talking about date and time, is this a new topic now?Sorry, I think I get confused each time we start a new topic in this thread, typically we like to start a new thread for each new topic.
Best regards,
MikeHey jannnnnneke,
Perhaps this will help, Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_logo_script(){ ?> <script> (function($){ $(window).load(function(){ $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 1) { $('.logo .subtext img.alternate').hide(); } else { $('.logo .subtext img.alternate').show(); } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_logo_script');Best regards,
MikeHey Wouterkloosterman,
version 4.2 used the API but Theme Forest now uses the Token, you will need to update via ftp.
The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.Best regards,
MikeNovember 13, 2019 at 7:19 pm in reply to: Blog Posts Element not showing Date meta on first (top) displayed post #1156477Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Try removing the margin rule, and see if this works with Safari for centering and the gradient:h2.kop-gradient.center, h1.kop-gradient.center { display: flex !important; justify-content: center !important; }Best regards,
MikeNovember 13, 2019 at 7:07 pm in reply to: Blog Posts Element not showing Date meta on first (top) displayed post #1156474Hi,
You could use css display:none or you could use this function instead:function post_meta_shortcode(){ ob_start(); echo "<span class='post-meta-infos' style='margin-top: -25px;'>"; $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false)); echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>"; echo '</span>'; return ob_get_clean(); } add_shortcode( 'sc_post_meta', 'post_meta_shortcode' );Best regards,
MikeHi,
I’m not sure that I understand correctly, the page you linked to doesn’t show date & time for the posts, it shows one date & time at the top of the page that is not a link, and it only shows the current date and time.
If we re-enable your date and time it will not be a link.Best regards,
MikeNovember 13, 2019 at 6:21 pm in reply to: Blog Posts Element not showing Date meta on first (top) displayed post #1156466 -
AuthorPosts


