First of all, we like the Enfold theme very much. It works like a charm. But our clients have some troubles with it. They have windows PCs and can’t see the »Easy Slider« we have integrated on their site. On our MACOSX, Safari machines everything looks right. But some Windows user can’t see the Easy Slider, they say.
They have installed Windows 7 Enterprise and work with IE 8 (8.0.7601.17514).
Could You help us out?
Schöne Grüße,
Rainer
PS: Unfortunately we have just seen a few moments ago, that a new version of Enfold is available. The above site is still running with version 2.4.2. Could this cause the problem? (FYI: The WordPress core runs with version 3.8)
PPS: Wenn Sie in deutsch antworten könnten, wäre ich Ihnen sehr verbunden.
-
This topic was modified 12 years, 2 months ago by
Yigit.
Hey!
1) I’ll look into the author translation – I think it’s related to the theme code. I’ll post a solution asap.
2) The other things (meta description and title on the author page or 404 page) is imo not a theme issue. I switched to the TwentyThirteen theme and I can reproduce both issues here: http://www.ld4change.com/zh-hans/author/ and here: http://www.ld4change.com/zh-hans/author/raju/ ). The title and the description is also in English and no Enfold code affects these pages whatsoever.
Regards,
Peter
Hey,
Single portfolio: 2/3 gallery
Is it possible to move the thumbnails to the top (above the image)?
http://kriesi.at/themedemo/?theme=enfold
tnx!
Hi!
Kannst du mir bitte einen ftp Account einrichten – ich habe gerade den Code in wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php analysiert, aber dabei einen php error verursacht. Da so etwas öfter vorkommen kann möchte ich lieber mittels ftp die Dateien modifizieren. Bis dahin, kannst du die Originaldatei hochladen, um den Fehler zu beheben.
Best regards,
Peter
Hi Devon,
thank you so much for sharing your work. Unfortunatley it does not work for the musikzentrale website so far. Here is what i have done:
– disabled custom.css so it does not interfere with the modifications
– entered this to the Quick CSS field in Enfold -> Styling
/*Removes
================================================== */
#top.home #header_main {
border: 0;
}
.header_color .header_bg {
background: transparent;
border: 0;
}
/* # Header
================================================== */
#top.home #top .logo {
left: -4px;
}
/*Navigation*/
.header_color .main_menu ul:first-child > li > a {
color: #fff;
font-size: 15px;
}
.header_color .avia-menu-fx {
background: #aabdd3;
border-color: #aabdd3;
display: none;
}
/* # Home Page Specifics
================================================== */
/*Header*/
#top.home #header {
position: absolute;
padding-top: 40px;
}
/* #slider */
#top.home #fullscreen_slider_0 {
padding-top: 128px;
height: 710px;
background: #e6e6e6;
border: 0;
}
It moves the header and the intro section down as supposed to and removes the borders, but header is still white and the full screen slider is to far underneath the header. I assume, i missed something in the styling, so any idea is welcome. Otherwise i am excited to read your tutorial on the Full Screen Homepage soon.
Thanks again,
Sebastian.
This reply has been marked as private.
Hey Peter,
That did not do the trick.
I got a new error note after appliing the code you suggested.
Notice: Undefined variable: data in /usr/home/lmscar124/www/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 344
Fatal error: Cannot use object of type WP_Error as array in /usr/home/lmscar124/www/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 345
What I’ll do. I’ll be moving to a new server with more php memory 128M, and start with a clean install of WP, Enfold and WPML. And pray that it will work.
Hey!
1) Maybe I’m wrong but I think the author title/meta description is not translated because you didn’t set up a translation yet. Go to the user profile page: http://www.ld4change.com/wp-admin/user-edit.php?user_id=2&wp_http_referer=%2Fwp-admin%2Fusers.php%3Flang%3Dzh-hans%26admin_bar%3D1 and translate the English user profile (name, last name and nick name and the “Biographical Info”) to Chinese. You can switch between the Chinese and English version by using the language switcher dropdown in the admin bar.
2) I checked the 404 page and everything is translated except the number 404 ( 404错误:找不到页面 and 404 找不到页面 ). Then I checked to the localization settings screen (Tools > Localization > Themes > Enfold, select Chinese “edit” and use the right text box to search for “404” text strings) and there I found exactly the same strings. If you want to change them edit these text strings and click the “generate mo-file” button.
Cheers!
Peter
Hey!
You can easily remove it – open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php and replace
if($thumbnail)
{
$thumb_fallback = $thumbnail;
$thumb_class = "real-thumbnail";
}
else
{
$thumbnail = "<span class=' fallback-post-type-icon' ".av_icon_string($format)."></span><span class='slider-fallback-image'>{{thumbnail}}</span>";
$thumb_class = "fake-thumbnail";
}
with
if($thumbnail)
{
$thumb_fallback = $thumbnail;
$thumb_class = "real-thumbnail";
}
else
{
$thumbnail = false;
$thumb_class = false;
}
Cheers!
Peter
Hi!
Normally Enfold will display the WPML flags in the top navigation menu. If you want to add the flags to the main menu add following code to the functions.php file (insert it at the very bottom of the file)
if(!function_exists('avia_append_lang_flags'))
{
//first append search item to main menu
add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 10, 2 );
function avia_append_lang_flags( $items, $args )
{
if ((is_object($args) && $args->theme_location == 'avia'))
{
global $avia_config;
global $sitepress;
$languages = icl_get_languages('skip_missing=0&orderby=custom');
if(is_array($languages))
{
foreach($languages as $lang)
{
$currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
$items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
$items .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>";
$items .= "</a></li>";
}
}
}
return $items;
}
}
Best regards,
Peter
Hi!
The portfolio preview box will always show the entire preview content and you can’t create an excerpt of the preview text. However if you want to add read more button after the preview text open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace
$output .= $content;
with
$output .= $content;
$output .= '<a href="'.get_permalink($id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a>';
Cheers!
Peter
Hey!
First, go to Appearance > Widgets then create a custom widget area using the “Enfold Custom Widget Area”. After that insert the Enfold Google Maps Widget on the custom widget area that you created. Go to the contact page then insert the Widget Area element. Select the new custom widget area.
Cheers!
Ismael
Hey duttonstuart!
You have a very old version of the theme. There is an added “Theme Update” option for Enfold. It automatically check for updates if there is any. Please download the latest version of Enfold on your themeforest account then update the theme via FTP. Please watch this video by Devin: https://vimeo.com/channels/aviathemes/64927356
You can learn more about the automatic theme update here: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
Ismael
Hello,
I am having an issue with my installation of enfold. All of a sudden, I am having a problem with the visibility of blog posts in the slider feature. The posts (and the whole slider itself) disappears when you are not logged into the site, but reappears when you are logged in. I have triple-checked, and there are no “private” or member access locks on any of the posts, and the general settings should allow full read access to visitors who don’t log in. Curiously, the blog posts can be accessed though via the regular blog page when you are not logged in. What could be happening here?
You can check it out yourself…. http://www.murj.org . The front page, when logged in (on any level of account, including subscriber), shows a blog post slider in the bottom frame. When you are logged out, the whole slider element disappears entirely. If you click “staff login”, you can create a test account to try this if you would like.
Thanks!
Hello,
1. How can I disable the time and day release information, that appears if I select “Enfold Latest Portfolio” widget for sidebar. I’d like to display title only, without any information about time and date of release underneath.
2. If I chose portfolio grid with the link handling “open a preview of the entry (ajax portfolio)” and click on it to come further to the portfolio page itself after preview, how can I change the size of the image that is shown on top? Its cutted. I would like to display it smaller but not cutted.
3. How can I change colours of Icon List Symbols manually?
Thank you!
milatch
This reply has been marked as private.
Hi babayard!
Please download the theme again on your themeforest account then upload it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/64927356
Also, try to update the theme right through the dashboard. Refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
Ismael
This reply has been marked as private.
Hi,
I just uploaded the latest Enfold version 2.4.5 via FTP to a brand new WP install. No plugins, no other themes. After doing so this error showed up:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting ‘]’ in /home/…/….com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider.php on line 394
The same problem happened in version 2.4.4
I deleted the file in question and instead uploaded the file from version 2.1 and that works. This can’t be the best solution.
Hi,
I would like to change the search result page and add a preview of the text containing the search words on the results page.
Basically I would like to have
– Page Title
Here the sentence in which the word appears.
I would also like to replace the numbers by an icon.
Do you know if this is something doable within Enfold?
Thanks for your help
Can someone please recommend a good pop-up plugin for this theme?
I’d need it for things like the contact form, maybe even inserting an Enfold shortcode into…
Hey glozemedia!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
.boxed#top { box-shadow: 0 0 5px 3px #888888; }
Best regards,
Yigit
-
This reply was modified 12 years, 2 months ago by
Yigit.
Hi rcgroup!
Please try adding following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 480px) {
#layer_slider_1 select { margin-left: -10px; }}
@media only screen and (max-width: 767px) and (min-width: 481px) {
#layer_slider_1 select { margin-left: 50px; }}
Cheers!
Yigit
Hey!
You can change the title section of Accordion element by adding following code to Quick CSS in Enfold theme options under Styling tab
.js_active .toggler { font-size: 16px; }
Regards,
Yigit
Hey Michael64142!
Please go to Appearance > Themes and click “Theme Details” on Enfold and see it on the right side of themes name http://i.imgur.com/SjJUu45.jpg
If it is not 2.4.5 then it was failed. Please try updating via FTP
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,
Yigit
Hey Gil413!
How would you like to change it? You can use following class in Quick CSS section in Enfold theme options under Styling tab to apply css rules
.widgettitle { font-size: 18px; }
Cheers!
Yigit
Hi carendavis!
In WordPress dashboard please go to Appearance > Editor and open Header.php and find following line
<html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> ">
and change it to
<html <?php language_attributes(); ?> class="<?php if(!is_home() && !is_front_page()) { echo " html_stretched ".$responsive." ".$headerS; } else { echo " html_$style ".$responsive." ".$headerS; }?> ">
and choose boxed layout in Enfold theme options under Styling tab
Regards,
Yigit
Hi!
If only css changes were made, they are either in Custom.css file inside Enfold/css folder ( which you can copy and paste in updated version ) or in Quick CSS section in Enfold theme options. For the ones in Quick CSS section you do not need to worry, they will not be overwritten and you do not need to create a child theme if only CSS changes were made and/or will be made.
Cheers!
Yigit
Hi fshn2day!
Please go to Enfold theme options > General Settings and make sure that you choose to display one of responsive layouts
Regards,
Yigit
This reply has been marked as private.