Forum Replies Created
-
AuthorPosts
-
Hi!
We will keep this thread open. Thanks for using Enfold :)
Cheers!
NikkoHey!
For the meantime can you try to check the link I posted in the “private content” section. Please let us know if the issue shows up on your end on the link I have given.
Cheers!
NikkoHi!
I’m using a dynamic ip, it’s in the private content.
Regards,
NikkoHey!
We are very sorry that’s happening on your end, the 3.9 version will be on release soon. Try to update it as soon as it is available, if you still experience this issue, please provide ftp access so we can atleast look at the files and check for errors.
Best regards,
NikkoHi!
Sorry if I missed this thread, since you said that the code I gave crashed the site though it works properly on my end, can I request for ftp access? I’m a bit hesitant to test the code I gave to your site since if it crashes I can’t reverse it.
Regards,
NikkoHi Jantien,
I’m not sure I understand what you want to achieve, perhaps you could post a screenshot on what you want to achieve and post a link in “private content” to one of your sidebar page.
Best regards,
NikkoHey!
The css was generated by Enfold, you could see this in Enfold > Header > Header Custom Height and there’s a value of 150px which is similar with the code you posted, try to change the value to 130px (or any value), you should see 150px changed to 130px when viewing page source.
The padding on top isn’t caused by the generated css, but this css code in your Child Theme’s style.css:
.html_header_top.html_header_sticky #header { margin-top:5%; }
Remove it and the large padding will be fixed.
Cheers!
NikkoHey!
It’s this code:
add_filter(‘avf_builder_boxes’, ‘avia_register_meta_boxes’, 10, 1); //Add meta boxes to custom post types function avia_register_meta_boxes($boxes) { if(!empty($boxes)) { foreach($boxes as $key => $box) { $boxes[$key][‘page’][] = ‘sfwd-courses’; $boxes[$key][‘page’][] = ‘sfwd-lessons’; $boxes[$key][‘page’][] = ‘sfwd-topics’; $boxes[$key][‘page’][] = ‘sfwd-quiz’; } } return $boxes; }
Cheers!
NikkoHi!
Would you allow us to have ftp access? so we can inspect further and ask permission to deactivate any/all plugins if necessary. We might find a clue as to what is causing the problem and try to fix it.
Regards,
NikkoNovember 17, 2016 at 10:15 am in reply to: Remove fields from MailChimp Form, but keep them in Contact Form #713470Hi!
Glad we could help :)
Regards,
NikkoHi rymr31!
Can you give us temporary admin access as well as ftp access? we would like to inspect further. Also, we would like to ask permission to deactivate plugins if necessary. You can post the login details in the “private content” section when you reply.
Cheers!
NikkoHey!
Glad it’s fixed :)
Cheers!
NikkoHi justinsearl!
The change you meant was when you hover for example Team it would look like this {Team}?
Cheers!
NikkoNovember 17, 2016 at 8:19 am in reply to: Logo center, navigation to the left & right of logo #713431Hey!
Glad that it’s fixed :)
Regards,
NikkoHey R,
I don’t have any solutions that I can provide right now (since there are lots of ways to do it in css), moderators here are good with css so you can be assured if that happens in the future. I’ll leave this thread open, so you can post here if you experience any issue related to this topic :)
Regards,
NikkoNovember 17, 2016 at 7:58 am in reply to: change position of button or icon in color section #713420Hey!
I can’t find any special-heading in the homepage that’s using h1, I found 4 but using h2 tags. You can use this code:
.av-special-heading { position: realtive; top: -50px; }
Just adjust the values however this is a global class which would affect all special headings in all pages, I suggest using Custom Css Classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ just add for example this class custom-special-heading then use this css code in Quick CSS
.custom-special-heading { position: realtive; top: -50px; }
This way you can select which special headings this will take effect. Hope this helps :)
Best regards,
NikkoNovember 17, 2016 at 7:50 am in reply to: Need help removing the white space above my banner #713416Hey!
If you check on what the latest change, only the background color was changed, the logo wasn’t shrinking on scroll before. Anyway, I added this code:
#header.header-scrolled .logo img { max-height: 28px !important; }
and removed this code:
@media only screen and (min-width:768px) { .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 50px !important; } }
Best regards,
NikkoHi!
Sorry for the confusion, the last time I checked your site, Ismael’s code was still there, that’s why I didn’t give any instruction to remove, but checking on your code now, that should be all that’s needed, but for some reason the 2nd block of code which is this one:
.sidebar_left .inner_sidebar { margin-right: 0; }
doesn’t seem to reflect on the frontend. Can you try to replace it with this code:
.sidebar_left .inner_sidebar { margin-right: 0 !important; }
If it’s still not working, kindly give us temporary admin access and place it in the “private content” section so only moderators can see.
Regards,
NikkoHey!
Yes, the code in Quick CSS overwrites some css code and that’s what you are seeing, if you want the white background to show on scroll, please remove this code that I gave:
#top .header_bg { background: transparent !important; }
If there’s any changes you need after doing this please let us know.
Best regards,
NikkoHi!
Yes, you can change the font size of caption. The code I gave and also Andy’s code shouldn’t have any effect on desktop version since our code only works on mobile devices, you will notice our codes are wrapped in:
@media only screen and (max-width:767px) { }
Can you post screenshots on what issues you find in our codes?
Cheers!
NikkoHi!
You’re welcome. I agree it’s huge and lots of things you can do with it. Please check on our documentation to learn more about Enfold. :)
Best regards,
NikkoHey PANDAIDX!
Thanks for creating this thread. I apologize your site is down since I made a mistake in functions.php, can you remove this code at the bottom of functions.php (via ftp or cpanel):
<script type="text/javascript"> var $j = jQuery.noConflict(); $j(function(){ $j("#home-slider .av_one_fourth .av_font_icon a.av-icon-char").magnificPopup({ disableOn: 700, type: 'iframe', mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: false }); }); </script> <?php } add_action('wp_footer', 'add_lightbox_script');
Please try to replace it with:
function add_lightbox_script(){ ?> <script type="text/javascript"> var $j = jQuery.noConflict(); $j(function(){ $j("#home-slider .av_one_fourth .av_font_icon a.av-icon-char").magnificPopup({ disableOn: 700, type: 'iframe', mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: false }); }); </script> <?php } add_action('wp_footer', 'add_lightbox_script');
I apologize for this, please let us know if it’s up again, and if the code isn’t working I’d like to request for ftp access.
Regards,
Nikko- This reply was modified 8 years, 1 month ago by Nikko.
Hi!
I think that’s possible please refer to Ismael’s solution on this thread: https://kriesi.at/support/topic/events-countdown-widget-bug/page/2/#post-701707
Regards,
NikkoHi!
Thanks for the link, see you on the other thread :)
Cheers!
NikkoHi!
I can see this error in the console:
Failed to load resource: the server responded with a status of 403 (Forbidden)
Can you try to use wordpress’ default theme like twenty sixteen? and check if it works or not.
Cheers!
Nikko- This reply was modified 8 years, 1 month ago by Nikko.
November 17, 2016 at 4:29 am in reply to: markup being removed when switching to text editor #713339Hey!
We are happy to help :) I also had experience same problem before, that’s why when it’s using html codes I don’t use tinymce editor which wordpress offers.
Best regards,
NikkoNovember 16, 2016 at 7:52 pm in reply to: Warning: Division by zero in /home/…/enfold/config-templatebuilder/.. Problem #713173Hey Erkan,
Glad we could help :)
Best regards,
NikkoNovember 16, 2016 at 4:53 pm in reply to: After the enfold newest update the text changes after website gets fully loaded #713032Hi!
I just checked your site (using icognito), and it seems to be working well and I can’t see the issue before, even with the sumome plugin activated, is it also fixed on your end?
Cheers!
NikkoHey Justin!
Yes, h2 tags has been used in all sliders in Enfold, I don’t think it is related with Single <h1> Tag rule in SEO why it’s set to h2 but probably because the slider caption titles usually contains important and concise information, but not as important as post titles or article titles. I hope this helps.
Best regards,
NikkoHey vmoralestejedor!
Can you post a screenshot on how it looks like on your local server? you can upload it in imgur.com or dropbox and post the link here.
Cheers!
Nikko -
AuthorPosts