-
AuthorSearch Results
-
March 26, 2014 at 10:24 am #243241
In reply to: Can't seem to install this theme
Hi Christie!
See if the video here helps: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/
If there is one of many issues installing through the WordPress admin installing over FTP bypasses them pretty easily and without much fuss.
Best regards,
DevinMarch 26, 2014 at 10:14 am #243238In reply to: Avia Layout Builder clashing with MailPoet plugin
Thanks Dude. Actually I took this up with Mailpoet too and thye came back to me last night admitting that their latest release had a bug and I should delete the wysija newsletters folder using ftp then re-install mailpoet plugin from wordpress.
I’ve done this and now Mailpoet is ok – i.e. I am now able to edit my pages again in Enfold.
Best wishes,
Derek
March 26, 2014 at 10:09 am #243235In reply to: Enfold extremly slow
Thanks Peter. I have removed polylang now – I suppose you could see that? So now WPML is what I should rely on – right?
The translations show fine now on both languages.However the site is still awful slow. I have run the site through https://developers.google.com/speed/pagespeed/insights/ – and many things has to be done. Do you have any suggestions how to do this besides optimizing the images? I have installed W3 Total Cache – do you think it can help out speeding up the loading time?
Regards,
EvaMarch 26, 2014 at 9:51 am #243225This reply has been marked as private.March 26, 2014 at 9:47 am #243223In reply to: Enfold extremly slow
Hey!
I just replaced
if(defined('ICL_SITEPRESS_VERSION') && defined('ICL_LANGUAGE_CODE'))with
if(defined('ICL_LANGUAGE_CODE'))The reason is that polylang claims to support WPML functions (see: http://polylang.wordpress.com/documentation/documentation-for-developers/compatibility-with-the-wpml-api/ ) and I thought that it might work with Enfold out of the box because we also rely on the WPML api. But unfortunately it does not work and it seems like additional work would be required to make the plugin/theme fully compatible.
Cheers!
PeterMarch 26, 2014 at 9:43 am #243222In reply to: Drop down box to select forms
Hi!
Did you try the “Datepicker” element: http://www.clipular.com/c/4949742886846464.png?k=TL4PjAR-Tcv4PtfuqAg_BltnjFI ? Kriesi also uses it on the demo page: http://kriesi.at/themes/enfold/shortcodes/contact-forms/
Cheers!
PeterMarch 26, 2014 at 9:40 am #243221In reply to: Changing the background image of the LayerSlider
Hi Anja!
It’s a slide background image: http://www.clipular.com/c/4973811883573248.png?k=s_N_mtFGyEli78kC_1BWdIL2VMQ – it does not affect the entire slider like the “Global Settings” background but just one slide. You can’t find it in the media gallery because wordpress won’t import it as media attachment when you import the slider/theme demo data. If you want to add the image to your media gallery you can download the image here: http://kriesi.at/themes/wp-content/themes/enfold/config-layerslider/LayerSlider/avia-samples/slide1_Layer_1.png and then upload it by using the media gallery uploader.
Regards,
PeterMarch 26, 2014 at 9:34 am #243214In reply to: fontello bag icon and replace 'cart' text with 'bag'
Hey bleepstudio!
In enfold/functions.php search for:
'cart' => array( 'font' =>'entypo-fontello', 'icon' => 'ue859'),and replace ue859 with any other char code. You can use the icon shortcode “char selector”: http://www.screenr.com/MYsN to get the character code.
Best regards,
PeterMarch 26, 2014 at 9:29 am #243213In reply to: Redirect Link Post Format
Hi!
Open up wp-content/themes/enfold/includes/loop-search.php and replace:
$post_format = get_post_format() ? get_post_format() : 'standard';with
$current_post = array(); $current_post['the_id'] = get_the_ID(); $current_post['post_format'] = get_post_format() ? get_post_format() : 'standard'; $current_post['content'] = get_the_excerpt(); $current_post['content'] = empty($current_post['content']) ? strip_shortcodes( get_the_content() ) : $current_post['content']; $current_post['title'] = get_the_title(); $current_post = apply_filters( 'post-format-'.$current_post['post_format'], $current_post ); extract($current_post);and replace:
echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></h2>";with
echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".$title."</a></h2>";Best regards,
PeterMarch 26, 2014 at 9:25 am #243209In reply to: Enfold extremly slow
Thank you, I figured it out.
Regards,
EvaMarch 26, 2014 at 9:23 am #243208In reply to: Enfold compatibility with Explorer 8
Hi abedia!
IE8 doesn’t support a lot of modern css which is why there will be cases that it doesn’t look quite right. The header background should still show however so if you can provide a link to the site we’ll see whats going on.
The width is dependent on the browser support media queries which IE8 does not. You can use a plugin to try and force IE8 to use media queries as a hack: http://wordpress.org/plugins/respondjs/
Regards,
DevinMarch 26, 2014 at 9:21 am #243207In reply to: Enfold extremly slow
Hi!
You can replace the whole contents of that file in that case or re-upload the theme files to overwrite them entirely (same thing an update does).
Best regards,
DevinMarch 26, 2014 at 9:20 am #243206In reply to: Add elements to visual composer
Hey!
Yes. Use this code:
add_filter('avf_option_page_init', 'add_option_tab'), 10, 1); //Adds option page to Enfold theme option panel function add_option_tab($avia_pages) { $avia_pages[] = array( 'slug' => 'mysettings', 'parent'=>'avia', 'icon'=>"hammer_screwdriver.png", 'title'=>__('My Tab','avia_framework')); return $avia_pages; }to add a new option tab and this code:
add_filter('avf_option_page_data_init', 'add_option_to_settings_page', 10, 1); //Adds options to the "Custom Post Types" option page function add_option_to_settings_page($avia_elements) { $avia_elements[] = array( "slug" => "mysettings", "name" => __("Custom Message",'avia_framework'), "desc" => __("Please enter the message that you would like to dispay to your visitors.",'avia_framework'), "id" => "message", "type" => "textarea", "std" => "" ); return $avia_elements; }to add new options to this tab. If you want to add options to an existing tab replace “mysettings” with the slug of the tab you want to modify.
Cheers!
PeterMarch 26, 2014 at 9:15 am #243202In reply to: How to add a class to a button?
Hey Chris!
Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons.php and replace:
$output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";with
$output .= "<a href='{$link}' class='avia-button some_class ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";and instead of some_class insert your class. If you don’t want to modify the parent theme copy the wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons.php file to your child theme and follow the instructions here: https://kriesi.at/support/topic/add-elements-to-visual-composer/
Best regards,
PeterMarch 26, 2014 at 8:57 am #243197In reply to: Entypo in widget title
Hey Shallnotbe!
Please try to insert this code at the very bottom of enfold/functions.php or the child theme functions.php file:
function widget_title_shortcode($output) { return do_shortcode($output); } add_filter('widget_title', 'widget_title_shortcode');Best regards,
PeterMarch 26, 2014 at 8:19 am #243192In reply to: Woocommerce image size
Hi Alisa!
You can re-size the main product image with:
.template-shop .single-product-main-image .images a { max-width: 245px; }Insert the css code into the quick css field (Enfold > Styling) or into your child theme style.css.
Cheers!
PeterMarch 26, 2014 at 8:02 am #243181Hi codepantry!
You can use the “Custom ID” field: http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png to add a custom id to each color section. You can use this id to apply some custom style code to the text within this section. I.e. if you insert “portfolio” into the field you can style your text with:
#top #portfolio img{ float:left; } #top #portfolio p{ float:right; }This is just an example – obviously you can use the #portfolio selector to determine the position of divs, etc. too.
Best regards,
PeterMarch 26, 2014 at 7:57 am #243179In reply to: move comments to end of posts
Hey!
Open up wp-content/themes/enfold/includes/loop-index.php and delete:
if ( get_comments_number() != "0" || comments_open() ){ echo "<span class='comment-container minor-meta'>"; comments_popup_link( "0 ".__('Comments','avia_framework'), "1 ".__('Comment' ,'avia_framework'), "% ".__('Comments','avia_framework'),'comments-link', "".__('Comments Disabled','avia_framework')); echo "</span>"; echo "<span class='text-sep text-sep-comment'>/</span>"; }Then replace:
echo '</footer>';with
if ( get_comments_number() != "0" || comments_open() ){ echo "<span class='comment-container minor-meta'>"; comments_popup_link( "0 ".__('Comments','avia_framework'), "1 ".__('Comment' ,'avia_framework'), "% ".__('Comments','avia_framework'),'comments-link', "".__('Comments Disabled','avia_framework')); echo "</span>"; } echo '</footer>';Cheers!
PeterMarch 26, 2014 at 7:22 am #243170David, thanks for your reply.
Simply try this: create a button within the latest Enfold release. Is it all good? I always added button without issues. Now, I have troubles to do it. Cannot say why. In Italian we usually say: “Boooh!” :) ***EDIT*** Now, I’m having troubles in creating buttons with manual link in posts.
Regarding the link website.url/path/manually, I’m not expecting anything, I just was saying button shortcodes seems to be buggy, since I fulfill every part of it and the link appears to be like that.
Concerning copy/paste wordpress link… you’re right, at the moment it’s not possible to link a media. But… I think community should fix this part. :)-
This reply was modified 11 years, 11 months ago by
Alessandro Marengo.
March 26, 2014 at 6:35 am #243163Hey!
Please give us a link to the actual website. We really need to see it live. Did you use any special plugins for the comment area? Another user reported the same issue with the small preview image but it has been fix on the latest update of Enfold.
Regards,
IsmaelMarch 26, 2014 at 6:19 am #243154ttem
ParticipantI was able to combine and minify most of the theme’s css although the child theme style.css and the /dynamic_avia/enfold-childtheme.css file which contains the theme styling customizations are causing some style quirks when minified and combined.
Any tips on getting those files to work with W3TC?
March 26, 2014 at 6:18 am #243153In reply to: Enfold Accordion is always open on page load
Hi lewisedavis!
Do you have other plugins installed? Maybe, you’re using the url with the toggle id? Something like this:
http://localhost/kriesi/enfold/?page_id=2880#toggle-id-1We tested this on our end and the toggle containers closed as expected when the value is set to zero. Please give us a link to the page with the issue.
Cheers!
IsmaelMarch 26, 2014 at 6:17 am #243152In reply to: Title Bar/Container – Not Showing
1) I do have the latest version of Enfold,
2) Default Enfold setting is “display only title”,
3) Edited page and under Layout I did select “display only title”,
4) In all instances I “cleared the CACHE” repeatedly and checked it out on two other browsers (nothing showing there either), and
5) I do NOT have an CSS that would interfere with or hide the title-container on the About pageStill the Title bar does not show. Any thoughts?
March 26, 2014 at 5:59 am #243143In reply to: Login | Signup | etc
Josue,
Please see this screenshot.

