Forum Replies Created
-
AuthorPosts
-
Hi,
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,
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,
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,
Mike -
AuthorPosts
