Forum Replies Created
-
AuthorPosts
-
Hallo,
1) Um ein Portfolio anzulegen bitte zuerst mehrere Portfolio Entries hinzufügen. Bei den “Ajax Portfolio Preview Settings” müsst ihr auf den “Add Preview Images” Button klicken um die Bildergalerie zu erstellen. Dann rechts daneben “Gallery” oder “Image List” auswählen. Das Beitragsbild wird als erstes Vorschaubild verwendet – dh der User muss zuerst dieses Bild anklicken, damit Enfold die Galerie mit ajax nachlädt und anzeigt. Für jede Galerie muss ein eigener “Portfolio Entry” angelegt werden und die “Ajax Portfolio Preview Settings” entsprechend gesetzt sein. Nicht vergessen, dass ale Portfiolio Entries zumindest einer Kategorie zugeordnet sein müssen.
2) Dann zur Seite gehen, wo die Ajax Galerie angezeigt werden soll. Dort zum Layoput Builder wechseln und das “Portfolio” Element auswählen. Dann die entsprechende Kategorie in den Portfolio Optionen auswählen und bei “Link Handling” das Ajax Portfolio auswählen. Das Endergebnis kann dann so aussehen: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/ – es kommt natürlich auf die Bilder & die Darstellungsoptionen an (image List, Slideshow, etc.).
August 23, 2013 at 7:25 am in reply to: LayerSlider in WP 3.6 + ENFOLD 2.0 + Firefox 23: cannot delete slides #136373Hey!
I can’t reproduce this issue too but for now try to use another browser. I’m sure that the layerslider plugin authors will fix the issue if more users report it.
Best regards,
Peter
Hi,
1) Remove the code “flush_rewrite_rules( false );” from functions.php.
2) Go to Settings > Permalinks and hit the blue “Save” button to flush the permalinks.
3) If this still doesn’t help try to deactivate all other third party plugins – maybe a plugin breaks the permalink/rewrite rules. Afterwards go to Settings > Permalinks and hit the blue “Save” button to flush the permalinks.
Hi!
Please try to save the theme options again because Enfold regenerates a dynamic stylesheet .(wp-content/uploads/dynamic_avia/enfold.css) during the saving process and maybe the “new” css file will fix the issue.
Best regards,
Peter
Right now we do not have any plans to add this feature to the theme. You can suggest it in the feature request thread though and if many other users ask for it too we may add it in a future update. But tbh I think only a handful of users would use this option and we must concentrate on more popular requests….
I noticed that my code won’t work with your plugin. I mixed the “Event Manager” up with “Tribes Event Calendar”. Try following code instead:
$avia_config['g_maps_widget_active'] = 1;
$avia_map_prefix = isset($_SERVER['HTTPS'] ) ? "https" : "http";
wp_register_script( 'avia-google-maps-api', $avia_map_prefix.'://maps.google.com/maps/api/js?sensor=false', array('jquery'), '1', false);
wp_enqueue_script( 'avia-google-maps-api' );If you’re using the google maps widget (sidebar or footer widget areas) Enfold & the plugin will load the google maps api script multiple times and this can break the maps api. In this case insert following code at the bottom of functions.php:
//php code fixes
add_filter('tribe_get_embedded_map','avia_deactivate_google_api',10,1);
function avia_deactivate_google_api($google_map){
global $avia_config;
if(!empty($google_map)) $avia_config['g_maps_widget_active'] = 1;
return $google_map;
}and Enfold won’t load the google maps api script anymore.
If you’re not using the widget probably something else triggers the js error. In this case I’d suggest to deactivate all other third party plugins to find potential plugin conflicts and if this doesn’t help try to switch to the default theme (TwentyTwelve or Thirteen). If the issue still persists please contact the plugin author and ask him to fix the bug.
Hi,
I’m sorry but the theme contact forms are not compatible with Gravity Forms and you can’t import Enfold contact forms with Gravity Forms or export Gravity Forms to use them as theme contact forms. Also the Gravity Forms extensions (Mail Chimp extension) are not compatible with the theme contact form and you must create Gravity Forms to use the extension. You can embed the Gravity Forms with a shortcode into the text content.Hey!
Try to generate a font face kit here: http://www.fontsquirrel.com/tools/webfont-generator – the generator will generate the right css code and font files for you.
Best regards,
Peter
Try following – open up functions-enfold.php and at the very end of the file insert
if(!function_exists('avia_wpml_language_switch_return'))
{
function avia_wpml_language_switch_return()
{
$languages = icl_get_languages('skip_missing=0&orderby=custom');
$output = "";
if(is_array($languages))
{
$output .= "<ul class='avia_wpml_language_switch'>";
foreach($languages as $lang)
{
$currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
$output .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
$output .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>";
$output .= " <span class='language_native'>".$lang['native_name']."</span>";
$output .= " <span class='language_translated'>".$lang['translated_name']."</span>";
$output .= " <span class='language_code'>".$lang['language_code']."</span>";
$output .= "</a></li>";
}
$output .= "</ul>";
}
return $output;
}
}Then replace
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
with
if($breadcrumb) $additions .= avia_wpml_language_switch_return();
August 11, 2013 at 8:53 am in reply to: How to remove the Sort dropdowns in WooCommerce 2.0.13? #134393Hey!
Open wp-contentthemesenfoldconfig-woocommerceconfig.php and delete/comment out following line
woocommerce_catalog_ordering();
Regards,
Peter
August 11, 2013 at 8:50 am in reply to: Twitter RSS widget: Twitter follower count doesn't update #134363Yes, Twitter started to shutdown the current api on June 11 ( http://www.mediabistro.com/alltwitter/twitter-delays-api-shutdown_b41602 ) and our widget does not support the new api. Thus the widget won’t work anymore. Because the new authentication process is very complex we decided that we won’t bundle a twitter widget with the theme anymore and we removed it in v1.9.1. The next Enfold version (1.9.2) will support the Twitter Widget Pro: http://wordpress.org/plugins/twitter-widget-pro/ plugin instead.
Hi!
Try following – open up wp-contentthemesenfoldforum.php and replace
global $avia_config;
with
global $avia_config;
$avia_config['layout']['current'] = $avia_config['layout']['fullsize'];
$avia_config['layout']['current']['main'] = 'fullsize';Regards,
Peter
Hey!
Which version of Enfold are you using? Please upgrade to v1.9.1 which is compatible with wp3.6 and it should also fix the jquery error message.
Regards,
Peter
August 11, 2013 at 8:41 am in reply to: Error After Theme Update: team.php ShortcodeHelper::avia_apply_autop() #134458Hi!
please try to re-upload the wp-contentthemesenfoldconfig-templatebuilderavia-template-builder folder (via ftp) and make sure that all files on the server are overwritten by the new files (Enfold 1.9.1 files).
Best regards,
Peter
1) Try to update Enfold to the latest version (1.9.1).
2) If this doesn’t help try to deactivate all third party plugins. Maybe a plugin conflicts with the theme/slider. If the slider works afterwards activate the plugins one by one to find the culprit.
In functions-enfold.php replace
if(!empty($post->post_excerpt))
{
$excerpt = apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ") );
}
else
{
$excerpt = apply_filters( 'avf_ajax_search_time_format', get_the_time(get_option('date_format'), $post->ID) );
}with
if(!empty($post->post_excerpt))
{
$excerpt = apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ") );
}
else
{
$excerpt = apply_filters( 'avf_ajax_search_time_format', get_the_time(get_option('date_format'), $post->ID) );
}
$taxonomies = get_object_taxonomies(get_post_type($post->ID));
$cats = '';
$excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'));
if(!empty($taxonomies))
{
foreach($taxonomies as $taxonomy)
{
if(!in_array($taxonomy, $excluded_taxonomies))
{
$terms = get_the_terms( $post->ID, $taxonomy );
if(!empty($terms))
{
foreach($terms as $term)
{
$cats .= $term->name .' ';
}
}
}
}
}and
$output .= $excerpt;
$output .= " </span>";
$output .= "</span>";with
$output .= $excerpt;
$output .= " </span>";
$output .= "</span>";
$output .= __('Categories:','avia_framework') . ' ' .$cats;This will add a list of all categories to the search result. However it’s not possible to apply add links to the categories which point to the category archive pages because the search results are wrapped into an a href tag and you can’t create a link inside a link. On the other hand the layout will be messed up if you add the categories after the a href element.
Hi,
1) No, such a menu layout is not supported by Enfold. The Mega Menu allows you to build columns (like the submenu of “Pages” here: http://kriesi.at/themes/enfold/ ) but it’s actually just a dropdown which fades in and it’s not easily possible to convert it to a “column menu” like here http://www.hillsong.co.uk
2) You could try to build a layout with 2/3 and 1/3 column elements. Then add an Easy Slider into the left column (2/3) and an easy slider into the right columns (1/3). Probably you won’t get exactly the same look but it will be similar.
Hi!
Use following css code and change the width value
#top #header .logo img {
width: 500px;
}Best regards,
Peter
The gallery itself does not support social share buttons but you can try to add the social share links to the lightbox (prettyphoto). Open up enfold/js/avia.js and replace
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
with
elements.prettyPhoto({ slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
The share buttons will look like: Demo
@spmccain – it depends on the plugins. Maybe they eat up too much memory. However another reason could be that one of the plugins triggers a js/php conflict somehow. Try to activate the plugins one by one and if always the same plugin breaks the editor it’s probably a plugin conflict and not a memory limit issue.
Hey!
Thanks for the notice. I asked Kriesi to change it in the next version.
Regards,
Peter
Yes, the reason is that Enfold will always add the sidebar to the last element after a fullwidth element. In your case the layout is built with a “sidebar element”, a “fullwidth color section” element and Enfold adds the sidebar to the content element after the color section. If you want to avoid this layout you’ve two options.
1) Use the product element after the color section.
2) Use a fullwidth layout without sidebar and use the column elements (eg 3/4 1/4) to display the products element side by side with some “widget area” elements. The layout would look like:
header…
1/4 (widet areas) / 3/4 product grid
color section
footer…
Hey!
I hope it worked out?
Regards,
Peter
Hi!
Please try to insert following code into the quick css field
.logo img {
width: 300px;
height: 54px;
}Best regards,
Peter
August 10, 2013 at 8:31 am in reply to: Bug: Custom Sidebar not showing up when other Loop is on Page #131676This issue will be fixed in the next version. For now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace
$output = str_replace('{{thumbnail}}', $thumb_fallback, $output);
with
$output = str_replace('{{thumbnail}}', $thumb_fallback, $output);
wp_reset_query();Enfold does not allow you to add custom icons to the font file which is bundled with the theme at the moment but we’re working on a “font icon” generator which will help the user to build a customized font file (which just contains the icons you need). mp3power suggestion seems to be a great workaround for now.
August 10, 2013 at 7:29 am in reply to: Main Menu Custom Links for One Page Sites – Section IDs and Anchor Scrolling #132806Right now it’s not possible to mark a “section” link as active menu item if the user scrolls to the section. If you want to avoid that all section links are marked as “active” just use the section id as url. I.e. instead of “http://mywebsite.com/#contact” just use “#contact”. I’ll look into it though – maybe we can add this feature in a future update…
Hi!
Can you post a link to your google map please? I’d like to investigate the iframe and css code.
Regards,
Peter
Hey!
Yes, mea culpa – small typo – I corrected the code :)
Regards,
Peter
-
AuthorPosts