Forum Replies Created

Viewing 30 posts - 49,261 through 49,290 (of 66,145 total)
  • Author
    Posts
  • in reply to: Page Preloader Issue #417655

    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,
    Ismael

    in reply to: Layer slider layout #417654

    Hey 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,
    Ismael

    in reply to: Menu doens't work #417651

    Hi!

    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!
    Ismael

    in reply to: Fullscreen Slider other Scroll down arrow #417647

    Hi!

    You can remove the animation with this:

    #top .scroll-down-link {
      -webkit-animation: none !important;
      animation: none !important;
    }

    Best regards,
    Ismael

    in reply to: avia post navigation only in one category #417634

    Hey 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!
    Ismael

    in reply to: Questions before buying #417631

    Hey!

    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!
    Ismael

    Hi!

    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,
    Ismael

    Hey!

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: WordPress 4.1.1 and slider #417614

    Hi!

    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,
    Ismael

    in reply to: Portfolio items ????How to update #417611

    Hey!

    Can you please provide a screenshot of the issue? I checked the portfolio items and the accordion elements is showing up fine.

    Best regards,
    Ismael

    in reply to: Cant edit the WooCommerce Tab Manager #417607

    Hey!

    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,
    Ismael

    in reply to: Search results page questions #417601

    Hey!

    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,
    Ismael

    in reply to: Sidebar menu formatting broken with update #417593

    Hey!

    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,
    Ismael

    Hey!

    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!
    Ismael

    Hey!

    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,
    Ismael

    Hey!

    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,
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Easy slider image size #417574

    Hey!

    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,
    Ismael

    in reply to: TEXT BLOCK LINE BREAK #417573

    Hi!

    I checked the site and the paragraphs’ spacing looks OK. Did you figure this one out?

    Cheers!
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Decrease submenu voices height #417033

    Hey!

    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,
    Ismael

    in reply to: Insecure items using HTTPS #417032

    Hi!

    @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!
    Ismael

    in reply to: Enfold and wpml #417021

    Hey 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,
    Ismael

    in reply to: Problem with a Translated WPML Site #417019

    Hey!

    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!
    Ismael

    in reply to: layerslider in widget area #417018

    Hey!

    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,
    Ismael

    in reply to: Admin looks messed up #417016

    Hi!

    Please upload the logo again. Set the main menu as Enfold Main Menu on Appearance > Menus panel.

    Best regards,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: can't import Photography Demo #416874

    Hey!


    @ojasray
    : Looks like Josue manually imported the theme demo files: https://kriesi.at/support/topic/demo-content-error-2/

    Regards,
    Ismael

    in reply to: Buttons anstatt Links zur Portfolio-Sortierung #416872

    Hey!

    You can buy another license. Thank you. :)

    Best regards,
    Ismael

Viewing 30 posts - 49,261 through 49,290 (of 66,145 total)