Forum Replies Created
-
AuthorPosts
-
Hi tyronere,
I’m glad that you were able to find a workaround it.
@Guenni007 thanks for helping out :)Best regards,
NikkoHi TheHelioFilm,
Try to edit the Tab Section, then go to Height > Content height and set it to Auto adjust to content.
Hope this helps.Best regards,
NikkoHi Jed,
Please try to go to Enfold > Theme Options > Performance, then enable Show Advanced Options and try to set it to Disable adding unique timestamps only.
Hope it helps.Best regards,
NikkoHi Nathan Fromstein,
Thanks for contacting us!
And yes, you will need to repurchase Enfold again so you can update Enfold on your live site.The current version you are using is still using the old API (username and API key) which envato has already deprecated therefore you can’t update it with the usual method.
You can do the following process instead:First make a backup:
– Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
– Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/Option 1: Use Envato Market to update your site
– link: https://envato.com/market-plugin/Option 2: Update manually
1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
2. It should generate a new folder, open it and look for the enfold folder
3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
4. Log in to WordPress as and Admin.
5. Install and activate a maintenance plugin and put your site in Maintenance mode.
6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
7. Click on the ADD NEW button.
8. Click on the UPLOAD THEME button.
9. Click BROWSE and choose enfold.zip file
10. Click the INSTALL NOW button and switch to Enfold or your child theme.
11. Remove the maintenance mode then deactivate and remove the maintenance plugin.Then register the theme by following the instructions in https://kriesi.at/documentation/enfold/theme-registration/
Once this is done, the next time you update, you’ll only need to go to Enfold > Theme Updates and click on the Update button.Hope it helps.
Best regards,
NikkoSeptember 12, 2023 at 2:12 am in reply to: Clients Website needs a lot of Changes… How to Export and Import the Site? #1418818Hi Monika,
Should I put a Backup from Duplicator or Migration on an other server?
It depends on what is more convenient for you.There I make the Changes and after that, I clear the current server and put the new Site there?
If there are no changes on the live site then yes you can do that but if there are some changes on your live site, then before you clear the live site, export it’s data first to your development site: https://www.inmotionhosting.com/support/edu/wordpress/export-your-database-with-wp-migrate-db/ and then proceed with clearing and putting the site site there.Is the license from Enfold still ok then or do I get trouble with that?
If it’s just a staging site for your live site then there should be no issues, also it would be better if it’s a subdomain of the live site.Best regards,
NikkoHi jasonlthornton,
Please try to use this CSS code (I just added few things on top of Rikard’s code):
@media only screen and (max-width: 767px) { .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption { padding-top: 10px; } #top .avia-fullwidth-slider .avia-slideshow-inner { min-height: 240px; } #top .avia-fullwidth-slider .avia-slideshow-inner img { min-height: 240px; height: 240px; width: auto; max-width: none; } }
Hope it helps.
Best regards,
NikkoHi tyronere,
You’re welcome :)
Just let us know how it goes.Best regards,
NikkoHi Laura,
I’m not really sure what’s happening on your site since I could not reproduce it on my end, debugging your site might cause some issues with your site visitors.
Can you try to create a staging site? So we can debug further without affecting your live site.
You can check this tutorial on how to create a staging site: https://wpengine.com/resources/what-is-a-staging-site-why-have-one/#How_to_Create_a_Staging_Site_for_WordPressBest regards,
NikkoHi tyronere,
On the Color Section where grey bar is located, please put blocks in Custom CSS Class (located in Advanced > Developer Settings).
And add this CSS code in Enfold > General Styling > Quick CSS:#top .blocks .flex_column_table { display: flex; } #top .blocks .flex_column_table .flex_column:nth-child(2) { margin-right: 30px; }
Just adjust the margin-right value.
Hope this helps.Best regards,
NikkoHi Laura,
Thanks for giving us admin access.
I could not reproduce the same issues on my end but for some reason the shortcodes are appearing on Masonry, to fix this, I changed the setting in Masonry to show only the title and not the excerpt which fixes the problem in the frontend, please review your site.Best regards,
NikkoHi P,
Our theme handles both devices, you can check any of our demos listed here: https://kriesi.at/themes/enfold-overview/ check them both in desktop and mobile.
Please make a backup first before updating the theme, if the developer made any changes to the Enfold theme files then it will be lost during the update.Best regards,
NikkoHi DianaLoola73,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi,
Please try to add this CSS Code in Enfold > General Styling > Quick CSS:
#top #header .main_menu ul:first-child >li > ul { background-color: rgba(255,255,255,0.6) !important; }
Hope it helps.
Best regards,
NikkoHi Xiscoj,
I’m glad that Ismael could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi tyronere,
The link you gave shows:
Nothing Found
Sorry, the post you are looking for is not available. Maybe you want to perform a search?
Please check.Best regards,
NikkoHi solidt,
I’m glad that you managed to find the cause of the issue :)
Thanks for using Enfold and have a great day!Best regards,
NikkoSeptember 3, 2023 at 2:16 pm in reply to: Pagination in portfolio grids not working with plugin Search&Filter #1417947Hi elenapoliti,
We’re glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoSeptember 2, 2023 at 10:12 am in reply to: Pagination in portfolio grids not working with plugin Search&Filter #1417866Hi elenapoliti,
I see :has does not have support for firefox, you can check it here: https://caniuse.com/?search=%3Ahas
I have added a javascript code to your functions.php to add a class on paragraphs that has images:function has_image(){ ?> <script> (function() { var container = document.querySelector('#top .search-filter-results'); if (container) { var paragraphs = container.querySelectorAll('p'); for (var i = 0; i < paragraphs.length; i++) { var paragraph = paragraphs[i]; if (paragraph.querySelector('img')) { paragraph.classList.add('has-image'); } } } })(); </script> <?php } add_action('wp_footer', 'has_image');
and added this CSS code:
#top #search-filter-results-4746 > div:not(.pagination) p.has-image { display: block; }
Please review the page.
Best regards,
NikkoHi kuba9991,
The burger menu does not seem to appear on mobile, did you remove it?
Best regards,
NikkoHi lfs360,
Just adjust height and max-height value in Rikard’s code.
Hope it helps.Best regards,
NikkoSeptember 1, 2023 at 2:31 pm in reply to: Pagination in portfolio grids not working with plugin Search&Filter #1417827Hi elenapoliti,
I have checked it and the code is working properly but it will only work on that filter and not on others, we can change it to target different filters or make it generic to target all filters.
If you’re referring to the same filter, then can you post a screenshot for the remaining issues? since I can’t seem to see the issue on my end.
You can upload the screenshots in Savvyify, Imgur, Dropbox or other online image sharing websites, then post the link here (or in private content).Best regards,
NikkoHi device-edv,
Yes, you are correct.
Please let us know if you still need further assistance regarding this topic.Best regards,
NikkoSeptember 1, 2023 at 2:22 pm in reply to: with smartphone: green bar above navigation system #1417825Hi Martin,
I’m glad that you found the cause of the issue.
Just let us know if you still need further assistance.Best regards,
NikkoSeptember 1, 2023 at 1:38 pm in reply to: Featured Image Slider – Caption alignment issue when placed inside a Tab Section #1417808Hi IconicD,
We’re glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoSeptember 1, 2023 at 1:38 pm in reply to: Critical Error: “Failed to initialize plugin: avia_builder_button “ #1417807Hi moonswamp,
I apologize for the delayed response.
Got some issues on my end, I have checked further on the issue and it seems the problem is caused by this plugin: WPJAM BASIC
It seems to prevent query string to be added on the end of the css/js files (examples in private content).
Just deactivate the plugin if you want to create or edit a new page, if you really need the plugin, then you will need to contact the plugin author to fix the issue.Best regards,
NikkoSeptember 1, 2023 at 12:40 pm in reply to: Pagination in portfolio grids not working with plugin Search&Filter #1417805Hi elenapoliti,
I have created a new test page based on the link you gave (link in private content), I also duplicated the search filter and pointed it to the new page.
I added this CSS Code to adjust the style (in Enfold > General Styling > Quick CSS):#top #search-filter-results-4746 hr, #top #search-filter-results-4746 > div:not(.pagination) p { display: none; } #top #search-filter-results-4746 > div:not(.pagination) { width: 50%; float: left; box-sizing: border-box; background-color: white; border: 0.5px solid #ececec; display: flex; flex-direction: column-reverse; min-height: 470px; } #top #search-filter-results-4746 > div:not(.pagination) h2 { background-color: black; color: white; font-family: 'neutratext-book', Helvetica, Arial, sans-serif!important; font-size: 18px !important; margin: 0; padding: 20px; text-transform: none; min-height: 80px; } #top #search-filter-results-4746 div:not(.pagination) p:has(img) { display: block; } #top #search-filter-results-4746 > hr:nth-last-child(3) { display: block; margin-bottom: 20px; } #top #search-filter-results-4746 > .pagination { padding-bottom: 20px; display: flex; flex-direction: row; justify-content: space-between; } #top #search-filter-results-4746 > .pagination a { float: none; width: auto; padding: 0 20px; font-size: 14px; }
Let us know if this works.
Best regards,
NikkoAugust 30, 2023 at 1:12 pm in reply to: Critical Error: “Failed to initialize plugin: avia_builder_button “ #1417562Hi moonswamp,
Where can we see the issue? I have checked the frontend and the backend of your website but I can’t seem to find where the issue appears.
Best regards,
NikkoHi Martin,
I could see it on the desktop as well.
Can you give us FTP access? just post the credentials in private content.Best regards,
NikkoHi tcampaner,
The best option is to hide that section on mobile.
And then add a Grid Row and put an image inside it which is similar to the background image on the section, then set the grid row to be hidden both on desktop and tablet.
Hope this helps.Best regards,
NikkoAugust 30, 2023 at 12:55 pm in reply to: Featured Image Slider – Caption alignment issue when placed inside a Tab Section #1417559Hi IconicD,
Can you try adding this CSS code and see if it helps:
#top .avia-slideshow .caption_container { max-width: 100%; }
Best regards,
Nikko -
AuthorPosts