Forum Replies Created
-
AuthorPosts
-
March 17, 2021 at 4:27 pm in reply to: How do I remove powered by Enfold WordPress Theme on the footer? #1288751
Hi Afrehdo,
Thanks for giving us admin access.
We have removed it for you :)
Please review your site.Best regards,
NikkoHi theartofcom,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Manuela,
I don’t think it’s good to put it inside a Text Block, try to use a Code Block instead.
If that still does not work, please use a Widget element.Best regards,
NikkoMarch 17, 2021 at 4:12 pm in reply to: Homepages won't load after upgrading to both 4.8 and 4.81 #1288743Hi blinkmm,
Thanks for giving us admin access.
The issue was caused by the outdated av-helper-slideshow.php in the child theme which is missing the static function default_args
To temporarily fix this I have added the missing function in the said file, however, I would recommend you to update it with the latest version.Best regards,
NikkoHi Qarqash,
It’s a pleasure to help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoMarch 17, 2021 at 10:27 am in reply to: Untermenü links zentrieren und näher an das Hauptmenü packen #1288684Hi schlaebitz,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
#top .av-submenu-container .av-subnav-menu { text-align: left; padding: 0 40px; } #top .av-submenu-container .av-subnav-menu li { padding: 0; }Best regards,
NikkoMarch 17, 2021 at 10:21 am in reply to: adapting the width of the content in my pages in Enfold theme? #1288681Hi karel,
The font size in footer area is using a relative size, if you’re targeting the footer widgets (will affect sidebar widgets) then go to Enfold > Advanced Styling > Widget.
Otherwise, it can only be done via CSS, adding this CSS code in Enfold > General Styling > Quick CSS:#footer .widgettitle { font-size: 24px; } #footer .widget { font-size: 16px; }The first code block is for widget headings, the second one is for the text.
Best regards,
NikkoHi Lin84,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi bibi1234,
Can you try to upload the logo in Media > Add New?
If it won’t upload then please try to upload it in https://ufile.io/ (or dropbox) then send us a link in private content, also upgrade the temporary account you gave to an administrator so we can inspect further and try to upload the logo for you.Best regards,
NikkoHi theartofcom,
Thanks for giving us a screenshot.
The reason why it’s working like that is that the Background Image was set to Parallax (image moves as the user scrolls) to fix this I changed the Background Attachment from Parallax to Scroll.
Please review your site.Best regards,
NikkoHi Qarqash,
You’re welcome :D
As for the images, the images used are medium (link in private content).
You can change this when you are inserting an image: https://imgur.com/IXlQgJR
As for changing the default image size, do the following steps:
1. Use a child theme (so tweaks will not be removed during a theme update), if you have one then please proceed to step 2. If you don’t you can download and find further instructions on how to use it here: https://kriesi.at/documentation/enfold/child-theme/
2. Add this code at the bottom of child theme’s functions.php:function custom_image_size() { update_option('image_default_size', 'full' ); } add_action('after_setup_theme', 'custom_image_size');Hope this helps.
Best regards,
NikkoMarch 17, 2021 at 9:06 am in reply to: There has been a critical error on this website. Can't access pages anymore. #1288658Hi SumanaNataraj,
Thanks for giving us access.
I was able to login in WordPress because there was an option in your hosting provider to login to WP.
I tried to check on the backend of the pages and it’s working pretty well on my end (screenshot in private content) there were no js scripts error except for mixed content (logo and favicon are using http while your site is https, I’ve already fixed this).
Can you give us a screenshot on how it looks on your end? is the issue only appearing in specific pages? can you give us steps that we can follow to try to reproduce the issue on our ends?Best regards,
NikkoHi Lindsey,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Real-3D,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Lin84,
Thanks, I have removed archive.php and instead created includes folder inside the child theme and added loop-index.php inside it (copied from parent theme’s includes > loop-index.php):
Below this code (line 264):echo "<div class='entry-content-wrapper clearfix {$post_format}-content'>";I added:
if( $thumb_post && is_archive() ) { echo "<div class='archive-featured-image'>"; echo '<a href="' . $link . '" ' . $featured_img_title . '>' . wp_get_attachment_image( $thumb_post->ID, 'medium' ) . '</a>'; echo "</div>"; }Then in Enfold > General Styling > Quick CSS, I added this code:
.archive-featured-image { float: left; } .archive-featured-image a { border: 1px solid #EEE; box-shadow: none; display: inline-block; margin: 2px 10px 2px 0; padding: 3px; } .archive-featured-image img { display: block; } .archive .entry-content-header+p { min-height: 96px; }Best regards,
NikkoMarch 16, 2021 at 1:13 pm in reply to: Google map with light background / Google-Map mit hellem Hintergrund #1288506Hi Patrik,
You’re welcome :)
Will these settings persist when updating to a future version?
Yes, it will persist in the future, I think the only thing that can break it is if the content in one of the two columns will change (height changes), then it will need to be re-adjusted.Do you have a good tip where I can look up / read such topics myself?
I would suggest first looking into our documentation: https://kriesi.at/documentation/enfold/
The changes I made is related to this topic: https://kriesi.at/documentation/enfold/add-custom-css/
Search for How to use google web inspector (you can search it on youtube as well), this helps to know how to target parts/elements in the page.
Also, search for CSS tutorials (the code I gave is all CSS).
Hope this helps.Best regards,
NikkoHi lle-it,
Can you tell us what are the Aria text you’d like to put in the image, post title, content, etc? then we’ll try to post here the codes you’ll need to replace.
Best regards,
NikkoHi MarcassinFou,
Thanks for giving the screenshots.
I have checked it on my android phone and I don’t see the issue.
I’ll ask my colleagues to check on it.Best regards,
NikkoHi Michael,
If you have added this code in functions.php as @Guenni007 posted:
function change_lightbox_size() { return "full"; } add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);then Enfold will just use the size you uploaded (without this code then the limit in size is 1030px in both height and width).
I think what you need is to adjust the image’s dpi which is done via image editing software like photoshop.
Also, this article might help in understanding images in the web: https://vsellis.com/understanding-dpi-resolution-and-print-vs-web-images/Best regards,
NikkoHi Daniele,
Thanks for providing us the child theme and I apologize I made a mistake regarding the notification box, changing the text inside a Text Block and closing the window would not show a notification box but if you add or duplicate an element then that notification box will show up if you try to leave, I have tested this with older Enfold versions with the current WordPress version (also any changes made are not saved). The child theme did not have any issues as well but I made a wrong evaluation as I forgot that I duplicated the Text Block.
Best regards,
NikkoHi Stromboli77,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoMarch 16, 2021 at 4:10 am in reply to: How do I remove powered by Enfold WordPress Theme on the footer? #1288417Hi Afrehdo,
If you have already added [nolink] to the Copyright text and it does not work, 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 asc41,
You’re welcome, we’re just glad that we could help :)
Best regards,
NikkoHi Hidealoo,
You’re welcome and stay safe as well :)
Best regards,
NikkoHi aboderc,
You’re welcome :)
Just let us know how it goes.Best regards,
NikkoHi sofiadadci,
Thanks for giving us the link and the CSS code, the code above is invalid, please use this instead:
#top .avia-logo-element-container { margin-top: -20px; margin-bottom: -20px; }Best regards,
NikkoHi jelle,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Qarqash,
You’re welcome :)
Regarding the image, can you give us a link on the page shown in the screenshot? so we can inspect both the page and the image used (the image uploaded might be high quality but the default image size pointed is medium which is only 300px, I believe it’s the one used).
As for the last one, please go to Enfold > Performance > Disable Template Builder Elements > Disabling of template builder elements try to set this to Always load all elementsBest regards,
NikkoHi 4xsample,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi SPORTSINCYCLING,
Thanks for providing the link.
I checked on the page and I noticed that there are multiple ids of the same name.
For example there are 3 paragraphs with this id: what-causes-rotator-cuff-tear
An ID should be unique and only one on the page, this might be the cause of the issue.Best regards,
Nikko -
AuthorPosts
