Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the link to the example page, it does look like the Revolution Slider, you could build something similar to this with the LayerSlider, try looking in the LayerSlider demos and import one that you like as a starting point. Go your the LayerSlider dashboard and click Browse Templates
The All New Everything looks similar, try that one and adjust to suit.
Best regards,
MikeHey Alex,
Thanks for the links, I see that you are using v5.1.1 perhaps updating to v5.3.1.1 will correct, if not try disabling your plugins and checking again.
It seems like the pages with no pagination didn’t finish loading, so between pages /archiv/page/29/ & /archiv/page/30/ are there any missing posts?
If so then try changing the missing post status to “draft” so it will not be loaded and see if that corrects, if not change the status of the last post on /archiv/page/29/ and see if that corrects.
There could be an error in some of the pages causing the loop to stop, if we could isolate these posts then we could find what the error is. I’m not seeing errors in the browser console.Best regards,
MikeHi,
I believe the easiest solution for you is to create a language selector in the menu by adding custom links like this:
you can download the flags here, I choose 48px png flag images and uploaded them to my media library:
The Navigation Label that Ismael was talking about is here:
in the Navigation Label add this code:<img src="/wp-content/uploads/sites/19/2023/01/icons8-germany-48.png" width="20px" height="20px">
naturally you will change the image url to your image and change it for each of the flags.
the result should be like this:
Best regards,
MikeHi,
Thank you for the link to your site, I see that when I’m logged in your homepage slider has 3 slides, and when I’m logged out it only has one slide and the Latest Highlights section on your homepage shows shortcode instead of the proper element.
Typically this occurs when your web server is using object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. please disable your server cache and flush it, if it is connected to a CDN such as cloudflare disable this also.
Typically these types of cache do not show for logged-in users and they only update once a day.
Once you are done creating your site then you can enable the server cache and CDN.Best regards,
MikeJanuary 7, 2023 at 2:15 pm in reply to: LayerSlider requests licence registration when adding a Shape layer #1377937Hi,
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 7, 2023 at 2:13 pm in reply to: Google Font "montserat" lädt trotz lokaler Einbindung #1377936Hi,
It was for a page that Edewoolf posted in private, he didn’t link to it publicly so I don’t think I should post to it.
When you test it on sicher3.de/google-fonts-checker/ you have to wait a few seconds until the popup occurs for it to fail the test.
I have seen this issue with the Popup Maker plugin on other sites so when I saw the popup I knew to look closer at the plugin. This will need to be addressed by the plugin author.Best regards,
MikeJanuary 6, 2023 at 8:33 pm in reply to: LayerSlider requests licence registration when adding a Shape layer #1377899Hey Joris,
Thanks for your question there are a few elements in the layerslider that require a license and are not included with the bundled version, such as Premium Templates and advanced elements such as the new shape element. You can learn more at the layerslider dashboard where it says “Go Premium”
If you wish to use the premium version you will need to disable the bundled version in the theme options and then install the premium layerslider plugin, you can learn more about this in our documentation.Best regards,
MikeHi,
Glad to hear that you have this sorted out, and thanks for sharing your tip. Thank you for using Enfold.Best regards,
MikeJanuary 6, 2023 at 8:13 pm in reply to: Google Font "montserat" lädt trotz lokaler Einbindung #1377893Hi,
Thanks for your patience and the link to your site the google font is being loaded by this css file:/wp-content/uploads/pum/pum-site-styles.css
I believe that it belongs to the Popup Maker plugin, please disable the plugin and test again. Then ask the plugin author how to disable the font.Best regards,
MikeHi,
Thanks for your patience and the link to your site, I see that your PHP ZipArchive Extension is not enabled on your server, this prevents the server from extracting zip files, please ask your webhost to enable it.
In your WordPress ▸ Dashboard ▸ Tools ▸ Site Health I see a warning Outdated SQL server I have not seen this before, your Database server is 5.6.51, do you have any options to update this?
Try changing your PHP time limit from 30 to 300, and your Max input time from 60 to 120
I also recommend disabling all of your plugins before importing the demo files to ensure there are no conflicts.Best regards,
MikeHi,
Glad to hear that you have this sorted out, shall we close this then?Best regards,
MikeHey Heinz,
Thank you for your patience and the link to your site, I see that your footer widget areas are empty, when they are empty the demo widgets will show.
I see that you have created a custom widget area “footerhelp” but I don’t see and code in your child theme functions.php to tell the theme where to show this custom widget area, so I don’t know what your plans for this is. If you wanted to show this custom widget area under your footer then you would add this function to your child theme functions.php:add_action('avia_after_footer_columns','avia_below_footer'); function avia_below_footer(){ dynamic_sidebar( 'footerhelp' ); }
But to show widgets in your footer please add the widgets to your footer column one and two.
I see that you have a child theme footer.php & header.php and these do not match the current footer.php & header.php, this will cause errors in your theme. We do not recommend adding these files to your child theme, it is the most common reason for errors when updating. Please remove these files and any customizations you wish to make should be done in your child theme functions.phpBest regards,
MikeHi,
Guenni007, I tested your function above but it didn’t seem to work with the blog post element using single author, small preview, is this element that you tested it with?Best regards,
MikeJanuary 6, 2023 at 12:56 pm in reply to: Serious scrolling problems on mobile devices with boxed layout and bg-image #1377840Hi,
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, thanks Guenni007, 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 added this script to your child theme functions.php to get the portfolio page ID and search the portfolio grid entries for matching items and hide them, I tested it on the two pages linked below.function get_single_portfolio_pageid_and_hide_matching_portfolio_grid_item() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ if ($('body.single-portfolio')){ $("[class*='postid']").each ( function () { var elClasses = $( this ).attr ( 'class' ).split ( ' ' ); for ( var index in elClasses ) { if ( elClasses[index].match ( /^postid-\d+$/ ) ) { var classNum = elClasses[index].split ( '-' )[1]; break; } } var postentry = ('.post-entry-'+classNum); $('#av-sc-portfolio-1').find(postentry).css({'display':'none'}); }); }else{} })(jQuery); }); </script> <?php } add_action('wp_footer', 'get_single_portfolio_pageid_and_hide_matching_portfolio_grid_item');
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,
MikeJanuary 5, 2023 at 8:38 pm in reply to: Follow up of the ticket "Move author and date at the beginning of the article" #1377741Hi,
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 Jochen,
Thank you for your question, you will need to use individual columns and add a custom class such as negativefifty to the columns that you want offset and use this css:.responsive #top #wrap_all .flex_column.negativefifty { margin-top: -50px; }
Please see this example:
Best regards,
MikeHi,
Thanks for the link to your site, I found one of your TOC’s at the page linked below and I added this script to your child theme functions.php:function change_toc_h3_widget_title_to_p() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } replaceElementTag('[id^=avia_auto_toc-].avia-widget-container.avia_auto_toc h3.widgettitle', '<p></p>'); }(jQuery)); }); </script> <?php } add_action('wp_footer', 'change_toc_h3_widget_title_to_p');
and now your TOC uses a “p” tag, please clear your browser cache and check your other TOC’s and link to any that you find not changing.
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 didn’t find the page with your TOC widget, please link directly to it so we can assist, so it seems the login is no longer working, please check.Best regards,
MikeHi,
Thanks for the feedback, I was not seeing this when I tested and I just realized that it was because I was clicking on the tabs, for some reason if you click on the tabs once the height is readjusted and they all show correctly.
I don’t know why this is but you could use this script in your child theme functions.php to trigger a click on the active tab on your portfolio pages for mobile only, assuming that you are going to use this same layout for multiple portfolio pages:function custom_portfolio_tab_click() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { if ($(window).width() < 768) { setTimeout(function(){ $("#top.single-portfolio #av-tab-section-1").find('a.av-active-tab-title').trigger("click"); },300); } else {} }(jQuery)); }); </script> <?php } add_action('wp_footer', 'custom_portfolio_tab_click');
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,
MikeJanuary 4, 2023 at 1:58 pm in reply to: Serious scrolling problems on mobile devices with boxed layout and bg-image #1377579Hi,
Ok, I have canceled the request for a team member to check since the error doesn’t show anymore.Best regards,
MikeHi,
Thanks for explaining further, but this is not what I’m seeing, the content in each of the tabs are independent heights, this can easily be seen at mobile screen widths where the sub-menu KULTUR/BILDUNG is always below the content.
For desktop the sub-menu KULTUR/BILDUNG is always at the bottom of the page because of this custom css:.untermenu { top: 94%; width: 100%; position: fixed !important; text-align: center; left: -5px; font-size: 15px !important; text-transform: uppercase; letter-spacing: 1px; color: #222222; }
Notice the top: 94%; and position: fixed !important; this fixes the sub-menu 94% from the top.
Remove this custom css and the sub-menu will be just below the content.Best regards,
Mike -
AuthorPosts