Forum Replies Created

Viewing 30 posts - 54,211 through 54,240 (of 67,491 total)
  • Author
    Posts
  • in reply to: Redirects #346940

    Hey!

    Thank you for the update. Did you place your WP directory on a different folder? I tested the redirect 301 rule on my installation and it works well.

    Cheers!
    Ismael

    in reply to: Custom category image #346938

    Hey!

    Try to move the code on line 17 of functions.php, right below this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    I know you’re using a child theme but this filter is a bit buggy so it doesn’t work sometimes when you put it at the very bottom of functions.php. Let’s try it on the parent theme functions.php. Create a change log of this modification so you can add it again when you update the theme. Make sure that you set Open Sans Subset on General Styling > Font > Heading font. You can also set this for the Main Menu Links’ Font Family on Enfold > Advanced Styling Panel.

    I did caught a glimpse of one of the videos, medieval war. The 4 and half minutes of battle looks awesome. :)

    Best regards,
    Ismael

    in reply to: Subscribe link just like the one in the support forum #346935

    Hey!

    Thank you for the screenshot.

    Some of the WooCommerce shortcodes are not compatible with Enfold. Which shortcodes are you planning to use? If you’re trying to add social icons, you can use WP Socialize or Socialize plugin.

    Best regards,
    Ismael

    Hi!

    Thank you for the update.

    The og:type property is properly rendered on the page but I’m not sure why the error still exists. Please try to switch to a default theme then test the page again on the fb debugger. Let us know if it still shows the error.

    Regards,
    Ismael

    in reply to: What template (loop) is used in tags.php #346930

    Hi!

    Thank you for the update.

    You kinda lost me on this part, “I want to show in what issue nr(=categorie) the post is shown”. Can you please elaborate? The code you provided should show the first category name in the array.

    Best regards,
    Ismael

    in reply to: Translation with mo/po file not working with Child Theme #346922

    Hi!

    Thank you for the info and sorry for the delay.

    It seems like you can’t translate created events but you can use the codestyling localization plugin to translate existing plugin strings, the events calendar overview page for example. Compatibility between WPML and Events Calendar is kind of a gray area and modern tribe developers are still working on it or at least noted that this issue is one of their top priority. I found a lot of thread with the same issue, here’s a few of them:

    https://tri.be/support/forums/topic/version-3-wpml-ready/
    http://wpml.org/forums/topic/the-events-calendar-pro-and-wpml/
    http://tri.be/support/forums/topic/wpml-events-calendar-pro/

    We recommend to contact the developers of the events calendar plugin and ask them for further insights. If it doesn’t help, I’m afraid you’ll have to switch to another plugin like Events Manager which includes an extension specifically for WPML compatibility. I’ll ask Kriesi to take a look. Please wait for his response.

    Cheers!
    Ismael

    Hi!

    The version number of the theme says 3.0.1 but functions.php file comes from the old version of the theme. Layout classes should be different. That is why the sidebar is breaking. Please download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

    in reply to: wpml transparency problem #346600

    Hey!

    Yes, you need to set this again for duplicated pages. This is also true for the theme options. You need to set it for each language.

    Regards,
    Ismael

    in reply to: How to implement Google Search with Enfold? #346598

    Hey!

    I’m sorry but the login credentials are not working. Please check.

    Best regards,
    Ismael

    in reply to: Mobile menu #346596

    Hey!

    Unfortunately, this particular request or modification is more than what we can offer as a support team. This task is simply beyond the scope of support and is not a theme related issue. Please hire a freelance developer or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress. You can try to register a new menu no functions.php:

    if(!function_exists('avia_nav_menus'))
    {
    	function avia_nav_menus()
    	{
    		global $avia_config, $wp_customize;
    
    		add_theme_support('nav_menus');
    		
    		foreach($avia_config['nav_menus'] as $key => $value)
    		{
    			//wp-admin\customize.php does not support html code in the menu description - thus we need to strip it
    			$name = (!empty($value['plain']) && !empty($wp_customize)) ? $value['plain'] : $value['html'];
    			register_nav_menu($key, THEMENAME.' '.$name);
    		}
    	}
    
    	$avia_config['nav_menus'] = array(	'avia' => array('html' => __('Main Menu', 'avia_framework')),
    										'avia2' => array(
    													'html' => __('Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu <a target="_blank" href="'.admin_url('?page=avia#goto_header').'">here</a>)</small>', 'avia_framework'),
    													'plain'=> __('Secondary Menu - will be displayed if you selected a header layout that supports a submenu', 'avia_framework')),
    										'avia3' => array(
    													'html' => __('Footer Menu <br/><small>(no dropdowns)</small>', 'avia_framework'),
    													'plain'=> __('Footer Menu (no dropdowns)', 'avia_framework'))
    									);
    
    	avia_nav_menus(); //call the function immediatly to activate
    }

    Call this menu just like the avia menu on includes > helper-main-menu.php file but change the menu_class.

     echo "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
    						        $avia_theme_location = 'avia';
    						        $avia_menu_class = $avia_theme_location . '-menu';
    						        $args = array(
    						            'theme_location'	=> $avia_theme_location,
    						            'menu_id' 			=> $avia_menu_class,
    						            'menu_class'		=> 'menu av-main-nav',
    						            'container_class'	=> $avia_menu_class.' av-main-nav-wrap'.$icon_beside,
    						            'fallback_cb' 		=> 'avia_fallback_menu',
    						            'walker' 			=> new avia_responsive_mega_menu()
    						        );
    						
    						        wp_nav_menu($args);

    Use CSS media queries to show or hide menus. For further modifications, please hire a freelance developer.

    Best regards,
    Ismael

    in reply to: transitions sliders in layerslider #346585

    Hi!

    No, I’m sorry but there is no option to slow the down the animation of the transition. You can only control the duration of the slider.

    Cheers!
    Ismael

    in reply to: Masonry Gallery Pop Up #346573

    Hey lizybloom!\

    Thank you for using Enfold.

    Add this on Quick CSS or custom.css to disable the animation:

    /*pop up animation*/
    @-webkit-keyframes avia_msonry_show {
      0%   { -webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 0.1;  }
      100% { -webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
    }
    @-moz-keyframes avia_msonry_show {
      0%   { -moz-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 0.1;  }
      100% { -moz-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1;  }
    }
    @keyframes avia_msonry_show {
      0%   { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 0.1;  }
      100% { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1;  }
    }

    Cheers!
    Ismael

    in reply to: Add Custom Text to Header Area right #346569

    Hi!

    Thank you for the screenshot.

    Replace the custom css with this:

    .logo-text {
    position: absolute;
    top: -90px;
    left: 84%;
    line-height: 28px;
    }

    Cheers!
    Ismael

    Hi!

    Thank you for using Enfold,

    Please use this on Quick CSS or custom.css:

    .main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char {
    color: #c3512f !important;
    }

    Regards,
    Ismael

    in reply to: Mega Menu Bug #346562

    Hey!

    Please ask your hosting provider to do it for you. Please open another thread if you still need assistance. We’ll close this thread now. Try adding this code at the start of php.ini file:

    max_input_vars = 3000
    

    Regards,
    Ismael

    in reply to: Change Default Sidebar for New Posts #346556

    Hey!

    Thank you for the screenshot. I’m sorry but it’s not possible without modifying the theme files. If you set the Post Sidebar as default sidebar settings, it will also be the default sidebar for all pages and portfolio items.

    Regards,
    Ismael

    in reply to: How do we show portfolio thumbnails in sidebar widget? #346555

    Hey!

    No, it’s not possible. You need to create the portfolio items individually. If you want to redirect the portfolio thumbnails on a custom link, edit each portfolio item then look for Overwrite Portfolio Link setting. Set it to define custom link. Add the url of the gallery page.

    Regards,
    Ismael

    in reply to: How do we change the hover color of the toggle hover? #346553

    Hey koala!

    Thank you for using Enfold.

    Please use this on Quick CSS:

    .main_color .toggler:hover {
    background: rgba(255,255,255,.5);
    }

    Cheers!
    Ismael

    in reply to: google fonts without child theme #346550

    Hey!

    It is not the theme’s functions.php file. Please go to Appearance > Editor then look for Theme Options (functions.php).

    Cheers!
    Ismael

    Hi!


    @mantisjitsu
    : I can’t reproduce the issue on your site but it is intermittent on @reederjack’s site. Looks like you’re not using a cache plugin. Please try to install W3 Total Cache or WP Super Cache.

    Cheers!
    Ismael

    in reply to: 'order again' button / display issue on "thank you" page #346539

    Hi!

    Thank you for the info.

    Please remove the button with this:

    p.order-again {
    display: none !important;
    }

    Regards,
    Ismael

    in reply to: Sidebars on Single Product Page – Goes underneath #346533

    Hi!

    Please refer to this link on how to modify the single product page sidebar https://kriesi.at/support/topic/single-product-page-sidebar-not-showing-up/#post-331433

    For further modifications, please visit Envato Studio or Werkpress.

    Cheers!
    Ismael

    in reply to: Edit an existing gallery #346532

    Hey!

    Glad you figured it out. You can add or remove image ids on the gallery shortcode. Unfortunately, you can’t go back to the gallery panel when you added the gallery using the shortcode wand. Please use the advance layout builder next time. If the shortcodes are added on post, I’m afraid you’ll have to edit the shortcodes manually.

    Cheers!
    Ismael

    in reply to: Color Section size help!! #346529

    Hi!

    I’m sorry but if you have any additional questions at this time we kindly ask that you open them up in a separate thread The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing. If possible, please create your own thread.

    Thanks!

    Cheers!
    Ismael

    in reply to: Updating sliders not working in Layerslider #346524

    Hi!

    I’m sorry but you can’t use both layer slider at the same time. Please upgrade the layer slider version to 5.3.1. This is the current version of the default layer slider included within the theme.

    Regards,
    Ismael

    in reply to: some webshop issues #346522

    Hey!

    Did you add the code on functions.php file? Please give us a link to the product page and the link to the actual product with the inventory display issue.

    Regards,
    Ismael

    in reply to: Stationary "sticky" banner #346518

    Hi!

    You should increase the z-index of the #header container. Please use this:

    .page-id-3720 div#layer_slider_1 {
    position: fixed;
    height: 300px !important;
    display: block;
    z-index: 500;
    width: 100%;
    }
    
    #header {
    position: relative;
    z-index: 600;
    }
    
    .page-id-3720 div#home {
    padding-top: 350px;
    }

    Regards,
    Ismael

    Hi!

    I’m sorry but the widget will only work for WooCommerce pages. Please create a ticket on the WooCommerce support forum or hire a freelance developer to configure the widget.

    Regards,
    Ismael

    Hi!

    Thank you for the update. Yes, those are the errors but I didn’t see the jetpack error before. Have you tried disabling jetpack? And now, I’m seeing another kind of error.

    Failed to load resource: the server responded with a status of 503 (Service Temporarily Unavailable) http://www.northsouthfood.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3
    Failed to load resource: the server responded with a status of 503 (Service Temporarily Unavailable) http://www.northsouthfood.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3

    Please add this on functions.php to remove the version number of the entypo font files. Another user reported that this string prevents the font files from being cache by cdn:

    add_filter('avf_default_iconfont','avia_change_default_icon_font_para', 10, 1);
    function avia_change_default_icon_font_para($fonts)
    {
    $fonts['entypo-fontello']['append'] = '';
    return $fonts;
    }

    Best regards,
    Ismael

    in reply to: Search in hamburger-menu (top) on mobile only #346497

    Hey!

    Menu items should be hidden. Replace the code with this:

    @media only screen and (max-width: 767px) {
    #top #menu-item-search {
    display: block;
    position: absolute;
    right: 120px;
    margin-top: -80px;
    }
    
    .responsive #header .main_menu ul, .main_menu, #header_main_alternate {
    display: block;
    }
    
    .av-main-nav > li { display: none; }
    }

    Best regards,
    Ismael

Viewing 30 posts - 54,211 through 54,240 (of 67,491 total)