We have the following issue. I am editing a page and the advanced layout editor is not working. The text within the text or visual box is also white on a white background.
I have checked the forum and I havent been able to get it working at all.
I have got the latest update for wordpress and the enfold theme.
I have disabled the plugins.
Any suggestions how to get the button working?
Hello,
Thank you for an amazing theme!
I’m currently using the Fontello Icons as on page sliding navigation (for http://schneidercentre.com/) as it has a great look with the theme and brand. Right now, the buttons don’t change sizes on mobile, and really take away from the look of the site. The buttons are also not very responsive when using them on a touch pad, and don’t work on iOs when the background is parallax, but do work when the background is in “sliding” or “fixed” setting.
Please help with some CSS that will allow better mobile functionality of the Fontello apps for the Enfold Theme. I really want to use this strategy on this theme a couple times over as it looks great.
The ideal results would be 3 different sizes based on the 3 different dimension widths provided with the theme’s responsive layout. Right now I have them at 60 px, so 40 px for tablet and 20 px for phone seems to make sense.
Thank you for your help!
-addwebtoday
This reply has been marked as private.
Hi!
Thanks for all suggestions, but no help. Lightbox doesnt appear. When i click your link here, Ismael, it plays in a box.
Is there a way to re install Enfold theme? Just an idea to get all settings right?
Regards Timo
Hi,
When I try to access a page in the CMS, the advance layout builder section just spins and never loads. If I put off WPML all is ok.
I have version 3.1.5 of WPML and Enfold 2.7
Could you help me,
Regards
Hey!
The current version of Enfold is the only one set to work with WordPress 3.9 so before anything else please update your theme files so that we are on the same build.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Best regards,
Devin
Hi,
There is no selection of 30px for the header height only 45px. Not sure how this would correct my issue… the logo is being loaded by enfold with a maximum width of 300px. So when I use the above code it changes it to 500 pixels but instead of allowing the image to load as 500 pixels wide it is stretching the image instead to follow the css rule.
I’d like my image size to be 500px by 65px which is the size of the original that I uploaded.
Hi,
I am new to enfold, I have not figuerd out how to add a picture instead of text.
Thanks for any help
Adam
Thanks Ismael, that did the trick. I prefer W3TC so I added ‘/wp-content/themes/enfold/css/layout.css’ to the ‘Never minify the following CSS files’ section of the minification page.
This reply has been marked as private.
Hello. For some reason the link to the top is showing as a blank box. Other entypo-fontello fonts are loading though.
The site is in development so I will add the URL in a private reply.
Thank you Ismael. That didn’t work, but it got me on the right track.
This is what I used:
#top #header .avia_mega_div {
max-width: 540px;
}
FYI if anyone wants change the width of the main columns, use:
.av-main-nav ul {
width: 170px;
I couldn’t figure out a way to use max-width in the main nav because it appears to influence the mega menu.
-
This reply was modified 11 years, 7 months ago by
abmich.
Hi!
I’ll mark this for Kriesi. Maybe he knows why it doesn’t work on your server.
Best regards,
Peter
This reply has been marked as private.
This reply has been marked as private.
ok let me send you the login if you dont mind checking it out.
I have 0 plugins installed
On Wednesday the website will go live, so I’ll drop a link on that day, but I have noticed one bug in it. I think it comes from enfolds side though. So maybe someone can help me out to make this iconbox become a 100% reality? :)
Hey!
Maybe a plugin which manipulates the admin bar output or a browser extension breaks the search. I can’t reproduce the issue on my test server and no other user reported a similar issue so far…
Best regards,
Peter
Hi All,
I just noticed that the admin bar in 3.9 together with latest enfold 2.7 breaks the ajax search in the header.
All I can see is that the search box gets loaded below the </body> and therefor renders it incorrectly. This is also what happens when there is a javascript incompatibility with a plugin. However I cant find any error messages in console.
Is this a known issue? I have tested it without any plugins installed!
Disabling the admin bar in the admin profile fixes this issue. An interesting find is that this seems to only happen on chrome.
I am on windows 8 and chrome 35.0.1916.86 beta-m – ios safari works fine.
Kind regards,
Thomas
Hi Enfold team!
First of all, thank you for your theme is awesome! I love it!
I have just a little issue with a youtube video (embed) put in the layerslider. The video doesn’t appear with Firefox (issue only in Firefox).
My website is Merrien Analytics
It is quite strange because I have another video on other page (with no layerslider) and it works correctly.
Could you help me to fix this issue please?
Thank you!
Pascal
Hi When I install Enfold on the Home tab there are a number of page options, I want to set one of those pages as the home page. How do I do it? I have changed it on the Menu options and deleted the original homepage. The issue is that it does not recognise the page as the ‘Frontpage’ as the ‘Edit Frontpage’ tab is no longer there, can anyone help with this?
Yes I had to reset and start from scratch I am sure I am using the latest version of WordPress, how can I tell which version of Enfold I have?
Hey bastikan!
Bitte entschuldige die späte Antwort – ich habe diesen Post übersehen. In enfold\config-templatebuilder\avia-shortcodes\portfolio.php ersetze:
if(!empty($title))
{
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= '<header class="entry-content-header">';
$output .= "<h2 class='portfolio-grid-title entry-title' $markup><a href='{$title_link}'>".$title."</a></h2>";
$output .= '</header>';
}
durch
if(!empty($title))
{
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= '<header class="entry-content-header">';
$output .= "<h2 class='portfolio-grid-title entry-title' $markup>".$title."</h2>";
$output .= '</header>';
}
und
if(!empty($title))
{
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= '<header class="entry-content-header">';
$output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
$output .= '</header>';
}
durch
if(!empty($title))
{
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= '<header class="entry-content-header">';
$output .= "<h3 class='grid-entry-title entry-title' $markup>".$title."</h3>";
$output .= '</header>';
}
2) Dazu müsste man mit jQuery den Title tag der Bilder entfernen. Öffne enfold/js/avia.js und ersetze:
$('a.avianolink').on('click', function(e){ e.preventDefault(); });
durch
$('.portfolio-details-inner img').attr('title', '');
$('a.avianolink').on('click', function(e){ e.preventDefault(); });
Cheers!
Peter
Hi!
Ich glaube hier zieht PrettyPhoto den Text vom title tag des Links. Versuche diesen Code:
jQuery(document).ready(function($) {
$('.tiled-gallery-item a').each( function(){
var img = $(this).find('img'),
title = img.attr('title');
$(this).attr('title', title);
});
});
Cheers!
Peter
Hi!
Open up wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\magazine.php and replace:
$style = ($loop === 1 && !empty($this->atts['first_big'])) ? "big" : "small";
with
//$style = ($loop === 1 && !empty($this->atts['first_big'])) ? "big" : "small";
$style = (!empty($this->atts['first_big'])) ? "big" : "small";
and tick the “Should the first entry be displayed bigger” checkbox.
Regards,
Peter
I think that this topic can be very useful indeed, but may be a good idea for a moderator to clean up this topic every now and then. In this topic there are namely some links to websites that (no longer) use the Enfold theme and use another WP theme instead, or links to websites that no longer exist.
I personally am very satisfied with the Enfold theme and I find it a very user-friendly theme with a great support. Thums up for the Kriesi team!
Well, one of the sites that I have done with Enfold is http://www.dokadriekus.com/ (only in Dutch language).
Regards,
Erik
Dear Enfold developers,
1. When open my website from mobile device with android OS or iOS flag icons are over “Phone Number or small info text”.
Even worster if I add around 9 languages flag go down… examle : http://problend.problend.biz (I test WPML 3.1.5)
2. When change checker from Enfold–> Header layout —> Mobile Menu : “Hide Mobile Menu Submenu Items” one or two times, button for MENU disappear in mobile devices, example : http://altansadak.problend.biz/
I can upload wordpress + enfold 2.7 to your servers to see for bugs. I know that you find solve this troubles .
Best regards : Altan
-
This topic was modified 11 years, 6 months ago by
Ismael.
Hey Ismael,
I tried both:
<?php layerslider(1) ?>
That results in:
Fatal error: Call to undefined function layerslider() in /www/htdocs/v160319/blog/wp-content/themes/enfold/single.php on line 24
When I use
echo do_shortcode('[layerslider id="1"]');
The output is
[layerslider id="3"]
I haven’t really modified any of the php files, I’ve just added one line of code:
http://pastebin.com/PFhg7taj
(Line 25)
Thanks in advance
Henning
Hey Thanks Devin,
Quick question? do I add the code to the quick CSS file in the Enfold tab, or does it need to go somewhere else?