Forum Replies Created
-
AuthorPosts
-
April 22, 2021 at 2:40 pm in reply to: Masonry Portfolio – Text Size on image file names (captions) #1296073
Hi sitesme,
You can try to increase the specificity of your selector so you won’t need to use !important, try using this CSS code instead:
#top #wrap_all h3.av-masonry-entry-title { font-size: 18px; }Best regards,
NikkoHey karel,
Sorry, we updaten momenteel onze site - probeer het later opnieuw.Can you try adding this CSS code in Enfold > General Styling > Quick CSS (just adjust the value):
#top #header .logo img { max-width: 200px; }Hope it helps.
Best regards,
NikkoHi Schmidtgrafisk,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHey Pitbull_germany,
Can you try to disable CSS file merging and compression and Javascript file merging and compression in Enfold > Performance?
And see if it helps.Best regards,
NikkoApril 22, 2021 at 2:33 pm in reply to: urgent – layerslider isn't showing after most recent update #1296067Hi bobfurgo,
Yes, or you could do this step after making a backup (updating via FTP is bit too slow, updating via cPanel is better since you can upload a zip file and extract it):
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.Best regards,
NikkoApril 22, 2021 at 2:30 pm in reply to: custom icons showing as blank square in icon selector #1296066Hi oladigital_co,
I have checked the link and I could verify that there’s an image above WELCOME TO THE SEA TEAM
It may not be visible in the backend but try hovering your mouse above WELCOME TO THE SEA TEAM and you should be able to spot an Image element, just remove this and it should be good.Best regards,
NikkoHi Klucas79,
I see, please try to edit the page.
In the Sidebar > Layout > Header visibility and transparency set to No TransparencyBest regards,
NikkoHi Reto,
Thanks for giving us admin access.
I tried to check on your site but I can’t seem to find this error in the frontend or backend of your site.
Can you tell us where we can see this error? (typically this shows in the backend if the error still persists)Best regards,
NikkoHi YemeshM,
We apologize for the inconvenience since there are a lot of queries, it may take some time before we can respond.
Also, I have checked your site on my mobile phone and I don’t really see the headlines being cut off as you have mentioned (as what I was saying in my previous response).
Can we request a screenshot? can you try to clear your browser cache? or try to disable CSS file merging and compression and Javascript file merging and compression in Enfold > Performance and see if this helps.Best regards,
NikkoHi mvi,
I apologize for misunderstanding.
Please refer to Ismael’s answer on this thread: https://kriesi.at/support/topic/force-animations-in-mobile/
Hope it helps.Best regards,
NikkoHi xeovision,
I see, then there’s no option for that but please try this CSS workaround (just replace https://mysite.com/wp-content/uploads/2021/03/logo_restaurant.png with the URL of the logo when the page is scrolled):
#header.header-scrolled .logo img { opacity: 0; visibility: hidden; } #header.header-scrolled .logo a { background: url("https://mysite.com/wp-content/uploads/2021/03/logo_restaurant.png") center center no-repeat; background-size: auto 100%; }Hope this helps.
Best regards,
NikkoHi Bettina,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi ibcagigal,
You’re welcome :)
Please try adding this CSS code (just change the colors as you see fit):#top #wrap_all .av-social-link-tiktok:hover a { color: #fff; background-color: black; } #top #wrap_all .av-social-link-dailymotion:hover a { color: #fff; background-color: #00bbf6; }Best regards,
NikkoHi Maarten,
You’re welcome and thanks for your kind words. :)
I’m very happy to hear that the font file worked properly.
Thanks as well for being patient and also thanks for using Enfold.
Have a great day!Best regards,
NikkoApril 22, 2021 at 7:27 am in reply to: An error occurred while updating Enfold: Download failed. Forbidden #1295944Hi Shezzaw,
We’re glad that wew could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Maarten,
Unfortunately, I don’t have any IOS device to test with.
Can you try to use this font file: https://ufile.io/ctsu6svx
I found the font you mentioned in this link: https://fontsgeek.com/fonts/Gotham-Rounded-Medium-Italic then converted it to EOT, TTF, SVG, WOFF, WOFF2.
I hope this resolves the issue, if not then I’ll try to ask my colleagues who have an iPhone to check.Best regards,
NikkoHi Bettina,
I have tried it with CSS and this is the best one I could come up (though it has some glitch), you can try this one and maybe you can tweak it to something better:
#top .av-layout-grid-container { overflow: hidden; } #top .flex_cell.avia-link-column { transition: transform 0.7s ease, opacity 0.7s ease; position: relative; z-index: 1; } #top .flex_cell.avia-link-column.avia-link-column-hover:hover { opacity: 0.9; transform: scale(1.05); z-index: 0; }I tried background-size and background-position and even zoom but there’s no animation.
Best regards,
NikkoHi ibcagigal,
Thanks I have merged both Dailymotion and Tiktok code and it seems to work properly now:
// Register new icon as a theme icon function avia_add_custom_tiktok_icon($icons) { $icons['tiktok'] = array( 'font' =>'tiktok', 'icon' => 'ue801'); $icons['dailymotion'] = array( 'font' =>'dailymotion', 'icon' => 'ue800'); return $icons; } add_filter('avf_default_icons','avia_add_custom_tiktok_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_tiktok_social_icon($icons) { $icons['TikTok'] = 'tiktok'; $icons['Dailymotion'] = 'dailymotion'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_tiktok_social_icon', 10, 1);The dailymotion icon is small and does not align well with other icons, I have added this in your Quick CSS in order to make it bigger and align it (you can adjust the values as you see fit):
[data-av_iconfont='dailymotion'] { font-size: 22px !important; } [data-av_iconfont='dailymotion']:before { position: relative; top: 2px; }Best regards,
NikkoApril 22, 2021 at 2:22 am in reply to: urgent – layerslider isn't showing after most recent update #1295904Hi bobfurgo,
Thanks for providing the FTP access.
I have modified wp-config.php (the code is in private content), I have changed it from http to https
Then layerslider.utils.js was missing so I added it and it fixed the issue with the layerslider.
Though I could still see the js error I pointed out in the backend, maybe some files are corrupted or not added during the update, please try to re-update.Best regards,
NikkoHi Sabine,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Ola,
Please check if your token has sufficient permission:
- View and search Envato sites (checked by default)
- View your Envato account username
- View your email address
- View your account profile details
- Download your purchased items
- Verify purchases of your item
- List purchases you’ve made
https://kriesi.at/documentation/enfold/wp-content/uploads/sites/22/2017/07/Token-Permission.jpg
For further information please check: https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-tokenIf even with sufficient permission, you still have issues then please try to use Envato Market to update Enfold: https://envato.com/market-plugin/
Make sure to have a backup first before updating.
Hope this helps.Best regards,
NikkoApril 21, 2021 at 3:59 pm in reply to: wie nutze ich die neu importiere Schrift? irgendwo im CSS? #1295834Hi Heldin21,
Please do the following:
1. Go to Enfold > Import/Export > Custom Font Manager then upload font here.
2. Go to Enfold > General Styling > Fonts (tab) > Heading Font or Font for your body text you should find the font at the bottom of the list in the dropdown.
Hope this helps :)Best regards,
NikkoHi reinsicht,
Can you try to disable Javascript file merging and compression in Enfold > Performance?
Also, flush out caching if you have a caching plugin.Best regards,
NikkoHi Heldin21,
Can you give us a link to your page? so we can take a closer look at the logo.
Best regards,
NikkoHi retovogel,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( to be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.Best regards,
NikkoHi Maureen or Shari,
Please try to follow the suggestions in this article: https://www.trickspanda.com/how-to-disable-wordpress-autosave/
Hope it helps.Best regards,
NikkoApril 21, 2021 at 3:49 pm in reply to: urgent – layerslider isn't showing after most recent update #1295828Hi bobfurgo,
I can see this js error in the web console:
Uncaught TypeError: createElementButton.live is not a functionCan you give us FTP access as well?
Best regards,
NikkoHi Sheila,
Can you try to replace this code in your Quick CSS:
.home #av_section_1 .iconbox_content { min-height: 490px; width: 410px; height: 200px; }with:
.home #av_section_1 .iconbox_content { min-height: 1058px; width: 410px; }At the moment the text in the content area of the icon boxes creates popups, but is it possible that the popup is triggered by the text background color instead?
I’m not really sure I understand but as far as I know it seems to follow the standard which is triggered when element with the class is clicked.And is it possible to make like an overlay (gradient) color on the icon boxes – so its on top of the text etc?
Please try adding this CSS:.home #av_section_1 .iconbox_top .iconbox_icon { position: static; margin: -24px auto 12px; }Best regards,
NikkoHi Sabine,
Can you try to clear your browser cache?
I have checked on your site again and it seems to be working properly on my mobile phone.Best regards,
NikkoHi Roberto,
Thanks for giving us admin access.
I tried to use the Lato zip file in the Media Library in Custom Font Manager and I’m getting 403 Forbidden error (screenshot in private content)
It seems this is a permission issue, try checking if this is prevented by either Wordfence or the server.Best regards,
Nikko -
AuthorPosts
