Forum Replies Created
-
AuthorPosts
-
Hi!
Thank you for the info. I can’t reproduce the issue on every major browsers on Windows 7 and 8. Do you have any browser extensions? Try to remove browser cache then reload the page.
Best regards,
IsmaelHey Lev!
Thank you for using Enfold.
You have to disable the default layer slider plugin. Refer to this link: http://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/
Install the layer slider plugin that you bought then you can use the shortcode inside a code or text block. Place it inside a 1/1 column.
Regards,
IsmaelHi!
What is the name of your home page? You set the Frontpage Settings and Blog to the same page, “Startseite2”. Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.
If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!
Cheers!
IsmaelHi!
You can remove the animation with this:
#top .scroll-down-link { -webkit-animation: none !important; animation: none !important; }
Best regards,
IsmaelHey Guenter!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins so you have to contact the plugin author. Anyway, if you want the filter to work only for default posts, use this:
add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' ); function enfold_customization_same_cat( $s ) { if(is_singular('post')) $s['same_category'] = true; return $s; }
Cheers!
IsmaelHey!
Thank you for considering Enfold.
1.) It is possible with the masonry element but you have to create a post for each image because masonry gallery doesn’t have the infinite scroll or the load more button.
2.) The column sizes will decrease on smaller screens, for example, if you set the masonry gallery to show as 3 columns, it will display from 3 to 2, to 1. Maximum column size is 6 but you can modify it with the help of custom css modifications.
3.) Please check the demo then hover over the menu items. You’ll see the mega menu in action.
4.) Enfold is our best theme yet.
5.) What do you mean by “one menu icon”?
6.) That is possible but you have to customize the mega menu. You can visit Envato Studio or Werkpress for this kind of modifications.
Please check our demos: http://kriesi.at/themedemo/?theme=enfold-overview
Cheers!
IsmaelMarch 25, 2015 at 9:42 am in reply to: How To Add Social Share Buttons To Bottom Of Menu Sidebar #417626Hi!
Add this to the Quick CSS field:
.av_header_sidebar .av-social-sharing-box { position: absolute; bottom: 0; } .html_header_sidebar #top #header_main { border-top: none; height: 100% !important; position: absolute; overflow: hidden; } .html_header_sidebar #header .container { width: 100%; height: 100%; }
Best regards,
IsmaelMarch 25, 2015 at 9:25 am in reply to: Change the "Portfolio Items" name in admin to something else #417619Hey!
Remove the mod then add this to the functions.php file:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod'); function avf_portfolio_cpt_args_mod($args) { $args['labels']['name'] = 'Artist Work'; return $args; }
Regards,
IsmaelMarch 25, 2015 at 9:21 am in reply to: How to add something below the sharing button in every psot #417616Hey DROR!
Thank you for using Enfold.
You can edit includes > loop-index.php or use the ava_after_content hook.If you’re not sure how to use wp hooks, please refer to this link: http://wpcandy.com/teaches/how-to-use-wordpress-hooks/
Best regards,
IsmaelHi!
Maybe it’s a cache issue, browser or server cache. If it happens again, try to logout of the dashboard then login again. Or login by using another browser.
Regards,
IsmaelHey!
Can you please provide a screenshot of the issue? I checked the portfolio items and the accordion elements is showing up fine.
Best regards,
IsmaelHey!
Sorry for the delay. We don’t have the plugin at our disposal so we need to access the site. Please post the login details here. Set it as a private reply. If possible, please contact the plugin author for more info regarding the issue.
Regards,
IsmaelHey!
Please replace the code on functions.php with this:
add_filter( 'avf_custom_sidebar', 'enfold_customization_search_sidebar' ); function enfold_customization_search_sidebar( $custom_sidebar ) { if ( is_search() ) { $custom_sidebar = 'Search'; } return $custom_sidebar; }
If you haven’t created a custom sidebar, go to Appearance > Widgets, create a custom widget area called “Search”.
Best regards,
IsmaelHey!
This one should work:
.sidebar .widget_nav_menu ul:first-child>.current-menu-item, .sidebar .widget_nav_menu ul:first-child>.current_page_item, .sidebar .widget_nav_menu ul:first-child>.current-menu-ancestor { background: transparent; box-shadow: none; border: 0; } .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item { background: transparent; box-shadow: none; border: 0; } .cmw-has-submenu.current-menu-parent > a { border-top: 1px solid rgba(0, 0, 0, 0.2) !important; border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; background: #fcfcfc; position: relative; left: -65px; width: 100%; display: block; padding-left: 65px !important; } #top .widget_nav_menu ul ul li.current-menu-item a { font-weight: bold; }
Regards,
IsmaelMarch 25, 2015 at 8:13 am in reply to: Enfold 3.1.1 – display issues in share section for ALB posts + search icon #417591Hey!
Replace the code on functions.php with this:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_singular('post')){ $content .= '<div id="custom_share_box" class="avia-section main_color container_wrap"><div class="container">'; $content .= avia_social_share_links(array(), '', '', false); $content .= '</div>'; } return $content; }
Cheers!
IsmaelMarch 25, 2015 at 8:02 am in reply to: URGENT – Update modified website full layout and can't figure out what caused it #417583Hey!
I’m really not sure why it breaks with the icon list but I created a test page again with the icon list element and it’s not breaking, not yet at least. The issue seems to be intermittent. Let us know if the issue comes back again: http://sciscomediation.com/test-3
Best regards,
IsmaelMarch 25, 2015 at 7:49 am in reply to: How Sidebar Navigation and Breadcrumbs could show Menu item instead of Title? #417579Hey!
Hmm.. Ok.. If this doesn’t work, I’ll ask the rest of the support team to provide another solution:
add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 20, 1); function avia_change_breadcrumb($trail) { $menu_name = 'avia'; $id = get_the_ID(); if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $menu_name ] ) ) { $menu = wp_get_nav_menu_object( $locations[ $menu_name ] ); $menu_items = wp_get_nav_menu_items($menu->term_id); foreach ( (array) $menu_items as $key => $menu_item ) { if($menu_item->object_id == $id) { $title = $menu_item->title; $url = $menu_item->url; } } } if(is_page()) { $home = $trail[0]; $last = $title; if(isset($trail[1])) { $page = $trail[1]; $trail = array(0 => $home, 1 => $page, 'trail_end' => $last); } else { $trail = array(0 => $home, 'trail_end' => $last); } } return $trail; }
Regards,
IsmaelMarch 25, 2015 at 7:34 am in reply to: Hyperlink location for links in .main-menu class need to be adjusted #417576Hey!
I checked the site but I didn’t see the code above. The .three-images style is still the same:
.three-images { clear: none; display: inline; position: absolute; z-index: 101; line-height: 30px; height: 100%; margin: 0; right: 0; }
Please apply the code that we suggested. Remove browser cache then check the page again.
Best regards,
IsmaelHey!
The Slideshow Image Size option enables you to select the size of the image that is going to be use in the slider but it will not resize the slider. Use css media queries if you want the slider to have a specific width on certain screen sizes:
@media only screen and (min-width: 768px) and (max-width: 989px) { .avia-slideshow, .avia-slideshow-inner { width: 600px !important; margin: 0 auto; }}
Regards,
IsmaelHi!
I checked the site and the paragraphs’ spacing looks OK. Did you figure this one out?
Cheers!
IsmaelMarch 25, 2015 at 7:20 am in reply to: change tab style – font color – body color – border color II #417570Hi!
There’s a double space between tabref and tab. It should be:
.tabref .tab { padding: 12px 0 14px 0 !important; width: 25.1%; font-size: 14px; text-align: center; min-height: 50px; }
Best regards,
IsmaelHey!
From what I remember, you change the icon with css modifications. Did you create your own trip advisor icon? This is the css code:
#top .social_bookmarks_vimeo { background: url(https://www.lecarabattole.com/wp-content/mieimmagini/tripadvisor.png) no-repeat center !important; } #top .social_bookmarks_vimeo:hover a { background: url(https://www.lecarabattole.com/wp-content/mieimmagini/tripadvisor-hover.png) no-repeat center !important; }
Regards,
IsmaelHi!
@Erik: Yes, that plugin will surely help. We always suggests the plugin for users with ssl issues. Thanks for sharing.
@vegaspro: Please install the plugin suggested above.Cheers!
IsmaelHey modelity!
Thank you for using Enfold.
Add this to the functions.php to disable the default flag switcher:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }
Go to the WPML > Languages panel. Enable the Display the language switcher in the WP Menu. Select your main or secondary menu then set the Language switcher style to Drop-down menu.
Regards,
IsmaelHey!
I set the layout of the english version to boxed and it works fine. Please try to remove browser cache then reload the page: http://www.openair-frauenfeld.ch/en/
Cheers!
IsmaelHey!
The layer slider shortcode is disabled by default. You have to purchase a plugin license in order to use the shortcodes again. For now, you need to add the slider using the advance layout builder.
Regards,
IsmaelHi!
Please upload the logo again. Set the main menu as Enfold Main Menu on Appearance > Menus panel.
Best regards,
IsmaelMarch 24, 2015 at 3:34 am in reply to: Updating site using FTP does not keep settings including color scheme #416877Hi!
Which folder causes the error? The update should take less than 10 minutes if everything goes smoothly. Did you ask your host why the ftp keeps timing out?
Best regards,
IsmaelHey!
@ojasray: Looks like Josue manually imported the theme demo files: https://kriesi.at/support/topic/demo-content-error-2/Regards,
Ismael -
AuthorPosts