Forum Replies Created
-
AuthorPosts
-
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,
MikeHi,
Thanks for the login, I was able to see your slides in the layerslider, Please see the screenshot in the Private Content area.
Please try clearing your browser cache, and if you see the layerslider splash screen click the big button in the middle of the screen, “Get Started”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,
Vera I looked at your page /projekt/groebenschule/ but I don’t know what you mean by the whole tab section is not adaptable, it looked correct in mobile and desktop. Please explan further.
Since this is not your thread anything you post in the Private Content area will not be private and you will not see anything we write in the Private Content area.
I recommend starting a new thread with further details and perhaps screenshots to point out the issue. Thanks for understanding.Best regards,
MikeJanuary 3, 2023 at 10:47 pm in reply to: Serious scrolling problems on mobile devices with boxed layout and bg-image #1377520Hi,
Thanks for the video, I’m not able to recreate this with Windows or Android, this looks strange. Unfortunately I don’t have a iPad or iPhone so I will ask the rest of the team for someone with an iPad or iPhone to check this. Thank you for your patienceBest 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,
MikeJanuary 3, 2023 at 10:36 pm in reply to: direction of fullscreen slider is right to left want it left to right #1377517Hi,
Glad to hear that you have this sorted out, by using the layerslider. Changing the direction is not a feature option in the fullwidth slider, I have submitted this to the Dev Team as a feature request for their review. 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, and thanks for sharing your findings. 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,
MikeJanuary 3, 2023 at 2:38 pm in reply to: 404 error messages on pages with postname permalink (except homepage & blog) #1377467Hi,
Glad to hear this helped, I don’t know of another solution without causing similar issues. Typically the entries are sorted by date, I see your blog page shows 10 posts and then pagination, try showing 12 posts and no pagination, assuming that you make one post a month, this will show a rolling year of posts.
You can set the number of posts at WordPress ▸ Settings ▸ Reading Settings to the number 12, and use this css to hide the pagination with this css:#top.blog .bloglist-excerpt .pagination { display: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Guenni007, happy new year to you too, I matched the layout to what Angeladlh linked to in the Private Content area, I know he wrote list format but his page is actually single author, small preview as you point out.Best regards,
MikeJanuary 3, 2023 at 1:57 pm in reply to: 404 error messages on pages with postname permalink (except homepage & blog) #1377461Hey Markus,
Thank you for the link to your site, I found that you have this custom code in your functions.php:function pix_only_last_week( $query ) { if ( is_admin() || ! $query->is_main_query() ) { return; } $query->set( 'date_query', array( array( 'after' => '12 months ago' ) ) ); return $query; } add_action( 'pre_get_posts', 'pix_only_last_week' );
I disabled it and now your pages show correctly, please clear your browser cache and check.
Best regards,
MikeJanuary 3, 2023 at 1:45 pm in reply to: Serious scrolling problems on mobile devices with boxed layout and bg-image #1377458Hey dogunihalle,
Thank you for the link to your site, I see that you have a boxed layout with a background-image, but the background image is for the body background in a custom div “bg_container”, I assume that you have added this in the child theme functions.php, but I can not see it so I’m not sure.
But smaller than 989px the background image will not show, so on my Android mobile device I don’t see the background image even if I scroll quickly.
Perhaps you mean that when the page loads for a millisecond you see a green color before the content shows, but this is “flicker” hard to see on my device, perhaps your network is mobile slower? If this is true then you need to add a media query to your custom code for the background image. Since I can’t see your custom code I guess that you could try something like this:@media only screen and (min-width: 990px) { .bg_container { -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/uploads/background.svg', sizingMethod='scale')"; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/uploads/background.svg', sizingMethod='scale'); } }
so the background image only shows above 990px, if this doesn’t help please enable the theme editor so we can see your child theme files and how you are adding the background image to advise.
Best regards,
MikeHi,
Glad Ismael could 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 the login to your site, I have checked your homepage backend compared to the frontend and found nothing missing, please explain in more detail which color section is not showing on the frontend.Best regards,
MikeHey Andrew,
Thank you for the link to your site, the correct css is:.single-post .entry-content p { font-size: 18px !important; }
I adjusted this for you.
If you want your Table of Contents and list items to also have this font size try adding this css:.single-post .entry-content li { font-size: 18px !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeJanuary 3, 2023 at 12:53 am in reply to: Problems with privacy cookies and magnificpopup and iframe #1377411Hey slikslok,
Thank you for the link to your site I tested in Windows in Chrome, Firefox, & Edge and in Mac Safari, Chrome, Firefox and if I accept the cookies first then the iframe doesn’t show the cookie bar again, if I don’t click the cookie bar on the homepage then the iframe does show the bar again, this is the correct behavior.Best regards,
MikeHi,
I tested your custom function on my test site using v5.3.1.1 and it worked for me without any plugins, try updating to v5.3.1.1 and checking, if it still doesn’t work then disable all of your plugins. If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeHi,
Glad to hear that you have this sorted out, and thanks for sharing the plugin causing the issue. 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 archive link is not correct, it should be a month and year but yours is only showing the year:
I commented out this custom function on your staging site:// Blog Archiv nur Jahre anzeigen function my_limit_archives( $args ) { $args['type'] = 'yearly'; return $args; } add_filter( 'widget_archives_args', 'my_limit_archives' ); add_filter( 'widget_archives_dropdown_args', 'my_limit_archives' );
and now your archive links are working correctly:
Try this on your live site.Best regards,
MikeJanuary 2, 2023 at 4:51 pm in reply to: HOW TO: Create shortcode button with JS variable in href #1377378Hi,
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,
MikeJanuary 1, 2023 at 10:56 pm in reply to: HOW TO: Create shortcode button with JS variable in href #1377357Hey tvbuzz,
Try adding a custom class to your button shortcode such as show-form then add this script to the end of your child theme functions.php file in Appearance ▸ Editor:function add_data_drip_show_form() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $(".show-form a").attr('data-drip-show-form', 'xxxx'); })(jQuery); }); </script> <?php } add_action('wp_footer', 'add_data_drip_show_form');
I assume that you will have multiple forms, so each button will need a different custom class and you will add a new line in the script for each one, for example this script uses two custom classes show-form-one & show-form-two
function add_data_drip_show_form() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $(".show-form-one a").attr('data-drip-show-form', 'xxxx'); $(".show-form-two a").attr('data-drip-show-form', 'zzzz'); })(jQuery); }); </script> <?php } add_action('wp_footer', 'add_data_drip_show_form');
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,
MikeHey Dr. Dominik Foerschler,
Thanks for your question, it looks like you are using version 4.1.2 which doesn’t support PHP v8, please update to the latest version of Enfold v5.3.1.1
You probably won’t be able to update from within the theme because v4.1.2 used the Envato (Theme Forest) API which is no longer in use for updates, Envato (Theme Forest) now use the Envato Token so you will need to first update your theme by logging into your Envato (Theme Forest) and download the latest version.
Then after you update you can create an Envato Token from inside your Envato (Theme Forest) account for future updates.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
Best regards,
MikeHey Steve,
Thank you for your question, you can see all of our pre-built demos here.
Our theme is only available on the Envato Marketplace, we have an exclusive contract with them, so we can not sell licenses anywhere else or directly.Best regards,
MikeHey Sammy Saleh,
Thanks for your question but we don’t build web sites, we create the WordPress Theme Enfold so you can build your own website. Our theme is Multi-Purpose with many built-in Demos and a Support Forum for your questions and to help.Best regards,
MikeHey Eugene,
Thanks for your question, Envato (Theme Forest) no longer uses the API for updates they now use the Envato Token so you will need to first update your theme by logging into your Envato (Theme Forest) and download the latest version.
Then after you update you can create a Envato Token from inside your Envato (Theme Forest) account for future updates.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
Best regards,
MikeHi,
Glad Ismael could help, let us know if you have any further questions regarding this issue and we will gladly try to help you.
Thank you for using Enfold.Best regards,
MikeDecember 25, 2022 at 5:36 pm in reply to: Pagespeed – screen readers require list items within a parent elements #1377317Hey Jaro,
Thanks for the screenshot and the link to your site Pagespeed test, this is false result, the menu element that the test says is not in a parent ul is in fact in a ul so no action is needed.
I’m not sure why the Pagespeed result in wrong but as you can see from the screenshot there is no action needed.Best regards,
Mike -
AuthorPosts