The logo/favicon on my site looks terrible on IE 10, but looks fine on chrome and firefox.
Also the logo/partner element looks fine on chrome/firefox (using shop thumbnail setting 120×120), but looks completely “blown up” on IE 10.
I’m confused what’s going on here.
This reply has been marked as private.
Hi dnj14!
Currently we do not have an option for that but you can use our gallery shortcode which has thumbnail navigation.
Feel free to add a feature request, https://kriesi.at/support/enfold-feature-requests/, for future updates.
Best regards,
Elliott
Hi!
It seems like images are being generated in specified sizes – http://i.imgur.com/NbnPESF.png?1
Please go to WooCommerce > Settings > Products and change single product image sizes and regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
Yigit
Hi
The portfolio and grid elements part works like a charm.
Currently still unresolved:
1. Unable to change the title and excerpt font of Enfold Child Latest Portfolio and Enfold Child Latest News. (Is there an option to hide the thumbnail?)
2. Unable to remove header border.
Thanks!
Is there a way to enable thumbnail navigation for the easy slider media element?
Hi Günter
Thanks for the quick response.
This almost does the trick. The only issue is the third column gets knocked down to the next row with the inclusion of the margin/padding. Is there a way to reduce the size of the thumbnails? I can’t seem to decipher the titling of it and I don’t want to start hacking around.
Many thanks.
Brad
Hi!
You only have to use the gallery shortcode. It creates the thumbnails automatically. The only difference between it and your link is that our gallery shortcode changes the image when you hover over the thumbnails vs clicking like the one in your link.
Best regards,
Elliott
Hi Luis!
Try adding this on line 38 in /enfold/includes/loop-index.php.
if ( get_post_meta( $current_post['the_id'], 'post_image', true ) ) { $current_post['slider'] = '<img src = "'.get_post_meta( $current_post['the_id'], 'post_image', true ).'" />'; }
So it displays right below this line.
$current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], $size);
And then change “post_image” in both places to whatever the key is of your custom field.
Cheers!
Elliott
Hi Elliot,
So if i use a slider and then combine it with a gallery under?
The link i sent is a slider with tumbnails under it and when u push the tumbnails they show up in the slider area.
U can also see what thumbnail / image the slider is on.
Is there any slider that work this way in enfold?
Best Regards
Strom
Hi my client is advising on his 1st generation ipad that the gallieries on this site aren’t loading and greyed out anything you know that can cause this?
Example page
http://217.199.187.67/dkb-glasgow.com/?page_id=237
Hi StuWeTueHo!
Try opening up /enfold/includes/loop-index.php and find line 79.
$featured_img_desc = the_title_attribute('echo=0');
And change it to this.
$desc = get_post( get_post_thumbnail_id() ) -> post_excerpt;
$featured_img_desc = ( $desc != null ) ? $desc : the_title_attribute( 'echo=0' );
And then click on your featured image when editing your post and insert some text into the caption setting and save.
Regards,
Elliott
-
This reply was modified 11 years, 4 months ago by
Elliott.
This reply has been marked as private.
Hi Support,
Does Enfold have a slider thats shows all the images in the silder below in thumbnails?
I really hope Enfold have this typ of slider would be so awesome :-) Been seeing it on many many sites and it looks so good.
Best Regards
Strom
-
This topic was modified 11 years, 4 months ago by
apower84.
Hey!
The purpose of the Overwrite Portfolio Link setting is to link the portfolio item to another page. It doesn’t mean that it will show the actual portfolio. If you want to link the portfolio thumbnails to its single post page, please edit the portfolio grid element then look for the Link Handling settings. Choose the first option (Open the entry on a new page).
Regards,
Ismael
This reply has been marked as private.
Hiya,
On the homepage of this site, I’m using a post slider view with square thumbnails selected. For one of the images, the photo is showing up as horizontal. I went into the individual post, and resized the thumbnail, but it’s still showing up as horizontal.
thoughts?
Hey bicounet!
Try adding this to the functions.php file of your child theme.
function avia_post_nav($same_category = false, $taxonomy = 'category')
{
global $wp_version;
$settings = array();
$settings['same_category'] = $same_category;
$settings['excluded_terms'] = '';
$settings['wpversion'] = $wp_version;
//dont display if a fullscreen slider is available since they overlap
if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) ||
class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
$settings['type'] = get_post_type();
$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
$settings = apply_filters('avia_post_nav_settings', $settings);
if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
if(version_compare($settings['wpversion'], '3.8', '>=' ))
{
$entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
$entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
}
else
{
$entries['prev'] = get_previous_post($settings['same_category']);
$entries['next'] = get_next_post($settings['same_category']);
}
$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
$output = "";
foreach ($entries as $key => $entry)
{
if(empty($entry)) continue;
$the_title = isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
$link = isset($entry->av_custom_link) ? $entry->av_custom_link : get_permalink($entry->ID);
$image = isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
$tc1 = $tc2 = "";
$class = $image ? "with-image" : "without-image";
$output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
$output .= " <span class='label iconfont' ".av_icon_string($key)."></span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'>";
$tc1 = " <span class='entry-title'>{$the_title}</span>";
if($image) $tc2 = " <span class='entry-image'>{$image}</span>";
$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
$output .= " </span>";
$output .= "</a>";
}
if ( !in_category( array( 'uncategorized', 'work', 'humor' ) ) ) { return $output; }
}
And near the bottom of that code you should see this.
if ( !in_category( array( 'uncategorized', 'work', 'humor' ) ) ) { return $output; }
You can add your category slugs there.
Or if you do not want to use a child theme then you can find that line on 393 in /enfold/functions-enfold.php.
Cheers!
Elliott
-
This reply was modified 11 years, 4 months ago by
Elliott.
Hey hmuscroft!
You can find the javascript for that on lines 73 – 76 in /enfold/config-woocommerce/woocommerce-mod.js.
var productContainer = jQuery(this).parents('.product').eq(0), product = {};
product.name = productContainer.find('.inner_product_header h3').text();
product.image = productContainer.find('.thumbnail_container img');
product.price = productContainer.find('.price .amount').last().text();
You can see it’s grabbing the information based on the parent elements that are surrounding the add to cart button. You can try surrounding your button with those elements so it will pick up the title, price, etc etc. For what your trying to do it might look weird but you can hide them with CSS.
Regards,
Elliott
-
This reply was modified 11 years, 4 months ago by
Elliott.
Hallo Martin !
Ihr Link gibt mir eine 404 nicht gefunden Fehler , so kann ich nicht überprüfen , welche Version Ihr mit , aber die Titel scheinen zu verknüpfen Geldbuße in der neuesten Version von Enfold wenn Thumbnails sind ausgeblendet. Wenn Ihr nicht mit Enfold Version 3.0.2 dann gehen Sie vor und aktualisieren , um zu sehen ob es funktioniert.
Mit freundlichen Grüßen ,
Elliott
I haven’t been able to fully fix this issue, but I’ve found a workaround.
In order to force the editor to load, you have to enter the Avia code to the page url.
So if editing a page, and it won’t load the editor, I enter this at the end of the page url: &action=edit#avia-tab-2
And hit enter to make it reload the page. This will allow the blue editor button to be clicked, and will load the fancy editor.
I have to do this every single time when editing the page, is to click on tabs 2 or 3, and hit enter to make it reload, otherwise it’s just loading and loading and loading.
Similar issues exist within the other pages, like the Widget page. There I need to add “#available-widgets” to the end and reload the page. Then the widget panels will actually open.
There’s also something funky with how the media panels work, but I haven’t yet figured out how to make it consistently work. So I just open it so many times that it finally opens the “normal view”. The problem with the media tool is that it opens this “bare” HTML view, where each image would need to be opened separately, to see them, and drag&drop uploads aren’t possible.
When I try it enough times, it opens the more standard media viewer with preview thumbnails etc.
But yeah, this sucks, big time.
It takes SOOO much time just editing anything. And it feels silly to keep a text file with the different codes available for pasting in…
I removed functions.php code
remove_action( ‘woocommerce_before_single_product_summary’, ‘woocommerce_show_product_images’, 20 );
add_action( ‘woocommerce_before_single_product_summary’, ‘woocommerce_show_product_thumbnails’, 20 );
and added your code to CSS, didn’t seem to work. Product image still shown.
Hey Peter!
Try with this:
<?php
if(!function_exists('avia_theme_featured_image_meta'))
{
add_filter( 'admin_post_thumbnail_html', 'avia_theme_featured_image_meta');
function avia_theme_featured_image_meta( $content )
{
global $post, $post_type;
if($post_type == "meeting" || $post_type == "cpt1" || $post_type == "cpt2" || $post_type == "cpt3")
{
$text = __( "Don't display image on single post", 'avia_framework' );
$id = '_avia_hide_featured_image';
$value = esc_attr( get_post_meta( $post->ID, $id, true ) );
$selected = !empty($value) ? "checked='checked'" : "";
$label = '<label for="' . $id . '" class="selectit"><input '.$selected.' name="' . $id . '" type="checkbox" id="' . $id . '" value="1" > ' . $text .'</label>';
return $content .= $label;
}
return $content;
}
}
Replace cpt1, cpt2, cpt3 by the other CPT slugs.
Best regards,
Josue
Hey!
You need to regenerate the thumbnail. To do so you can use this plugin: https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Andy
hey,
the instruction in your post before are useful if i would use an image in the post, which i would have imported or inserted via “datei hinzufügen” (don´t know engl. impression here). the thumbnail (german: beitragsbild) of the post can´t be edited this way …
so unfortunately again my question: is there chance to turn off the linking of the thumbnails
hopefully again,
dreisatz
Hey!
I know that you want to remove the link of the thumbnail which redirects to a single post entry. That’s why I showed you a way how to do it. Please follow the instructions of my post before.
Cheers!
Andy
Hello Andy,
i want to remove the link from the thumbnail not an image in the post.
For example: http://westdeutscher-vertriebskongress.de/wp-wdvk/category/referenten/ -> if you click on the portrait (thumbnail) from “Bross”, you´re directed to the single post, which i don´t want. The solutions from Ismael disables the post-title linking to the single post – again well done – but the thumbnail still (german: beitragsbild) directs to the single post …
so, is there chance to prevent this?
hopefully,
dreisatz
Hey!
You’d need to use two snippets in functions.php, (child theme would be ideal):
The first one would be to enable custom fields for Portfolio items:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_custom_fields', 1);
function avf_portfolio_add_custom_fields($args) {
$args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'custom-fields');
return $args;
}
And the second one to alter the portfolio grid order (“custom_price” being the custom field):
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'meta_value';
$query['order'] = 'ASC';
$query['meta_query'] = array(array('key' => 'custom_price'));
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
Best regards,
Josue
Hola,
Ve a WooCommerce > Settings > Products y cambia esto (http://screencast.com/t/XDKh95Rq) a una configuración cuadrada.
Asegúrate de regenerar las miniaturas después de de hacer el cambio.
Saludos
Josue
Hi!
I use following code i found in support and that works fine for a single CPT “Meetings”, but how is the code for several CPT’s?:
/*
Add a checkbox to the featured image metabox
*/
if(!function_exists(‘theme_featured_image_meta’))
{
add_filter( ‘admin_post_thumbnail_html’, ‘theme_featured_image_meta’);
function theme_featured_image_meta( $content )
{
global $post_type;
if($post_type == “meeting”)
{
$text = __( “Don’t display image on single post”, ‘avia_framework’ );
$id = ‘_avia_hide_featured_image’;
$value = esc_attr( get_post_meta( $post->ID, $id, true ) );
$selected = !empty($value) ? “checked=’checked'” : “”;
$label = ‘<label for=”‘ . $id . ‘” class=”selectit”><input ‘.$selected.’ name=”‘ . $id . ‘” type=”checkbox” id=”‘ . $id . ‘” value=”1″ > ‘ . $text .'</label>’;
return $content .= $label;
}
return $content;
}
}
Even better would be a setting at Theme Options to hide featured images on all single posts, pages and cpt’s…
Thanks for your help
Peter
-
This topic was modified 11 years, 4 months ago by
pegasso4444.