If you update to the most recent version of the theme there is an option for a sticky header with social icons.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: htps:/vimeo.com/channels/aviathemes/67209750
You still have:
.avia-icon-list li {
margin: 0;
padding: 0 0 30px 0;
list-style-type: circle !important;
list-style-position: outside;
clear: both;
overflow: visible;
position: relative;
min-height: 60px;
}
Which is causing that to happen. You need to get rid of that block of css so it doesn’t cause the issue and only the css from my previous post effects your list items inside the icon lists.
Hi colorit2,
Not that I know no. You can add it as a feature request to the feature request topic here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Devin
Just so you guys know, I think the big issue with Fontello is the encoding of the font files. I think a while back, Fontello switched its default from ASCII or Unicode to Private Use Area encoding — basically, the section of the Unicode range that intentionally has no characters assigned by default, so anyone can use it for their own thing without conflicts. My theory is Kriesi encoded his Entypo version as Unicode, and that’s the snag.
The “cartoony icons” are OS X’s (maybe others too) default emojis, because the PUA encoding of the font in this case means there is no “font override” going on for those Unicode characters, like there is when you encode as Unicode.
Unless I made a very stupid mistake and mixed up the files, I removed the Enfold default icon fonts, tried replacing them with PUA and ASCII encoding, just to experiment (didn’t work), then made a new Unicode-encoded file, and the icons were restored. So, just be sure to click that wrench icon next to the download button on Fontello, scroll down to “Set Encoding,” and select Unicode, and that should fix it.
Hi Dude,
I downloaded your updated pot file. I had to convert the pot file into UTF-8 before I can edit with Poedit. But I still saw “Meanwhile lets just say that we are proud %s contributed a whooping %s entries.” and “Edit the profile description here.” in English.
I found the solution now… In loop-about-author.php, the second argument for __() function was missing. Changing
$description .= ‘</br>’.sprintf( __( ‘Meanwhile lets just say that we are proud %s contributed a whooping %s entries.’ ), $name, count_user_posts( $author_id ) );
if(current_user_can(‘edit_users’) || get_current_user_id() == $author_id)
{
$description .= “</br>“.__( ‘Edit the profile description here.’ ).”“;
to
$description .= ‘</br>’.sprintf( __( ‘Meanwhile lets just say that we are proud %s contributed a whooping %s entries.’,’avia_framework’ ), $name, count_user_posts( $author_id ) );
if(current_user_can(‘edit_users’) || get_current_user_id() == $author_id)
{
$description .= “</br>“.__( ‘Edit the profile description here.’,’avia_framework’ ).”“;
fixed the issue!
I hope this fix is included in the next version of Enfold.
Thanks!
Hi,
is it possible in any way to add a submission form for ENFOLD’s testimonial feature?
I like the ENFOLD presentation of the testimonials and would not like to do this with a plugin.
Or is it an idea for an upcoming feature of ENFOLD?
Hi
sorry for the late response, i wasn’t near a computer.
about the search issue, i paste the code in “enfoldcsscustom.css”
and no change…
inline style will always have priority over external css, no ?
thanks
Thanks for your assistance. Actually, changing mb_strimwidth instead of substr code at:
wp-contentthemesenfoldframeworkphpfunction-set-avia-backend.php
fixed all.
Thanks!
Hi Dude,
This resolved the issue beautifully. There is no “��” any more!
Thank you!
I LOVE Enfold! Thank you for making me look so good to my boss.
On my site, when I search for a phrase and the home page is included in the search results, I get this sentence below the results heading for: Home:
“This is a Page excerpt. It will be displayed for search results”
Can you tell me where I can find this so I may remove it? (I am using a specific page named Home for my home page, not a posts page. I tried creating a posts page named Home and put in an excerpt that I wanted but it did not change the excerpt blurb on search results.)
Thank you!
that didn’t work either. here’s what he said:
“Turned on Clear Type text and cleared history from browsers Did not help still seeing same as before for icons”
It would be great to be able to add a class to buttons so that we can take advantage of the fact that you already have PrettyPhoto integrated.
That way visitors can open iframes, videos, images etc. within a lightbox by clicking a button element.
Another solution would be to add some these options within the button edit area. For example:
Open link in lightbox? Yes/No
Width of lightbox: X (mainly for iframe)
Height of lightbox: X (mainly for iframe)
Thanks!
Ron
Hi,
I have Enfold theme bought, and now I want to configure it with bbPress in the way I need.
1. Under topics list I have an “Add new topic” form. I would like to have a button instead and form to appear on separate page. Is it some Enfold specific thing to display the form? If yes how to fix it? If no do you know how to fix it or any tutorial maybe? I have searched through whole web and nothing
2. Is IP address under the avatar Enfold specific as well? How do I disable it. By hiding with css?
3. What is the field saying 0p under avatar for. What 0p means? Some points? How does it work. I assume again it is Enfold sepcific as I have not seen it in any other bbPress forum
Thanks in advance.
After I typed the reply above, I remembered a plugin called RAW that stops WordPress automatic formatting. I tried that and it seems to have done the trick.
Dude, I just wanted to check and see if RAW caused any know problems with Enfold/Avia?
Anyone else having the same problem:
1. Download the Raw Plugin and activate it
2. Add the following around your html:
Code:
<!–raw–>
Your stuff here
<!–/raw–>
Thanks
-Josh
Thanks for the reply again.
About Testament – follow your tip and all is ok.
Now, regarding the portfolio still no success.
I know you must be very busy, but it would be possible for a video tutorial on that layout template? (as in the model enfold the first page, “Single Portfolio: 2/3 Slider” – images with title and up arrows?
Regards,
Luis Girardi.
Hey!
Go to http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 and log in. You should be able to download v2.0.1 from themeforest.
Regards,
Peter
Try following – open up enfoldframeworkphpclass-framework-widgets.php and replace
if(empty($avia_config['g_maps_widget_active']))
{
$output .= "<script type='text/javascript' src='$prefix://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false'></script>";
$avia_config['g_maps_widget_active'] = 0;
}
with
if(empty($avia_config['g_maps_widget_active']))
{
$avia_config['g_maps_widget_active'] = 0;
}
if(apply_filters('avia_google_maps_widget_load_api', true, $avia_config['g_maps_widget_active']))
{
wp_register_script( 'avia-google-maps-api', $prefix.'://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false', array('jquery'), '1', false);
wp_enqueue_script( 'avia-google-maps-api' );
}
Hi Jase,
The first thing to do would be to update your theme files to the newest version available from your Downloads on Themeforest. Version 1.9.1+ is required for WordPress 3.6 compatibility and there were also some new features in 2.0.
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
Regards,
Devin
Hi Kriesi,
I’ve got a contact page with a 1/1 section and Widget Area specified. Whenever I add a Google Map widget with longtitude / latitude I get the following error on in console (with the map NOT displaying):
Uncaught ReferenceError: google is not defined
Any help would be appreciated.
We’re running Enfold, 2.0, WP 3.6
You can use Relevanssi for the ajax search query. Open up enfoldfunctions-enfold.php and replace
$defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
$query = array_merge($defaults, $_REQUEST);
$query = apply_filters('avf_ajax_search_query', http_build_query($query) );
$posts = get_posts( $query );
with
$defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
$searchquery = array_merge($defaults, $_REQUEST);
if(!function_exists('relevanssi_do_query'))
{
$searchquery = apply_filters('avf_ajax_search_query', http_build_query($searchquery));
$posts = get_posts($searchquery);
}
else
{
global $query;
$tempquery = $query;
$searchquery = apply_filters('avf_ajax_search_query', $searchquery);
$tempquery->query_vars = $searchquery;
relevanssi_do_query($tempquery);
$posts = $tempquery->posts;
}
Hi Kriesi,
Definitely love this theme!!!
I just have one wish : To have the video playing in the ajax portfolio directly ( without getting it in a lightbox) That would be great!!!
Thanks a lot
Kambate
Hi,
I uploaded an updated pot file here: http://www.mediafire.com/?3d6hhhxy3dihf1z – it’s compatible with Enfold 2.0. Please use it to update your po file (eg use PoEdit: http://www.poedit.net/ to update the existing po file).
Hi
When i write something into the custom.css file, then it does’t read it in enfold.
Therefore when i add the same code into the quick css box, then it works fine.
Do i have to activate the custom.css somehow ?
Great thanks. I didn’t know the mb_strimwidth function yet. We’ll fix it in the next version. If you need a quick fix open up wp-contentthemesenfoldframeworkphpfunction-set-avia-backend.php and replace
function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>')
{
if($stripClean)
{
$string = strip_shortcodes(strip_tags($string, $excludetags));
}
if(strlen($string) <= $limit) return $string;
if(false !== ($breakpoint = strpos($string, $break, $limit)))
{
if($breakpoint < strlen($string) - 1)
{
$string = substr($string, 0, $breakpoint) . $pad;
}
}
// if there is no breakpoint an no tags we could accidentaly split split inside a word
if(!$breakpoint && strlen(strip_tags($string)) == strlen($string))
{
$string = substr($string, 0, $limit) . $pad;
}
return $string;
}
with
function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>')
{
if($stripClean)
{
$string = strip_shortcodes(strip_tags($string, $excludetags));
}
if(strlen($string) <= $limit) return $string;
if(false !== ($breakpoint = strpos($string, $break, $limit)))
{
if($breakpoint < strlen($string) - 1)
{
$string = mb_strimwidth($string, 0, $breakpoint) . $pad;
}
}
// if there is no breakpoint an no tags we could accidentaly split split inside a word
if(!$breakpoint && strlen(strip_tags($string)) == strlen($string))
{
$string = mb_strimwidth($string, 0, $limit) . $pad;
}
return $string;
}
If you want to change the “You are here” text open up wp-contentthemesenfoldfunctions-enfold.php and replace
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
with
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true, 'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>'));
and instead of “You are here” insert your custom text.
Hi Dude,
I could not find new version of Enfold at CodeCanyon.
There is 1.9.9 version only present.
Please, update it and I will use v.2.0.x also.
Kind Regards,
Aleksey
Hi!
Yes – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php and delete
$output .= "<div class='av_table_col first portfolio-preview-image'>";
$output .= $images;
$output .= "</div>";
Best regards,
Peter
Please try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace
return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";
with
return "<div class='avia_textblock {$custom_class}'>".stripslashes(ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content)))."</div>";
Hi
1. I got some issue with the thumbnails and the mobile view.
They don’t stay on the bottom border in mobile view.
A way to fix that?
website: http://maurilux.com/properties/villa-karma/
screenschot: http://maurilux.com/wp-content/uploads/2013/08/Thumbnails-layerslider.png
2. The Layerslider as a seperated plugin (not integrated in Enfold) displays the thumbnails under the slider like here:
http://mauritius-panorama.com/.
Can i do that in enfold as well?
3. Is it possible to revome the thumbnails just in mobile view?
Thanks for answers