Forum Replies Created
-
AuthorPosts
-
March 22, 2015 at 9:00 am in reply to: Do New Layout Builder Templates for Single Product Apply to All Products #415908
Hi!
Yes, you need to edit each product. Select the name of the product template and change the content of the elements manually. A small price to pay for a custom product layout. Unfortunately, there’s no way to apply the template to all product items automatically.
Cheers!
IsmaelHey!
You can adjust the Header Mobile Menu activation settings on Enfold > Header > Mobile Menu panel to show the mobile advance menu earlier. Select the second option.
Best regards,
IsmaelHey!
Try to add this to the functions.php:
add_action('wp_footer', 'ava_option_style'); function ava_option_style(){ ?> <script> (function($){ $('#top .av_font_icon a').each( function(){ var iconlink = $(this).attr('href'); $(this).removeAttr('href'); $(this).css('cursor', 'pointer'); $(this).click(function() { window.location = iconlink; }); }); })(jQuery); </script> <?php }
Cheers!
IsmaelHi SJS!
Thank you for using Enfold.
I can’t reproduce the issue. The slider displays fine on load. Try to check to it on another browser. Install cache and minify plugins to speed up page load.
Regards,
IsmaelHey!
Browsers handle the select and option elements differently so you cannot change the style of that element, not the height, padding and margins at least. Change the background and text color with this:
#top select option { background: black; color: white; }
Cheers!
IsmaelHi!
Add the margin property:
.sort_by_cat .inner_sort_button { background: none repeat scroll 0 0 black; border-radius: 2px; color: white; display: block; padding: 5px 15px !important; margin: 0 15px; }
This is for the active state:
.active_sort .inner_sort_button { background: red; }
Regards,
IsmaelHey therqworld!
Thank you for using Enfold.
Did you use anchor links?
<a href="#section">Click</a>
It will have smooth scrolling enabled by default.
Regards,
IsmaelHey albiedo!
Thank you for using Enfold.
You can’t show all content of a portfolio item in the portfolio overview page because of the way the portfolio grid is laid out. The content will break the layout of the overview page.
Cheers!
IsmaelHey gearouthere!
Thank you for using Enfold.
Importing the new demo will override all modifications you have added to the theme so it’s not advisable. You can switch the builder to debug mode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
This is the actual shortcode of the frontpage of Enfold Shop Page demo: http://pastebin.com/n0McJaAr
Regards,
IsmaelHi!
The language files exists but they are not fully translated yet. I’m afraid you have to translate them yourself because we only rely on other users to translate the theme for obvious reasons. Use the Codestyling Localization or POEdit software to translate the theme options.
Cheers!
IsmaelHey veritywebsolutions!
Thank you for using Enfold.
The logo displays fine on mobile when I checked it. Please use chrome or firefox instead of stock browsers. Note that the site is not fully compatible with Android’s stock browsers.
Cheers!
IsmaelMarch 22, 2015 at 7:08 am in reply to: Additional in Hotspot text when using Image with Hotspot #415884Hey!
Replacing avia_apply_autop with avia_remove_autop will remove the paragraph tag but you won’t be able to use shortcodes inside the tooltip.
Best regards,
IsmaelMarch 22, 2015 at 6:57 am in reply to: After installing this latest update 3.1.1, no map is displayed #415881Hi!
Thank you for using Enfold.
@marcsalvans: There are lots of plugins installed and maybe one of theme is causing the error. Please deactivate them.
@jejito: What do you mean by it can’t be copied? Are you trying to add it inside a child theme? Please avoid modifications of core theme files, specially the framework files.Cheers!
IsmaelHey!
Try to import the xml files manually. You can find the demo files on enfold\includes\admin\demo_files folder.
Cheers!
IsmaelMarch 22, 2015 at 6:46 am in reply to: Advanced Layersliders not in the list in Advanced layer Slider – Avia layout bu #415878Hi!
Please refer to this link for a possible fix: https://kriesi.at/support/topic/how-to-see-my-full-list-of-sliders-in-advanced-layerslider-drop-down-list/#post-376352
Best regards,
IsmaelHey!
The site is not using the latest version of the theme, 3.1. There are lots of missing options and codes in some of the theme files are different. Please update the theme to version 3.1.1.
Best regards,
IsmaelHi!
Add this:
div#header_meta, div#header_main { width: 90%; margin: 0 auto; }
Best regards,
IsmaelHi!
Remove this code:
#header_main .container, .main_menu ul:first-child > li a { line-height: 136px!important; }
Replace it with:
#header_main .container, .main_menu ul#avia-menu > li a { line-height: 136px!important; } ul#avia-menu .sub-menu li a { line-height: 30px!important; }
Regards,
IsmaelMarch 22, 2015 at 5:17 am in reply to: 3.1.1 upgrade has put sidebar in woocommerce product pages #415862Hi!
Please use the css code above to remove the sidebar. I can see the “Add to basket” button inside the product page. Is that what you’re referring to?
Regards,
IsmaelHi xianeK!
Thank you for using Enfold.
I cannot see any tabs in the page. Where is the actual product page? Note that you can use the advance layout builder for products. Add the tab element.
Cheers!
IsmaelHi!
It is already set to black background. Did you figure it out? You can use RGBA color:
#top .aviaccordion-excerpt { background-color: rgba(0,0,0,1); }
Best regards,
IsmaelHi peiiep!
Thank you for using Enfold.
Add this to the Quick CSS field to remove the alternate row color:
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra { background: #ffffff; }
Best regards,
IsmaelHey!
Adjust the capitalization of the heading with this:
h1,h2,h3,h4,h5,h6 { text-transform: capitalize !important; }
It’s possible to activate the breadcrumb when glassy header is enabled but it will break the layout of the site. Edit functions-enfold.php, look for this code on line 704:
//deactivate title bar if header is transparent if(empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
Replace it with:
//deactivate title bar if header is transparent if(!empty($transparency)) $header['header_title_bar'] = '';
Best regards,
IsmaelHey tocal!
Thank you for using Enfold.
Use css child selectors. Refer to this link for more info: http://www.w3schools.com/cssref/sel_nth-child.asp
#footer .flex_column:nth-child(0) { /* FIRST COLUMN */ } #footer .flex_column:nth-child(1) { /* SECOND COLUMN */ } #footer .flex_column:nth-child(2) { /* THIRD COLUMN */ }
Cheers!
IsmaelHi!
You can add this to the Quick CSS field:
a.all_sort_button.active_sort, a.all_sort_button.active_sort + span { display: none; }
Add this to the functions.php to activate the first category:
add_action('wp_footer', 'ava_auto_click'); function ava_auto_click(){ ?> <script> (function($){ $(window).load(function() { $('.categoryname_sort_button').trigger('click'); }); })(jQuery); </script> <?php }
Change the “categoryname” to the name of the first category on your installation.
Best regards,
IsmaelHey!
Thank you for using Enfold.
Set the menu item style to “Button Style” then add this to the Quick CSS field to change the button color:
#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text { background: orange; border-color: black; }
Best regards,
IsmaelHi mikegrace78!
Thank you for using Enfold.
That is the default style of child menu items. You can change it with this:
.main_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .sidebar .widget_nav_menu ul:first-child>.current-menu-ancestor { background: transparent; box-shadow: none; } #top .widget_nav_menu ul ul li.current-menu-item a { width: 100%; border-top: 1px solid rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2); background: #fcfcfc; position: relative; left: -65px; padding-left: 80px; width: 100%; }
Cheers!
IsmaelHi!
The hover state isn’t going to work on mobile view that’s why they are displayed by default. Add this to the Quick CSS field to hide it permanently on mobile:
@media only screen and (max-width: 767px) { .av-fixed-size .av-masonry-entry .av-inner-masonry-content, .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content { display: none !important; }}
Cheers!
IsmaelMarch 21, 2015 at 9:21 am in reply to: Images in textbox do not show, until the user scrolls #415686 -
AuthorPosts