Forum Replies Created
-
AuthorPosts
-
October 30, 2022 at 9:26 pm in reply to: Menu and logo don't stay in one place (and the page items move as well) #1370732
Hey rhae,
Thanks for your question, but I clicked every one of your menu items in Chrome on Windows, but I didn’t see any change in your logo or header position.
can you explain what browser are you using and make a screencast of the issue, perhaps it was so little that I missed it?Best regards,
MikeHey creativeopole,
I have replied to your other thread about replacing the Enfold breadcrumbs with the Yoast breadcrumbs, I assume that if this works you won’t need a solution for removing the tag prefix.
If so let’s try to work on the other thread first.Best regards,
MikeHey creativeopole,
Thank you for your patience, perhaps I can help you use the Yoast breadcrumbs and hide the Enfold breadcrumbs, in your screenshot I see the Yoast breadcrumb is above the Enfold breadcrumb container and I assume this is where you want the Yoast breadcrumbs.
Please link to your page so I can evaluate a solution.Best regards,
MikeHey vbonora,
Thanks for the link to your site, I believe that you are referring to the top image changing size on the page load, this is not an effect, this is the container becoming larger as the inner element heights are defined, to correct try adding this CSS in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#header-blog { min-height: 90vh; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for your patience, I have looked at your page, but I don’t notice anything specific wrong with it, perhaps you can explain what is wrong with it.
Please note the WordPress preview sometimes doesn’t parse the Enfold shortcode correctly, it is best to publish the page to view your changes.
This is a limitation with the WordPress preview which we can not correct from within the theme.Best regards,
MikeHey spee65,
Thanks for your patience, please link to the page in question and include an admin login so we can investigate.Best regards,
MikeOctober 30, 2022 at 7:44 pm in reply to: Keep Equal Height Columns and another media query for tablets #1370716Hey karinorage,
Thanks for your patience, when the columns are set to equal height their display property is changed to table-cell and they are wrapped in a parent div flex_column_table this is what gives it the “equal height”, at mobile when the columns are shown at full width the display property is changed to block and they are no longer “equal height”, although it is hard to spot this on mobile when the columns are stacked.
This is why on tablets they can not be two columns wide, because their display property would need to be changed and they would no longer be “equal height”.So to solve this for you I added this function to the end of your parent theme functions.php:
function custom_equal_height_columns() { ?> <script> (function($){ $('.equal-height-columns').each(function(){ var $columns = $('.equal-these-columns',this); var maxHeight = Math.max.apply(Math, $columns.map(function(){ return $(this).height(); }).get()); $columns.height(maxHeight); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_equal_height_columns');and I added the custom class equal-height-columns to the color section that contains your individual height columns:

and this custom class equal-these-columns to each of the columns:

Now the individual height columns are equal height and break into two wide for tablets:

Please check.For your media query up to 1130px I recommend this css:
@media only screen and (min-width: 768px) and (max-width: 1130px){ .responsive .av_one_fourth.first + .av_one_fourth.flex_column_div, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth.flex_column_div { margin-left: 4%; width: 48%; } .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth.flex_column_div, .responsive .av_one_fourth.first.el_before_av_one_fourth.flex_column_div { margin-left: 0%; width: 48%; } }I did not add this for you, after applying the css, please clear your browser cache and check.
I also recommend adding a child theme, so your functions.php customizations will not be lost with future theme updates Read about it & Get it here
Or you could use the plugin WPCode – Insert Headers, Footers, and Code Snippets, this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snipets.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,
Thanks for the feedback, I set your woocommerce shop option back to the way you had it to test and I found a function to change the return-to-shop url and added this to your new child theme option:add_filter( 'woocommerce_return_to_shop_redirect', 'woocommerce_shop_url_mod' ); function woocommerce_shop_url_mod(){ return site_url() . '/mein-shop/'; }I tested the empty cart and the deleted cart and this seems to work correctly, please check.
Best regards,
MikeHi,
Thanks for the feedback, try this css instead:.av-share-link:hover a, .av-share-link a:focus { border-radius: 8px; }Your css produced an error because it didn’t include “px” after the “8” so the browser didn’t know 8 what ie: px, em, pt, cm, etc
also there is no ul after the .av-share-link, so your result was an error.Best regards,
MikeHey schweg33,
This will be trickier because the button is added after deleting the item without reloading the page, so the script is not triggered.
I don’t understand why you can’t make the change in the woocommerce settings?
Perhaps if you explain I can think of a different solution.Best regards,
MikeHi,
Thanks for the link to your page, it doesn’t look like you are using the masonry gallery, it looks like the masonry element, as the links are to the portfolio pages and not to the portfolio images in the lightbox on desktop.
From your screenshots I believe that you are referring to this one as a desktop example, but it is not the lightbox:

this is what the lightbox looks like, see our masonry gallery demo:

please check if you are using the masonry gallery element, if you have trouble please include admin login in the Private Content area so we can check.
Also please note that I don’t believe the lightbox has a “swipe” function, but you can tap the arrows on mobile.Best regards,
MikeHi,
Glad we were able to help, and thanks for the feedback, 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 hmsvictory,
Thanks for your question, the Dev Team says avia-element-paging was introduced when paging is needed in an ALB element to avoid a conflict with normal WP pagination.
Which occurs if you use ALB elements (e.g. portfolio) with pagination on e.g. blog page 2 (would result in page 2 for portfolio.
This was added in 2020 and was the solution for the pagination conflict, unfortunately we don’t have a way for users to change this.Best regards,
MikeHi,
Thanks for the login, I missed a semicolon
I added the function for you, please check.Best regards,
MikeHi,
Please ensure that you are copying the code from the forum and not an email, otherwise include admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
Thanks for sharing the feedback, this is true that much of our css contains #top, in this case following Quform advice to add #top to their stylesheet rules should work as long as Quform is also adding the form element selectors to their stylesheet, I have not seen their stylesheet but in your first example there is no form element included:
.quform-3 .quform-element-group > .quform-spacer > .quform-child-elements {
without including a form element they would have very weak css rules and you would need to adjust further.Best regards,
MikeHey Krause Andrea,
Vielen Dank für Ihre Frage. Viele unserer hilfsbereiten Kunden sprechen als unser Entwicklerteam Deutsch. Obwohl wir derzeit kein aktives deutsches Support-Teammitglied haben, können wir Google Translate verwenden, um Ihnen auf Deutsch zu helfen.
Wenn Google Translate nicht hilft, können wir natürlich das Entwicklerteam um Hilfe bitten, aber ich glaube nicht, dass das notwendig sein wird.
Ich hoffe, dass Sie Enfold als Ihr nächstes Thema in Betracht ziehen.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,
MikeOctober 29, 2022 at 9:02 pm in reply to: Google Fonts are loaded online despite using local fonts #1370668Hey MaxityDE,
Thanks for the link to your site, I believe that your layerslider has the font picked inside the slider because our demo layerslider slide doesn’t call for a font like yours, please check your slider options for the font.
If you can’t find it please export your slider and post a link to it so we can download and check.Best regards,
MikeOctober 29, 2022 at 8:52 pm in reply to: Remove video title and youtube logo on the background video #1370667Hi,
you would add tit like this:
https://www.youtube.com/watch?v=OeHEM4V0M6k?modestbranding
but the channel name still shows, so this would not be much help for you.
Your best option is to self-hosted it.Best regards,
MikeHey schweg33,
Thanks for the link to your site, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function change_cart_backward_link() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('#top.<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>-cart .button.wc-backward').each(function() { $(this).attr('href','/mein-shop/'); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'change_cart_backward_link');Best regards,
MikeHi,
Glad Rikard 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,
MikeHey slikslok,
I tested your page Mac OS Monterey 12.4 with Chrome, Safari, Firefox and all four icons show for me:

I also simulated Mobile view in developer-tools and they show.
I also tested on Windows in Chrome, Firefox, & Edge and they all show.
On Mac with Safari you look for the shield icon before the address bar, and see if when you click it shows that facebook.com is being blocked if so change the setting to allow.Best regards,
MikeHey Clayton Timcke,
First make a full backup of your site with the backup feature of your webhost, please don’t use a backup plugin unless you have specific knowledge on restoring it. Many backup plugins fail on restore.
Then login to your site and download a copy of the theme export file, at Enfold Theme Options ▸ Import/Export ▸ Export Theme Settings File and save should you need it later, then make sure your server PHP is v7.4
Then delete the parent theme directory /enfold/ via FTP and if you have a child theme save any custom header.php or footer.php from the child theme, and remove them from the child theme directory, they will not be compatible with the new theme version.
Then upload the new version parent theme directory /enfold/ via FTP
Please do not try to overwrite the old parent theme directory as this will leave old files behind and cause errors.
Now you should be able to login and your site should work without errors, assuming you have no outdated plugins.Best regards,
MikeHi,
Glad to hear that you have sorted it out. You can request a WordPress feature request at the WordPress Support forum, we have no more say there than you or anyone else would, so it would be best for you to make the request yourself and following up with their feedback.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeOctober 28, 2022 at 5:46 pm in reply to: Replace the thumbnail in portfolio entries navigation #1370587Hi,
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,
Mike -
AuthorPosts


