Forum Replies Created
-
AuthorPosts
-
May 31, 2023 at 9:35 am in reply to: Layout issue with serial events view (Events Calendar Pro) #1409100
Hi Bernd,
It should be fixed in the next release :)
Best regards,
NikkoHi Asterios,
I’m glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Reto,
I moved the code to WPCode since it’s easier to manage those custom codes there.
1. The font color of the menu items in the header changes from white to gray when a user starts scrolling down. Also on hover over/mouse over there is no action (font should change from white to gray).
It’s fixed, I noticed it was partially set in in Advanced Styling and Header > Transparency Options > Transparency Menu Color On Hover.2. On mobile screen: Header is not sticky and disappears when scrolling down. Should be sticky as on normal screen.
I have added this CSS code in Quick CSS:@media only screen and (max-width:767px) { .responsive #top #wrap_all #header { position: fixed; } }
3. Background color is not correct. Should be gradient transparent as specified in Quick CSS section.
I have added this in Quick CSS:@media only screen and (max-width:767px) { .html_mobile_menu_tablet #top #wrap_all .av_header_transparency { background-color: transparent; } .html_mobile_menu_tablet #top #wrap_all .av_header_transparency .header_bg { background-image: linear-gradient(rgba(20,21,23,1), rgba(20,21,23,0)100%); background-color: transparent; } }
4. Logo is too big. How can this be adapted on mobile screen?
I have add this CSS code, please adjust the value as you see fit (default was 80px)@media only screen and (max-width:767px) { .responsive .logo img { max-height: 65px; } } Please review your site. Best regards, Nikko
Hi emilconsor,
I’m glad to hear that the problem was solved.
Also, if there’s no header.php or footer.php previously in the child theme (or no modification) then there’s no need to add it.Best regards,
NikkoHi j,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Asterios,
I have checked your site on Firefox but I don’t see a second vertical scrolling.
Also, you mentioned that our support forum also shows a second vertical scrolling.
It seems, the issue maybe local and some caching issues.
Please try to clear the browser cache and if you have extensions, please temporarily remove it and see if it helps.Best regards,
NikkoHi j,
The screenshot link you posted is broken, please post it again.
Also, the Jost font seems to work properly on my end as well (Windows 11, Chrome)Best regards,
NikkoHi Stephan,
Are you using a child theme? if yes, then please check if you have header.php or footer.php in your child theme then do the following:
1. Backup your child theme
2. Copy header.php or footer.php from the parent theme (Enfold) and paste it to the child theme.
3. Edit those files and add the modifications you made before.Best regards,
NikkoHi Reto,
I’m glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Stilecatalini,
We apologize for the inconvenience, however, this feature is still in Beta and still need to be adjusted for mobile that’s why it’s disabled for mobile at the moment.
In the future releases, it should be fixed but at the moment we ask for your patience.Best regards,
NikkoMay 30, 2023 at 5:57 am in reply to: Ich kann ein neu gekauftes Theme nicht auf meine Webseite laden. #1408984Hi Edgar,
It’s okay, we’re just happy to hear that it’s all good now :)
Thanks as well for using Enfold and have a great day!Best regards,
NikkoHi Stilecatalini,
I apologize for the delayed response.
I tried to add the code for you however it seems this is already done and could see it working properly.
The blur effect in header is working properly, I have checked it in mobile.Best regards,
NikkoHi madakumbu,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width:767px) { .responsive #top, .responsive #top #wrap_all { overflow: visible; } }
Best regards,
NikkoHi heinerpompeiner,
I’m glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi tyronere,
You can upload the fonts in Enfold Theme Options > Import/Export > Custom Font Manager.
For further information please check the documentation: https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fontsBest regards,
NikkoHi madakumbu,
I tried to add the code however the page seems to loading to slowly on my end.
Please try to add this CSS code in Enfold > General Styling > Quick CSS:@media only screen and (max-width:767px) { .responsive .avia-pricing-table-container, .responsive .pricing-table-wrap { display: flex; } }
Best regards,
NikkoMay 29, 2023 at 9:20 am in reply to: Display posts that are assigned to category1 AND category2 #1408917Hi Guenni007,
Thanks for your input.
I have forwarded your request to Günter.Best regards,
NikkoMay 29, 2023 at 1:44 am in reply to: Can't reach my webmaster who purchased the theme and built the website for me. #1408914Hi davidv126,
Thanks for your patience.
I tried to check on your website and since avia-footer-scripts is showing some error, changing Javascript File Merging And Compression to Use minified theme javascript files without merging was a good move, and it seems the console is clear and no more js errors.
I also tried to check the lightbox in the gallery page and it seems to be working properly.Two more things and I am really done. I just noticed after clearing cache, 2 different dynamic_avia folders are created. One is under /wp-content/upload/ and one is under /wp-content/cache/min/1/wp-content/enfold/. I dont think that is how it is supposed to be becase before this I have no recollection of duplicate folders in 2 different places.
/wp-content/uploads/dynamic_avia is generated by Enfold the other one is most like from a caching plugin.As for accessibility, I think we can still modify the code to remove aria-hidden however, after checking the icon it seems to showing different icons, is this intended?
Best regards,
NikkoMay 29, 2023 at 1:15 am in reply to: Display posts that are assigned to category1 AND category2 #1408913Hi stmichel2,
@Guenni007 thanks for the explanation.I think we can use this filter avia_blog_post_query for it. Here’s the code:
add_filter('avia_blog_post_query', 'modify_blog_post_query', 10, 2); function modify_blog_post_query($query, $params) { if ($params['taxonomy'] === 'category' && is_page(10)) { $terms = array(13, 14); $query['tax_query'] = array( array( 'taxonomy' => 'category', 'field' => 'id', 'terms' => $terms, 'operator' => 'AND' // Include posts in both categories ) ); } return $query; }
just change is_page(10) to the id of the page you want to show and $terms = array(13, 14); replace 13 and 14 to your category.
The code works for any Blog Style except for Grid LayoutBest regards,
NikkoHi Stilecatalini,
Please try Guenni007’s solution on this thread: https://kriesi.at/support/topic/only-have-header-show-when-user-scrolls-up/
Best regards,
NikkoHi madakumbu,
Can you give us the link to your site? so we can inspect why it’s not working.
Best regards,
NikkoHi Magdalena,
Can you try adding this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width:767px) { .responsive div .avia_responsive_table .avia-data-table table, .responsive div .avia_responsive_table .avia-data-table tbody, .responsive div .avia_responsive_table .avia-data-table tr, .responsive div .avia_responsive_table .avia-data-table td, .responsive div .avia_responsive_table .avia-data-table th { display: revert; } }
Best regards,
NikkoHi swissclick,
Can you give us temporary admin access? so we can check the issue further.
Just post the credentials and login link in private content.Best regards,
NikkoHi Soulshakin,
Can you try to use a different menu for mobile?
Go to Enfold Theme Options > Main Menu > General (tab) > Alternate Menu For Mobile and set a different mobile menu.
Hope this helps.Best regards,
NikkoHi Soulshakin,
Can you try to use a different menu for mobile?
Go to Enfold Theme Options > Main Menu > General (tab) > Alternate Menu For Mobile and set a different mobile menu.
Hope this helps.Best regards,
NikkoHi vbresan,
I’m glad that Rikard could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Wollenhaupt,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Wollenhaupt,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Sabine,
If you are in a page, you will need to check Allow Comments located in the sidebar:
Hope it helps.Best regards,
NikkoHi,
I apologize for the delayed response.
I tried to check it however I’m getting this error when trying to access the page: Your access to this site has been limited by the site ownerBest regards,
Nikko -
AuthorPosts