Forum Replies Created
-
AuthorPosts
-
October 31, 2022 at 12:12 pm in reply to: Remove video title and youtube logo on the background video #1370783
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,
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,
MikeOctober 31, 2022 at 12:06 am in reply to: Lokale font einbindung funktioniert nicht. Google Fonts ist nicht DSGVO-konform #1370748Hey SANDBERT,
Thanks for your patience, I believe that one of your plugins is loading the google font try disabling your plugins and checking again, if this solves then enable your plugins one at a time to find the one.
If this doesn’t help allow us to also disable your plugins to investigate further.Best regards,
MikeOctober 30, 2022 at 11:43 pm in reply to: Enfold – Make Header Transparent on mobile devices #1370746October 30, 2022 at 11:37 pm in reply to: Footer page not rendering headings on other pages #1370744Hi,
Glad Nikko was 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 Peter Waters,
Thanks for your question, 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,
MikeOctober 30, 2022 at 11:31 pm in reply to: Menu and logo don't stay in one place (and the page items move as well) #1370742Hi,
Thanks for the screencast, but I’m not seeing this, please see my screencast in the Private Content area.
I’m using Safari v16.1
macOS Monterey v12.6.1
Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeHi,
Thanks for your patience, please try this css:#top .av-buildercomment .comment_container { padding-top: 30px; } #top #commentform .comment-form-url { display: none; } #top #commentform .comment-form-email input, #top #commentform .comment-form-author input { width: 358px; } #top .av-buildercomment h3.miniheading { text-align: center; }After applying the css, please clear your browser cache and check.
Best regards,
MikeOctober 30, 2022 at 10:08 pm in reply to: Menu and logo don't stay in one place (and the page items move as well) #1370736Hi,
Thanks for the screencast, I checked on Safari on a Mac and saw this and found it was because in the Enfold Theme Options ▸ Advanced Styling you had your menu item set to a font-weight of 300, and the active menu items had the font-weight of 400, so depending on the length of the menu item text the menu was getting longer or shorter, I set both to 400 and this corrected.
Please clear your browser cache and check.

Best regards,
MikeHey Mo,
Thanks for your question, I checked your Purchase Code at https://kriesi.at/support/register/
and see that it was registered on 2017-06-01 and your support expired on 2017-11-25
Please login to your Envato account and renew your support: https://help.market.envato.com/hc/en-us/articles/207886473-Extending-and-Renewing-Item-SupportBest regards,
MikeOctober 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) #1370732Hey 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,
Mike -
AuthorPosts

