Forum Replies Created
-
AuthorPosts
-
Hey!
Thank you for the update.
The header is not sticky yet. Please enable the Sticky Header on Enfold > Header > Header Behavior. We’ll check it after.
Best regards,
IsmaelHey!
Thank you for the update.
You can add this on functions.php to move the cross sells section on top of the shipping options.
add_action('init', 'avf_cart_cross_sells'); function avf_cart_cross_sells() { global $product; remove_action( 'woocommerce_after_cart', 'woocommerce_cross_sell_display' , 10); add_action('woocommerce_after_cart_table','woocommerce_cross_sell_display', 10); }Best regards,
IsmaelHey!
Thank you for the info.
I’m sorry but I’m not sure what is the issue here. I created a test page with the Partner / Logo element: http://glaser.topimatge.com/test-partner-logo-element/
Regards,
IsmaelNovember 16, 2014 at 1:49 pm in reply to: "Special Headline" – looking for adjustment 'to the left' #351986Hey!
I’m not so sure how a 760px tall logo will look on a website. Isn’t it weird to see just the header on a whole screen? Can you please provide a screenshot on how you want the header to look like?
Best regards,
IsmaelNovember 16, 2014 at 1:47 pm in reply to: Stretch / Resize Large Featured Image on Single Post #351985Hi!
I’m sorry but what do you mean by filling the thumbnails? And what is the thumbnails on the read more? Screenshots will help. You can install this plugin to adjust the thumbnail sizes: https://wordpress.org/plugins/simple-image-sizes/
Cheers!
IsmaelNovember 16, 2014 at 1:41 pm in reply to: Header Changes color when we browser width is narrowed. #351983Hey!
Please replace the code with this:
@media only screen and (max-width: 989px) { .responsive .main_menu ul:first-child > li > a { padding: 0 7px; font-size: 16px !important; } }Best regards,
IsmaelHi!
Thank you for the update.
Set the Blog Style to Single author, small preview then add this on functions.php:
function avf_blog_style() { ?> <script> (function($){ $(window).load(function() { var blog = $(".template-blog").length; if(blog) $(".main_color.container_wrap").removeClass('fullsize'); }); })(jQuery); </script> <?php } add_filter('wp_footer', 'avf_blog_style', 10);Best regards,
IsmaelNovember 16, 2014 at 1:29 pm in reply to: Any way to add forum breadcrumbs over/under the forum? #351981Hi!
If you want to show the breadcrumbs only for forum pages, enable the Header Title and Breadcrumbs on Enfold > Header panel. Add this on Quick CSS or custom.css:
.title_container { display: none; } .bbPress .title_container { display: block; }Did you add the widgets on the Forum widget area?
Cheers!
IsmaelNovember 15, 2014 at 10:05 am in reply to: Styling Calendar Widget of Events Organizer plugin #351763Hi!
You can use this on Quick CSS:
.main_color .eo_widget_calendar tr:nth-child(even) { background: red; } .main_color .eo_widget_calendar tr:nth-child(odd) { background: blue; }Regards,
IsmaelHi MattiaParla!
Thank you for using Enfold.
You can edit config-templatebuilder > avia-shortcodes > masonry_entries.php, find this code:
$output .= "<a class='av-masonry-pagination av-masonry-load-more' href='#load-more' {$data_string}>".__('Load more','avia_framework')."</a>";Replace it with:
$output .= "<a class='av-masonry-pagination av-masonry-load-more' href='#load-more' {$data_string}>".__('CARICA DI PIU','avia_framework')."</a>";Or you can use the Codestyling Localization plugin to translate the string.
Regards,
IsmaelHey FLM!
Thank you for using Enfold.
Looks like you managed to add the phone info. Add this on Quick CSS to adjust the position:
.contact-info-top { position: absolute; right: 0; top: 40px; }Cheers!
IsmaelHi KK!
Thank you for using Enfold.
Are you referring to the Quantity column on the cart page? It is needed if customers wanted additional products. A screenshot will help.
Cheers!
IsmaelHey DCSInc!
Thank you for using Enfold.
Try this on Quick CSS or custom.css:
#top #main .sidebar { -webkit-transform: translate(0); }Regards,
IsmaelHey!
Did you remove the browser cache before testing the page again? Please hard refresh the page.
Regards,
IsmaelHi LSpicer!
Thank you for using Enfold.
The theme does not support browsers lower than IE8. Please check the Compatible Browsers list here: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi
Regards,
IsmaelNovember 15, 2014 at 9:41 am in reply to: Product Archive Page Images and Single Page Image Woo #351749Hey!
Can you please provide a link to an actual category page? Did you apply categories on your products? You can find the thumbnail size option on WooCommerce > Settings > Products > Product Image Sizes panel.
Best regards,
IsmaelNovember 15, 2014 at 9:39 am in reply to: Re-Modifying and tweaking Woocommerce page layouts #351748Hey!
Yes, you can set up the product page on Woocommerce > Settings > Products panel. Or edit a page then switch to advance layout builder. Add the Product Grid or Product List element under Plugin Additions panel. Please review the WooCommerce documentation for more info.
Cheers!
IsmaelNovember 15, 2014 at 9:33 am in reply to: switch off featured image link in Woocommerce single product page #351746Hey!
Thank you for the update.
You can add this on Quick CSS or custom.css to disable the product image link:
.single-product-main-image.alpha a { pointer-events: none; }Cheers!
IsmaelHey emin!
Thank you for using Enfold.
The website is not loading properly. Please check.
Best regards,
IsmaelHi!
Yes, it might work. Replace the code with this:
add_filter( 'wpseo_show_date_in_snippet_preview', false);Cheers!
IsmaelHi phausner!
Thank you for using Enfold.
Looks like the icon container background is set to transparent. Please try this on Quick CSS:
.avia-icon-list .iconlist_icon { background: red; }Best regards,
IsmaelNovember 15, 2014 at 9:21 am in reply to: Exclude category or tag from Masonry pull/avoid duplicate posts on frontpage #351738Hi ElizabethB!
Thank you for using Enfold.
Yes, you need to select all categories that you want to show then leave the excluded categories. Or use this on functions.php to exclude certain categories by id:
add_filter('avia_masonry_entries_query', 'avia_masonry_custom_query'); function avia_masonry_custom_query( $query ) { $exclude_cat = array('category__not_in' => '49'); $query = array_merge((array)$exclude_cat, (array)$query); return $query; }Add category ids on the category__not_in parameter. Refer to this link for more info: http://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters
Cheers!
IsmaelHi!
Replace the icon code with ue800.
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1); function avia_replace_standard_icon($icons) { $icons['standard'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue800'); return $icons; }Please refer to this link: https://kriesi.at/support/topic/custom-social-media-icon-in-menu/#post-319596
Cheers!
IsmaelNovember 15, 2014 at 8:48 am in reply to: WooCommerce installation problems with WordPress 4.0 and Enfold 3.0 #351733Hey orchidsandeons!
Thank you for using Enfold.
Can you please give us a link to the website? Make sure that you’re running Enfold 3.0.2 on WordPress 4.0. We’re not sure of the actual issue at the moment so we will have to check the site.
Regards,
IsmaelHey Keith!
Thank you for using Enfold.
Try adding on Quick CSS or custom.css:
.av-masonry-image-container img { display: block; margin: 0 auto; width: 100%; }Regards,
IsmaelHey frescova!
Thank you for using Enfold.
Can you please give us a link to the actual page with the issue? We tested this on our end and it works fine.
Regards,
IsmaelHi!
Thank you for the update.
1.) The favicon looks fine when I checked the site on IE10.
2.) Please add this on Quick CSS or custom.css:
.avia-msie-10 #top .avia-logo-element-container img { box-shadow: 0px 0px 2px rgba(0,0,0,0.3); width: auto; }Cheers!
IsmaelNovember 15, 2014 at 7:41 am in reply to: Content is not staying within Maximum Container Width in Chrome browser. #351719Hey!
I checked the site on Chrome and I can see the same thing as Yigit even if I zoomed out the browser. Please remove browser cache then reload the page.
Cheers!
IsmaelNovember 15, 2014 at 7:27 am in reply to: Trimmed bullets (or numbered list) in the short description #351715Hey jezd!
Thank you for using Enfold.
We would like to see the actual page with the issue. Please post the url here.
Regards,
Ismael -
AuthorPosts
