Forum Replies Created
-
AuthorPosts
-
February 8, 2020 at 9:59 pm in reply to: Heading Font Sizes mobile – Special Heading / Spezielle Überschrift & HTML #1182658
Hey Johannes,
Für das spezielle Überschriftenelement gehen Sie bitte auf die Registerkarte “Stying”> “Schriftgrößen” und klicken Sie dann auf das Symbol der Gerätegröße, die Sie einstellen möchten, und wählen Sie eine Größe aus der Dropdown-Liste aus

Leider haben Überschriftengrößen wie H1 keine globale Größenpräferenz für Mobilgeräte, aber als ich Ihre Website überprüft habe, waren alle Überschriften spezielle Überschriften. Wenn Sie diesen Schritt befolgen, wird Ihre mobile Schriftgröße für H1, H2 usw. festgelegt .
Wenn Sie eine globale Schriftgröße für Mobilgeräte wünschen, verwenden Sie in Ihrem Quick CSS bitte das folgende CSS:@media only screen and (max-width: 479px) { .responsive #top #wrap_all #main h1.av-special-heading-tag { font-size: 40px !important; } }Dies funktioniert nur für die H1-Sonderüberschrift, wenn der Bildschirm des Handys kleiner als 479 Pixel ist.
— Translated with Google —
For the special heading element please go to the stying tab > font sizes and then click the icon of the device size you wish to set and choose a size from the dropdown

Unfortunately, heading sizes such as H1 do not have a global size preference for mobile devices, but when I checked your site all of your heading were special headings so if you follow this step your mobile font size for H1, H2, etc will be set.
If you would like to have a global font size for mobile then please use css like this in your Quick CSS:@media only screen and (max-width: 479px) { .responsive #top #wrap_all #main h1.av-special-heading-tag { font-size: 40px !important; } }this will only work for H1 special heading when the mobile screen is smaller than 479px, please feel free to adjust.
Best regards,
MikeFebruary 8, 2020 at 9:24 pm in reply to: URGENT: wp-admin / wp-login.php problems after update theme #1182655Hi,
Sorry for the late reply, I was able to login to your site by renaming your Enfold theme to enfold1 and braking it and forcing WordPress to load the default theme, I then renamed Enfold back and had no issues.
I carefully reviewed your site and believe that the issue was either the WP-Optimize plugin or the iThemes Security Pro plugin, something was not setting the login cookie correctly. I note that the Enfold Theme Options > Performance > JS & CSS file merging and compression was disabled.
I disabled your plugins and tested logging in on a couple of different browsers without issue.
Please try clearing your browser cache a few times and then login, if you still have problems logging in then try going to your homepage first and accept your site cookie then try logging in again.Best regards,
MikeHi,
Thanks for the screenshot, you can accomplish this by using a color section in the middle of your page because it has 100% browser width while other columns have the page widths. For example I tested with a special heading then two 1/2 columns and then a color section in which I added the image as a background:

which gave me:

you could use an very wide image that is one half white and add your text section over that half, that is how this section on the Enfold Demo is created:

backend:

On my test page I forced the very wide color section background to browser full-width with this css:#av_section_1 { background-size: contain !important; }you would change the ID to a custom ID for the color section.
then since my page width was already set to stretch I used this css to make the text section above have a max-width of 1210px#main > .main_color > .container { max-width: 1210px !important; }Please give this a try.
Best regards,
MikeHi,
I didn’t see a breadcrumb on your homepage, but I did find one on another page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.breadcrumb-trail a.trail-begin:after { content: "\e821"; font-family: entypo-fontello; font-size: 16px; color: #000; } .breadcrumb-trail a.trail-begin { color:#fff !important; }Best regards,
MikeHey Syosse,
Thank you for the mockup and link.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:span.logo { width: 150px !important; } #header_main > .container.av-logo-container { max-width: 1010px !important; }feel free to adjust the numbers to suit.
Best regards,
MikeHey andyqueanda,
Thank you for the link, but I do not see any breadcrumbs, are they disabled right now, or do you mean a different page?
If it is this page then please enable the breadcrumbs so we can see them and include a screenshot mockup where you would like them to be.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,
MikeHey kmmackey,
Thank you for the link to your example, but unfortunately, we don’t have a way to change the animation from page-load to scroll into view.Best regards,
MikeHey Oversberg,
Sorry for the late reply, thanks for creating two test installs for us to investigate. On the site that the plugin works it creates a div for each Variation Swatch and an image with role=”presentation”
On the other site these div’s and images are not created. Please see the screenshot in Private Content area.
My guess is that these containers are created with javascript and the plugin can’t find the correct place to hook into.
In your Enfold Theme Options > Shop Options > Product gallery try using the WooCommerce 3.0 product gallery option

Best regards,
MikeHi,
Typically we prefer if you would open a new thread for each issue, but in this case please include the logins here. I wonder why the sites are braking? Are you overwriting the theme folders or are you uploading a new theme folder for the new theme?
The steps I took were:
1: rename the new extracted theme folder on my desktop to “enfold-new” from “enfold”
2: upload “enfold-new” to /wp-content/themes/ via FTP
3: in FTP rename “enfold” to “enfold-old” in /wp-content/themes/
4: in FTP rename “enfold-new” to “enfold” in /wp-content/themes/
5: check the site.
note everything is done in FTP, afterwards you can login to the site to ensure everything is working correctly, I would only expect complications if your PHP version is 5.4 or under or if your WordPress is under version 5, or if you didn’t use a child theme and had custom scripts or theme modifications in the parent theme.
Should you need to switch back to the old version, simply reverse the rename order above so your “old” theme is “enfold”Best regards,
MikeHi,
Thanks for the link to your page, this script will replace the link and add the popup class in every “show_details_button” on your site to your popup, I tried to be very specific with the classes so it should not affect other buttons.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_button_script(){ ?> <script> (function($){ $(document).ready(function(){ $(".product .avia_cart_buttons a.button.show_details_button").attr("href", "#").addClass('spu-open-6686'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_button_script');You will note that the button’s design will change a little because of your css for that button class, I assume that is ok?
Best regards,
MikeFebruary 7, 2020 at 2:44 pm in reply to: Hide featured image on single portfolio… recursively #1182317Hey Julien,
Try adding this code to the end of your functions.php file in Appearance > Editor://disable featured image function disable_featured_image( $html, $post_id, $post_image_id ) { if(is_single()) { return ''; } else return $html; } add_filter( 'post_thumbnail_html', 'disable_featured_image', 10, 3 );Best regards,
MikeHey MAKSIMS,
Sorry for the late reply, do you mean that all of the buttons will trigger the same CF7 pop-up?
If it is the button I’m thinking of there is not a built-in way to change the link of the button, but we may be able to add a function to do this. Please link to your page with the button and include the link to the pop-up so we can investigate.Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-800 #av-layout-grid-1 .flex_cell.av_one_third { padding: 360px 0px 0px 0px !important; } #top.page-id-800 #av-layout-grid-1 .flex_cell.av_one_third:hover { padding: 180px 0px 180px 0px !important; }After applying the css, Please clear your browser cache and check the test page.
Best regards,
MikeFebruary 7, 2020 at 12:41 pm in reply to: Enfold seems to overwrite different even and odd rows styling #1182291Hi,
I believe it could be because you have regular WordPress users who are also in the WPUsers plugin, so each user has two avatars. So you could try disabling the plugin or you can try this css in your Quick CSS:.topic-author > .bbp-reply-author > img.avatar.photo:nth-child(2),.reply.type-reply > .bbp-reply-author > img.avatar.photo:nth-child(2) { display: none !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Odd, the update had not been applied, not sure what happened back then but the FTP access still worked so I applied the update and it seems to be working fine on the frontend. The WordPress login didn’t work so I can’t check the backend, please login and check.Best regards,
MikeFebruary 7, 2020 at 11:35 am in reply to: Enfold seems to overwrite different even and odd rows styling #1182275Hi,
I checked the css again and adjusted it to this which I put at the top of your Quick CSS:#top #bbpress-forums li.bbp-body ul.even { background-color: #e1e1e1 !important; }Please clear your browser cache and check the screenshot and link in Private Content area.
Best regards,
MikeHi,
Sorry for the late reply and thanks for the login, the way the lightbox works is it gets all of the images, so in this case is it is getting the thumbnail and the featured image from the post, if you uncheck the “Display Thumbnails” option in the element then the lightbox only shows the image once, which id from the link, but the magazine element then doesn’t show the thumbnail on the front end.

but I’m sure you want to show the image in the magazine element.
I tried removing the second image or classes or links with javascript but that just produced a blank slide where the second image would have been, so you still had to click twice. I also tried to simulate a double click when the arrows were clicked but that didn’t work either. So I’m not sure we can change this but I will try to research some more.
Please try unchecking the “Display Thumbnails” option in the element to see how the front end looks and behaves, and try removing the featured image from the posts to see if that corrects the behavior of the magazine element.Best regards,
MikeHey lifefitnessnz,
Sorry for the late reply, as I understand your question you would like 3 custom social media icons in a row in your footer widget.
For this I recommend using the “Custom HTML” widget and add the Icon element shortcode to it, to get the shortcode open a new post using the Classic Editor and choose Icon from the shortcode wand tool:

Then create each of your icons and design to suit adding your links and in the developer section add a custom class such as “footer-icons”

then add the shortcode to your widget:

This is the shortcode I used in this example:[av_font_icon icon='ue8f4' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,#' linktarget='' animation='' id='' custom_class='footer-icons' av_uid='' admin_preview_bg=''][/av_font_icon] [av_font_icon icon='ue8f2' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,#' linktarget='' animation='' id='' custom_class='footer-icons' av_uid='' admin_preview_bg=''][/av_font_icon] [av_font_icon icon='ue8ec' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,#' linktarget='' animation='' id='' custom_class='footer-icons' av_uid='' admin_preview_bg=''][/av_font_icon]This is the result:

They should show in a row.
If you wish to use the image element instead, follow the same steps with the image shortcode and be sure to add the custom class and if your images show as a column like this:

then add this css to your Enfold Theme Options > General Styling > Quick CSS field#footer .widget_text .custom-html-widget .footer-icons { display: inline !important; }which should correct to a row:

If this doesn’t help then please create an example and link to it so we can help adjust your css.Best regards,
MikeHi,
Sorry for the late reply, I couldn’t login because there is also a htaccess login prompt before the WordPress prompt, please include login details for this also.
Do you mean that you are tring to use the new “Block editor’s” FAQ structured data content block like in this image?

Your page looks like it was created with the Enfold “Advanced Layout Builder” so I assume that you are opening a Advanced Layout Builder page with the WordPress Block editor and tring to add this? If so you will have errors because the two editors can not be used on the same page.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,
I don’t think this is the slider either, Please see the screenshots in Private Content area.
This is what I see in the Chrome dev tools console when I emulate your site as mobile, 425px, these errors do not show when emulation is not used, so at full size your homepage loads fine but when loaded as mobile size all of the errors abouthttp://sswim.rushow up? I was hoping that cleaning up those files would remove the errors.
Do you have a server-side cache that can be emptied?Best regards,
MikeHi,
I tested your css above and it produced the G+ icon for me. I copied the correct whatsapp icon to this css:.social_bookmarks_whatsapp a::before, .av-social-link-whatsapp a::before { font-family: 'entypo-fontello'; content: ''; }Best regards,
MikeHi,
@toner728, Sorry I did not see that you added more to your message, I checked your page and tried to recreate the 1/3 columns with video elements and your YouTube links, but found no errors on my localhost:

It does look like you are using the Autoptimize plugin, I recommend testing with it disabled.
If this doesn’t solve, please open a new thread and include a link to your site with admin login. Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.Best regards,
MikeHi,
Thanks for the login, the screenshot was from the “portfolio grid” suggestion above, I didn’t have success with the grid row when there was anything in the grid row, which is why I said it was not very useful, but now I can’t reproduce it.
But I took another approach, I took your color #5356bc and used a RGBA to feColorMatrix converter to create a SVG filter which gives an overlay, the only drawback is the special heading is also under the overlay.
This is the css I added to your site:.grid-hover:hover { filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'colorChange\'><feColorMatrix type=\'matrix\' values=\'0.33 0 0 0 0 0 0.34 0 0 0 0 0 0.74 0 0 0 0 0 1 0'/></filter></svg>#colorChange"); opacity: 1 !important; }Please clear your browser cache and check.
Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:a.av-masonry-entry.isotope-item h3.av-masonry-entry-title.entry-title { min-height: 39px !important; }Best regards,
MikeFebruary 5, 2020 at 12:19 pm in reply to: Move Date below blog Title – using Blog Posts content element #1181727Hi,
Very good, please check again and let us know. We should close this thread as it is very long now and goes back to 2016.Best regards,
MikeHi,
I’m not sure, I have not seen this before. Did you once have the WordFence plugin? It has code in your htaccess file and in your root you have “wordfence-waf.php” From this article it seems these things have to be manually removed, there is also a Wordfence Assistant plugin that will remove the Wordfence firewall & Wordfence data in your database and advanced locks.
I have not used WordFence myself or tried removing it so I’m not sure if this is normal. But the console errors to'http://sswim.ruandnet::ERR_HTTP2_PROTOCOL_ERRORerror concerns me.You also have these files in your home directory that are not normal and I can’t find any info on them from Google:
wp-real-leaf.php
ass.php
wp-ultimate.php
wp-success.phpYou said there was another developer, how long have you worked on this site with no issues and when did these issues begin?
Do you have a backup that is from before the issues?Best regards,
MikeFebruary 4, 2020 at 2:50 pm in reply to: Page Titles and H1 tags displaying as duplicate on the Category listing page? #1181284Hi,
The theme lists posts on the archive pages as H2 with the category under it and then the excerpt of the post.
On your page you are hiding the title field and manually adding an H1 in the content section which shows on the archive page as part of the excerpt and the original title from the page is included.
So if you used the main title on your page and didn’t manually add an H1 in your content you would not have the duplicate titles.
To me it looks like you are using the default editor for your page and you probably wanted the title to be under your featured image instead of in the gray title bar.
So if I have this correct try this, remove your manually added H1 title on your page and set your title to show on the page next to the breadcrumbs, this is a H1 title created by the theme.

then add this code to the end of your functions.php file in Appearance > Editor:function custom_title_script(){ ?> <script> (function($) { $(document).ready(function(){ $('.page .main-title.entry-title').detach().insertBefore('.entry-content'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_title_script');then your H1 title will show below your featured image:

and then on your archive page you will not have duplicate titles. But all of the titles will be H2 because SEO recommends that there should only be one H1 on any page.Best regards,
MikeHi,
I see, that is a good idea. I researched this a little and found this article that seemed similar to what you want to do.We knew that we can keep one thing the same on all of these pages which were page-slugs, so we decided to add page slugs in body class which allowed us to do all the customizations we wanted without any complications.
They posted this function:
//Page Slug Body Class function add_slug_body_class( $classes ) { global $post; if ( isset( $post ) ) { $classes[] = $post->post_type . '-' . $post->post_name; } return $classes; } add_filter( 'body_class', 'add_slug_body_class' );I tested on my localhost and found this works for pages and posts, for example:
the post “hello world” = post-hello-world
the page “meet the team” = page-meet-the-team
and the slugs should be the same across different installs regradless of the page-idsBest regards,
Mike -
AuthorPosts

