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
Hey,
Please edit js > avia.js, find this code:
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}
Replace it with:
if(st < el_height/1.5)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/1.5;
header.addClass('header-scrolled');
}
Please don’t forget to remove browser cache then reload the page a few times.
Regards,
Ismael
Hey,
Please refer to this link on how to add social icons using addThis: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606
Once you’re done, go to Appearance > Widgets then insert a Text widget on the Footer – column widget areas. Copy the social button code on the Text widget.
Regards,
Ismael
Hi,
URL: tkramer.wpengine.com
I placed the logo in the theme at 340px X 156px, which is the recommended size. When scrolling down the page, the header resizes and the logo shrinks in size along with the header. I like the effect. However, I don’t want the logo to shrink as much. Instead of shrinking to 58px in height, I would like it to shrink to 120px in height.
Any help shall be appreciated.
Thanks,
Michael
Hi Guys
Since updating to latest theme files, the search button and also the “View All Results” buttons do not work. They both just refresh the home page. The dynamic list is working fine. It’s more if I hit View All Results or just type a word and hit enter.
Any suggestions?
Thanks in advance.
Cheers
Jase
hi Devlin – wow thank you for the quick reply! I have created a new Widget Area, I am guessing a new custom area for each feed?
But how do I add Facebook to the new empty widget area?
Hi collette,
The easiest way would probably be to add a new widget area in the Appearance>Widgets section of WordPress using the themes custom widget area functionality. Then add those three items in as widgets to the new widget area and on your 2 column layout add a Sidebar element to the column that should show the feeds and set it to output your custom widget area showing 3 widgets.
Regards,
Devin
Hello,
I’m almost finished with a site I’m putting together for a client using Enfold and now I’m having trouble with the contact forms. There are 3 different forms on the site – 2 of them work, 1 doesn’t. They all use the same email address and I set them all up identically. Any ideas what might be happening?
These forms work:
http://pecanpieproductions.com/advertise-on-screen/start-your-advertising-program/
http://pecanpieproductions.com/join-our-theatre-network/start-selling-advertising-on-your-screens/
This one doesn’t work:
http://pecanpieproductions.com/contact/
(doesn’t produce the “email sent” message, doesn’t send any emails)
Thanks for the help.
Thanks Devin, Dude mentioned changing the background to white? (I thought Enfold was already white, but obviously not) and this would eliminate the grey, is there an easy way to do this safely?
Thank you.