Everything about the Enfold theme is fantastic except the responsive logo. I seem to have the hardest time getting the logo (specifically the centered logo) to fit/look right on a smartphone.
Is there anyway to upload a separate logo that is sized correctly for the smartphone header? I have used other themes that either had a spot in their admin for this or had a workaround by adding some additional code to insert a new logo image just for the smartphone.
Is this possible?
Thanks!
Thanks for the quick reply. I can just go to appearance – themes – upload the new Enfold 2.7 version – activate it? Then I would have to deactivate the child theme because I have one (downloaded it from your site), once the new Enfold is activated, then I reactivate the child once again? This is where I am confused, I do not know the correct order to do this.
I would appreciate your help!!!
Actually… that may be exactly it. i have a full slider along the top.
however… it’s almost the exact same layout as the sample page has: http://kriesi.at/themedemo/?theme=enfold
when you click on pages from the mega menu you’ll see a full page slider and then below it is a page with a sidebar menu. i’m trying to achieve the same look.
Robert
I’m not sure if this is something I’ve done, or if it’s the default approach with Enfold, but the footer link of the page I’m on is highlighted with a reversed box (see screen grab attached). How do I remove this box and just use a colour to indicate the active link?
Here is a link to a screengrab:
https://dl.dropboxusercontent.com/u/4782680/Enfold-footer-question.jpg
I have the same issue and after searching through the forum and seeing that the usual culprit is the WPML plugin, (not installed on our site) I’m still not able to identify the culprit on our site after …
* deactivating each plugin,
* reinstalling wordpress 3.9 and
* re-installing enfold 2.7
Here is the list of installed plugins …
Akismet
BbPress Reply By Email Master
Bbpress Members Only
bbPress Notify (Please do not update)
bbPress
Configure Login Timeout
Download Manager
Duplicate Post
GD bbPress Attachments
Jw Player Plugin For WordPress
LeadPages connector
PilotPress
Pretty Link Lite
Sucuri Wp Plugin
Wordpress Seo
Worker
WP User Avatar
WPDM – Archive Page
WPDM – Image Button
WPDM – Extended Short-codes
Wpdm Tinymce Button
Any other suggestions?
Could u help me please. I bought this theme for 25 days ago. I tried to work it. Only grey blank page occurs. Other theme works fine. did I losed my money?
-
This topic was modified 11 years, 11 months ago by
guneybil.
This reply has been marked as private.
Got the answer,
How to mark ths as resolved???
Added
.title_container .breadcrumb { left: -4px; top: 75%; }
#top .title_container .container { min-height: 70px; }
Hey!
You can add in any custom css to a child themes style.css, your Quick CSS in the themes Styling tab or in the themes custom.css file in the css folder.
You can customize the menu font using the Advanced Styling tab in the theme options (must be on Enfold 2.7).
Regards,
Devin
Hi leverate_marketing!
Are you using Enfold version 2.7 with WordPress 3.9? If not, first update to both and try deactivating all other active plugins to make sure there is no conflict with the theme.
Cheers!
Devin
It sounds like the data in your database on the new server is incorrect/corrupted. Unfortunately there isn’t a fix that we can do or suggest in this case. The typical way of moving should be to use something like the plugin mentioned here http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
Your options are pretty limited but you could have a freelance developer attempt to fix your WordPress tables for the theme options and LayerSlider options, clear them out or do a full re-install of WordPress and re-export the old site data and then import it in.
Hello!
Administration Enfold translation in french: Admin-Enfold-2.7_French.rar
Note: the files will be deleted on the next update.
If you know an executable to make the changes, I will do job!
Cheers!
-
This reply was modified 11 years, 11 months ago by
youyou78. Reason: bug with the title tag on the link
This reply has been marked as private.
Hey etheravion!
Open up enfold\framework\php\class-framework-widgets.php and replace:
if('display title and excerpt' == $excerpt)
{
echo "<div class='news-excerpt'>";
if(!empty($avia_config['widget_image_size']))
{
echo "<a class='news-link-inner' title='".get_the_title()."' href='".get_permalink()."'>";
echo "<strong class='news-headline'>".get_the_title()."</strong>";
echo "</a>";
if($time_format)
{
echo "<span class='news-time'>".get_the_time($time_format)."</span>";
}
}
the_excerpt();
echo "</div>";
}
with
if('display title and excerpt' == $excerpt)
{
echo "<div class='news-excerpt'>";
if(!empty($avia_config['widget_image_size']))
{
echo "<a class='news-link-inner' title='".get_the_title()."' href='".get_permalink()."'>";
echo "<strong class='news-headline'>".get_the_title()."</strong>";
echo "</a>";
if($time_format)
{
echo "<span class='news-time'>".get_the_excerpt()."</span>";
}
}
echo "</div>";
}
Regards,
Peter
HI Josue,
Thanks for your research and answer
What is there to do then?
I google’ed the foreach() and found something about that the error could be caused be a foreach that is not an array?
I am not a programmer… But maybe somewhere in the code there is a missing array?
(Strangely enuf… I have another client with Enfold and SEO by Yoast and this error is not there?).
Have a nice day
Peter
Herbalife Distributor since 1995
BizDoktor
Work From Home
Hey Biggy!
Wenn die Pro Lightbox nicht mehr funktioniert würde ich empfehlen auf die standardmäßige PrettyPhoto Lightbox (welche mit dem Theme kommt) zu verwenden. Sie hierzu: https://kriesi.at/support/topic/how-to-use-nextgen-gallery-with-enfold-and-other-kriesi-themes/ – “1) Deactivate the lightbox effect”. Wir können leider derzeit keine umfassende Kompatiblität mit NextGen Pro versprechen bzw. dbzgl Support anbieten. Wenn ich etwas mehr Zeit finde werde ich mir aber ansehen, ob wir dbzgl etwas verbessern können.
Regards,
Peter
Hey!
Please update to Enfold 2.6.4. Older theme versions are not compatible with WP3.9. I recommend to use ftp: http://vimeo.com/67209750 to update the theme.
Regards,
Peter
Hey!
I recommend to try a different blog layout (single author or multi author). The grid layout uses a custom post query which is probably not compatible with the filter widget because the widget only affects the main wordpress query. If you want to use the grid blog layout you would need to modify the code in enfold\config-templatebuilder\avia-shortcodes\postslider.php and implement the query parameters of the taxonomy widget. I recommend to hire a freelancer for this job if necessary.
Update – I just noticed that the ?s= parameter is set but empty. It breaks the filter because our theme thinks it’s a search query. I recommend to remove ?s= or &s= from the taxonomy url or try to insert this code into the child theme functions.php file:
add_action('after_setup_theme','avia_remove_search_query');
function avia_remove_search_query(){
remove_filter('pre_get_posts', 'avia_search_query_filter');
}
Best regards,
Peter
Hey hamzahmauzam!
This widget is not bundled with Enfold or bbpress – it’s a custom widget which is part of the Envato verification plugin Kriesi uses to verify the themeforest purchase codes. You can search for a similar free login widget here: http://wordpress.org/plugins/search.php?q=login+widget
Best regards,
Peter
Gday Kriesi
To make the 2/3 portfolio page (http://kriesi.at/themes/enfold/portfolio-item/slider-two-third/) do I just make each page manually each new item, or is there a predefined template for a 2/3 item that I choose? I haven’t been able to find any templates in the portfolio page choices. I’m happy to make them by myself but wondering am I missing something obvious?
cheers
Darryl
Done, but #1 the Subscribe button isn’t showing and #2 is there anyway to use Enfolds buttons? or how can I style MailChimps buttons?
Hello
I found that line but when I change the code I got this error:
Parse error: syntax error, unexpected 'http' (T_STRING) in /home/********/public_html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 444
Enfold version 2.7.
I have a three-column blog grid page. The images of each grid is horizontally aligned. However, there is no fixed height for title, date, except, and “Read more–>”. As a result, if one blog title is taking an extra line than the other blog, or has more lines of excerpts, then the texts are not horizontally aligned. How can I make title to take for example 2 lines, and excerpt to take 2 lines?
Thanks for your help!
This reply has been marked as private.
Hola, tengo este problema que adjunto en las imagenes. Espero me puedas ayudar, pues no puedo modificar ninguna de las paginas ya creadas mediante el editor avia de plantillas. Cuando intento modificarla no me aparece nada en el editor y si intento agregar alguna imagen o texto me da el error que adjunto.
Estoy desesperado, ya no se si es por la base de datos o de que puede ser.


Un saludo
This reply has been marked as private.
For some reason, the look of my BBpress forum looks no where near as nice as the enfold demo page here: http://kriesi.at/themes/enfold/forums/topic/hello-world/
An example of my forum page can be found here: http://69.195.124.69/~localsp4/forums/topic/test-forum/
How can I get my forum to look like the demo page forum?