How can we add this to the top nav bar?
thanks,
March 26, 2014 at 5:52 am #243136In reply to: Title Bar/Container – Not Showing
Hey bmneimark!
Do you have the latest version of Enfold? You can edit the page then look for Layout > Title Bar Settings > select Display Titlebar and breadcrumbs. Make sure that you didn’t add any css to hide the title-container.
Cheers!
IsmaelMarch 26, 2014 at 4:44 am #243127Topic: Testimonial Functionality
in forum Enfoldrichardruddle
ParticipantI really like the testimonial functionality but am looking to extend it to the sidebar to display a random testimonial. As I have researched, this doesn’t seem possible. It would be great to leverage the content entered as testimonials and propagate it throughout the site. Do you know of any other way to do this within the Enfold theme framework?
March 26, 2014 at 4:06 am #243120In reply to: Easy Slider image size and Screen resolution
Hi ksakkos!
Your 1st and 2nd assumptions are correct, this is the way images work on enfold theme, they have some custom css properties, that allows them to behave correctly when you have a responsive site, basically what this does is the following, e.g. Your containers is 300 x 400, you can place an image in there 600 x 800, and it will look and behave correctly, the good thing about doing this is that you already have a retina ready image since you have the double of the container size ( 2px x a single 1px ).
One of the downsides of doing these ( placing a bigger image inside an smaller container ), is that the browser needs to recalculate the image proportions, hence will take more time to render those on your page, ( you will start experiencing some delays once you have a decent amount of images on a single page.
So if you know that you won’t have an excessive amount of images, you could place a bigger image and not having to worry about window sizes.
TL;TR Yes you can use the biggest image that you have available.
Hope this answer your questions.
Regards,
DavidMarch 26, 2014 at 3:37 am #243114Hello Björn,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueMarch 26, 2014 at 3:31 am #243112In reply to: Layer Slider problem with accentuated character "à"
Hi!
Yes, i did see the problem, unfortunately i couldn’t figure out. It appears to be an isolated case with your server, i tried reproducing the issue in another setup exactly as yours (on my host) and the Catalan characters worked as expected, please take a look:
http://bit.ly/1gzHzN4The only difference that comes to my mind would be the subdomain and the domain name. As a temporary solution you could use images as text, like we do here.
Best regards,
JosueMarch 26, 2014 at 3:25 am #243111In reply to: Fullscreen slider srcoll down bug – page 2
Hi!
No, i did see the issue. Just to make sure we are using the latest latest version of Enfold please update yours to 2.6.2.
Best regards,
Josue -
This reply was modified 11 years, 11 months ago by
-
AuthorSearch Results
Viewing 30 results - 225,211 through 225,240 (of 244,324 total)
-
Search Results
-
I was able to combine and minify most of the theme’s css although the child theme style.css and the /dynamic_avia/enfold-childtheme.css file which contains the theme styling customizations are causing some style quirks when minified and combined.
Any tips on getting those files to work with W3TC?
Topic: Testimonial Functionality
I really like the testimonial functionality but am looking to extend it to the sidebar to display a random testimonial. As I have researched, this doesn’t seem possible. It would be great to leverage the content entered as testimonials and propagate it throughout the site. Do you know of any other way to do this within the Enfold theme framework?
