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
Unfortunately this is not possible at the moment but you can hide certain menu items by inserting “noMobile” into the css class field of these items (if you can’t find this option field on the menu option page search for the “Screen Options” tab in the right top corner and click on it. Then tick the checkbox next to “CSS Classes” to activate this field).
If you really need to separate menus you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests and we’ll look into it if more users request it.
Hi-
I am finalizing a real-estate site that uses Enfold. As part of the effort, I need to create HTML markup in order to provide links to houses between certain price ranges. To do this, I am using the Advanced Builder in Enfold and creating a textblock. I go into the TEXT tab and create my markup. I am creating a table with links in each cell. (note: I tried to include code here but it wasn’t coming through correctly… so please view source using the link provided below).
If I save the Textblock and then save the page, it works fine However, if I go back in and edit the page, without saving the textblock specifically (i.e. going into the textbox and re-saving it), nothing in the table shows. I viewed the source to try and see what was happening. It appears it is dropping the end-quote in the href.
So, instead of This is CNN …
I am getting This is CNN …
Which breaks the markup and causes the links to not appear.
I have saved a page that demonstrates this behavior. You can see the results:
http://parkcityproperty.com/neighborhoods/aerie/
Above the Homes, Condos, and Land buttons you should see links to homes that are 100K – 200K, 200K-300K,etc. but it’s blank (between two hr’s). If you view the source, you’ll see its missing the closing tags for the hrefs.
Does anyone have a workaround for the issue or a suggestion on how to make this work?
I am on version 1.91 of the Enfold Framework.
Thanks for the help!
Hi!
How can I change the color of the Buttons in Enfold e.g. the ones in Woocommerce?
Regards
Maike
Hi Ismael,
Thanks so much!
The code worked perfectly.
All the best,
Michael