Forum Replies Created
-
AuthorPosts
-
Hi WebbR,
Thanks as well for using Enfold and have a great day!
Best regards,
NikkoHi jb84,
This feature is not available on Enfold but the layout is similar to the hero section of our Enfold Parallax page: https://kriesi.at/themes/enfold-parallax/
I think the you can start by creating a Grid Row with 2 images in in each column then have some Text Block (for the links) which should be hidden when the column is not hovered.
You’ll need to use transform: translate to scale up the size of the image when hovered and a little bit of transition.
I hope it helps you to the right direction.Best regards,
NikkoHi gfriend70,
I’m glad that you managed to find the option :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Natacha,
I apologize for the delayed response.
I can’t seem to see the pages, also the login credentials just returns ERROR: Incorrect Username or Password, please check.Best regards,
NikkoHi Natacha,
Thanks, please try to add this CSS code:
#top #wrap_all .av-masonry-entry .av-masonry-entry-title { line-height: 1.3em; font-size: 15px; }
Best regards,
NikkoHi mgyura,
Thanks, that’s I think the normal content of index.php of WordPress, I don’t see anything wrong with it.
Can setup a staging site for us? and give us admin and FTP access for it, so it would help us try to debug the issue.Best regards,
NikkoHi HulaSlim,
I tried to check the links you gave including italian however, I don’t see any issues on masonry as you have mentioned, can you provide a screenshot? or try to test it with other mobile device, maybe it’s just a caching issue.
Best regards,
NikkoHi HulaSlim,
I tried to check the link you gave but I can’t seem to see the masonry, can you give us screenshot on the section you are referring?
Best regards,
NikkoHi Svenja,
To make sure it’s consistent on both systems, you can try to upload custom fonts instead:
1. Go to https://transfonter.org/
2. Add the Palatino font (get it from your Mac)
3. Check TTF, EOT, WOFF, WOFF2, SVG and click Convert
4. Click the Download link
5. Go to Enfold > Import/Export > Custom Font Manager, upload the zip file generated from the previous step.For further information check our documentation: https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Or you may want to check this thread for further information: https://kriesi.at/support/topic/loading-google-fonts-locally-for-gdpr-compliance/
Hope it helps.Best regards,
NikkoHi HulaSlim,
Can you try to add this CSS code and see if it helps:
#top #av_section_1 .av_one_half .avia-icon-list-container .entry-content-header { display: none; } #top #av_section_1 .av_one_half .avia-icon-list-container .iconlist_icon { font-size: 20px; max-width: 30px; max-height: 30px; line-height: 30px; } #top #av_section_1 .av_one_half:has(.avia-icon-list-container) { display: flex; }
Best regards,
NikkoHi mgyura,
It seems the error is somehow related to Woocommerce as you mentioned before:
– https://stackoverflow.com/questions/73290406/warning-attempt-to-read-property-term-id-on-int-woocommerceCan you give us a copy /nas/content/live/mywtenfold/index.php ?
or if you can setup a staging site for us, that would help us try to debug the issue.Best regards,
NikkoHi Henningcircle,
I can’t seem to see the social media icons on mobile from the link you gave, did you remove it?
Also, I don’t see the hamburger menu jumping over the logo, is the issue already fixed? if not, can you provide a screenshot?Best regards,
NikkoHi csabaio,
I’m glad Chat GPT-4 has helped you :D
Let us know if you need further assistance.Best regards,
NikkoHi Javier,
Thanks for contacting us!
You can register to our support page here: https://kriesi.at/support/register/
You will need to put in your purchase code in order to register, here’s how you can find it:
Best regards,
NikkoHi Henning,
I’m glad that you sorted out the issue.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi harun,
Thanks for contacting us!
I tried to check the purchase code and it seems you have already registered that account.
Can you tell us the username or email that you used to register it with? just post it in private content.Best regards,
NikkoOctober 6, 2023 at 1:57 am in reply to: Bullets/circles/indicators in image advanced layerslider #1421565Hi Henning,
Can you give us a link to the page mentioned?
Best regards,
NikkoHi mgyura,
I tried to check on your website however I don’t see the issue showing, is it only showing on the backend?
Best regards,
NikkoOctober 6, 2023 at 1:54 am in reply to: E_ERROR wurde in der Zeile 9 der Datei /themes/enfold/functions.php #1421563Hi cocoamande,
I’m glad that Rikard could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoOctober 6, 2023 at 1:54 am in reply to: Hamburger Menu only on Startpage – all other normal text-link ,enu #1421562Hi WebbR,
Is the hamburger menu on desktop or only in mobile?
Best regards,
NikkoHi Daniel,
You can try to use this CSS to put some overlay color:
#top .av-masonry-outerimage-container:before { content: ''; display: block; position: absolute; top: 0; left: 0; z-index: 99; width: 100%; height: 100%; opacity: 0.5; background-color: blue; } #top .av-masonry-outerimage-container:hover:before { opacity: 0; }
Then on the page you’ll need to add this style and use ACF color picker to change blue with the color you selected.
I hope it helps.Best regards,
NikkoHi Tim,
Please try the solution mentioned on this article: https://www.wpbeginner.com/plugins/how-to-add-conditional-logic-to-menus-in-wordpress/
Hope it helps.Best regards,
NikkoOctober 6, 2023 at 1:29 am in reply to: How to reduce huge amount of images (and sizes) generated by Enfold? #1421559Hi Marc,
I understand that you prefer not to use code however, to remove sizes that has been defined by Enfold you’ll need to add this code and insert in functions.php (preferably a child theme, or via some plugin that allows inserting of codes like WPCode):
add_action('init', 'remove_enfold_image_sizes'); function remove_enfold_image_sizes() { remove_image_size('square'); remove_image_size('featured'); remove_image_size('featured_large'); remove_image_size('portfolio'); remove_image_size('portfolio_small'); remove_image_size('gallery'); remove_image_size('magazine'); remove_image_size('masonry'); remove_image_size('entry_without_sidebar'); remove_image_size('entry_with_sidebar'); remove_image_size('shop_thumbnail'); remove_image_size('shop_catalog'); remove_image_size('shop_single'); remove_image_size('shop_gallery_thumbnail'); }
As for removing unused images, here are some articles that you can check out:
- https://amplethemes.com/blog/how-to-find-and-delete-unused-images-in-wordpress-in-2020/
- https://jetpack.com/blog/how-to-clean-up-your-wordpress-media-library/
Hope this helps.
Best regards,
NikkoHi xeovision,
Thanks for giving us admin access.
The reason it was not working was the News page was not set as the Blog page, I have set it on your site and it worked properly.Best regards,
NikkoOctober 6, 2023 at 1:13 am in reply to: (Page) Footer not loading correct on search result page #1421557Hi bonsaimedia,
I see, I agree that it’s more of a workaround.
Best regards,
NikkoHi Sebastian,
Can you try this CSS code instead:
#top #header .av-main-nav > li.current_page_parent > a .avia-menu-text { color: #333 !important; }
Best regards,
NikkoOctober 4, 2023 at 12:47 pm in reply to: Change sender address from Enfold contact forumlar #1421385Hi HeylightMedia,
Please try to use this PHP snippet and add it to your functions.php (just change the email address):
function change_cf_from() { return " (Email address hidden if logged out) "; } add_filter('avf_form_from', 'change_cf_from', 10);
Best regards,
NikkoOctober 4, 2023 at 12:45 pm in reply to: (Page) Footer not loading correct on search result page #1421384Hi bonsaimedia,
Thanks, I tried to dig further on it and it seems that when no results are found a media attachment is added and breaks the layout.
If you go to enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php (line 3499)$content = apply_filters( 'the_content', $content );
and dump the value of $content before this line of code, both search results (not found and with results) basically are the same but after it passed that line of code the value of $content is different on both search results which is weird, and definitely does not happen except in this case.
I’m not really sure how this would get fixed, maybe trying to put [wpgb_grid id=”2″] in search.php or via action hooks will work better.Best regards,
NikkoOctober 2, 2023 at 10:25 am in reply to: (Page) Footer not loading correct on search result page #1421098Hi bonsaimedia,
I apologize for the delayed response.
The access has already expired so I cannot access it anymore.
Can you provide FTP access on it as well?Best regards,
NikkoHi Franz,
I’m glad that Ismael could help you :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts