Forum Replies Created

Viewing 30 posts - 52,021 through 52,050 (of 67,519 total)
  • Author
    Posts
  • in reply to: Transparent header menu items background #388973

    Hi!

    Thank you for using Enfold.


    @elames
    : Thank you for helping out! :)


    @icotom
    : Try the Advanced Styling panel or use the Quick CSS field to add your own custom css modifications. 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!

    Best regards,
    Ismael

    in reply to: anchor links #388972

    Hi!

    Alright. I was able to reproduce the issue this time. Looks like it’s happening when the portfolio grid loads. Try to add this on Quick CSS:

    .js_active .grid-image {
    opacity: 1 !important;
    }

    Cheers!
    Ismael

    in reply to: widgets link #388971

    Hi!

    Thank you for using Enfold.

    Change the sidebar links color with this on Quick CSS:

    .main_color .sidebar a {
    color: blue;
    }

    Regards,
    Ismael

    in reply to: Permalink Question & Help Needed #388970

    Hey!

    Did you set any parent page for these two pages? Do you have any seo plugin?

    Cheers!
    Ismael

    in reply to: Setting Logo Size Different for Home Page #388969

    Hey!

    This customization is a bit complicated than it sounds but we might come up with an easy workaround. First, we need to see a screenshot of how you want the other pages’ header to look like.

    Regards,
    Ismael

    in reply to: Masonry Grid not working on iPad Air #388968

    Hi!

    Alright. My bad. The problem is, we can’t reproduce the issue on our end so there’s no way we can debug the issue. We’ve checked a lot of website with masonry sections on iPad and they’re working fine. After you deactivate the plugins, did you remove the iPad’s browser cache? They tend to serve the cached version of the site so you need to remove it. I’ll ask the rest of the support team to check the page.

    Regards,
    Ismael

    in reply to: Setting min-height of main content window using jQuery #388967

    Hi!

    It works fine on my installation. Shorten the code with this:

    add_filter('wp_footer', 'avf_socket_height', 10);
    function avf_socket_height() { ?>
    <script>
    (function($){
    	$(window).resize(function(){
    		var headerh = $("#header").height(),
    		footerh = $("#footer").height(),
    		windowh = $(window).height(),
    		socketh = $("#socket").height(),
    		wpadminbarh = $("#wpadminbar").height(),
    		layersliderh = $("#layer_slider_1").height(),
    		afterlayersliderh = $("#after_layer_slider_1").height();
    		
    		if ($("#layer_slider_1").length > 0) { 
    			mainh = (windowh - footerh - headerh - socketh - wpadminbarh - 250 - 1) / 2;
    			$('#top .main_color.container_wrap.fullsize').css("height", mainh + 'px');
    			$('#layer_slider_1').css("height", 250 + 'px');
    		}
    		else {
    			mainh = windowh - footerh - headerh - socketh - wpadminbarh;
    			$('#top .main_color.container_wrap.fullsize').css("height", mainh + 'px');
    		}
    	}).resize();
    })(jQuery);
    </script>
    
    <?php
    }

    Cheers!
    Ismael

    in reply to: Left hand side menu – woocommerce product view #388966

    Hi!

    Looks like you edited the single product page before t show the sidebar on the right so you need to replace the code with this:

    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
    add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    function avia_add_image_div()
    {
    	echo "<div class='single-product-main-image alpha'>";
    }
     
    function avia_close_image_div()
    {
    	global $avia_config;
    	$avia_config['currently_viewing'] = "shop_single";
     
    	echo "</div>";
    }
     
     
    #
    # wrap single product summary in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25);
    
    add_action( 'woocommerce_after_single_product_summary',  'avia_close_summary_div', 3);
    function avia_add_summary_div()
    {
    	echo "<div class='single-product-summary'>";
    }
     
     
     
    function avia_close_summary_div()
    {
    	echo "</div>"; //close out the summary
    	get_sidebar();
    }
    
    add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);
    function avia_change_post_layout($layout, $post_id){
    	if(is_product()) {
        $layout['current']['main'] = "sidebar_left";
    	}
     
        return $layout;
    }

    Replace the code on Quick CSS with this:

    .single-product .product {
    width: 68%;
    margin-left: 4%;
    clear: none;
    float: right;
    }

    Cheers!
    Ismael

    in reply to: Floating/overlapping Logo #388965

    Hi!

    Adjust the height and max height limitation of the logo image:

    .logo img {
    max-height: 215px !important;
    height: 215px;
    }

    Cheers!
    Ismael

    in reply to: General styling slow to update #388963

    Hi!

    Looks like the css styling is stuck after every theme options toggle but we can’t reproduce the same issue on our installation. The general styling works immediately after every update. Please try to contact your hosting provider. Ask them if there is any server side cache. Also, please check if files inside the wp-content folder have the correct file permission.

    Cheers!
    Ismael

    in reply to: Custom Menus are not displaying #388960

    Hi deerstonedevelopment!

    Thank you for using Enfold.

    The Web Technology – sidebar widget area on Appearance > Menus widget is empty.

    Best regards,
    Ismael

    in reply to: Adding custom post types and taxonomies to sidebar widgets #388959

    Hey!

    You don’t need to create custom menu for each custom post type. Create a menu on Appearance > Menus then add the custom post type links there. Now, go to Appearance > Widgets, add the Custom Menu widget. Select the newly created menu with the custom post type links.

    Best regards,
    Ismael

    in reply to: Change Archive For Category to match modified breadcrumb #388958

    Hey!

    If you want the breadcrumbs to show on archive pages instead of the archive title, use this on functions.php:

    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
    	if(is_category())
    	{
    		$output = avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    	}
    
    	return $output;
    }

    Add this on Quick CSS:

    .archive .breadcrumb.breadcrumbs {
    display: none;
    }
    
    .main-title.entry-title .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: block;
    }

    To clarify, if you’re on a specific archive page (please provide a link), the breadcrumb should render how?

    Cheers!
    Ismael

    in reply to: Background image, boxed layout. #388957

    Hi!

    You can’t set the background repeat to “Stretch Fullscreen” if you’re using the preset image patterns. They are so small to be use as full width background. Try to upload custom images with large dimension.

    Best regards,
    Ismael

    in reply to: Enfold Update / Woocommerce #388954

    Hi!

    The images you provided are incorrect. They are links to page edits.

    Best regards,
    Ismael

    Hey!

    The featured image looks fine when I checked the page: http://dpassociatesuk.com/360-play.co.uk/news-events/news-events-milton-keynes/

    Best regards,
    Ismael

    in reply to: Problem with padding between sections. #388952

    Hi!

    Looks like it is working fine now even without the code suggested above. If you can reproduce the issue again on another page, let us know. We’ll check it.

    Best regards,
    Ismael

    in reply to: Enconding error or ? marks on icon titles (admin/page edit) #388951

    Hey!

    Please try to add this on functions.php to load the cyrillic subset of the open sans font:

    function avf_add_subset() {
    $sans = urldecode('<link rel="stylesheet" id="open-sans-css" href="http://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&subset=cyrillic,cyrillic-extver=4.1" type="text/css" media="all">');
    echo $sans;
    }
    
    add_action('admin_head', 'avf_add_subset');

    Anyway, the special characters render fine on the frontend.

    Best regards,
    Ismael

    in reply to: Disappearing Sidebars #388950

    Hey!

    I’m sorry but we can’t do anything on the theme options. Looks like the old css settings for the content and sidebar container is stuck. You need to follow #2 above. Access the files via FTP or your cpanel, go to wp-content > dynamic_avia folder then delete enfold.css file. Toggle the theme options then save changes to regenerate the new width settings.

    Regards,
    Ismael

    in reply to: Problem with forms #388948

    Hey!

    It’s so easy to forget to close the html tags when working on the advance layout builder. This might cause the content not to update properly or be removed when you change something. Instead of adding span tags on the contact form titles, try to add a code block element on top of the contact form element then add the code Elliott provided above. This should change all form labels/titles to white.

    <style type = "text/css">
    .avia_ajax_form h3 span, .avia_ajax_form h3 {
      color: #ffffff !important;
    }
    </style>

    If you have any elements with inline css, you should probably remove them then try to modify those elements using the code block styling or the Quick CSS field.

    Best regards,
    Ismael

    Hey!

    Glad it worked. :)

    Cheers!
    Ismael

    in reply to: strange sidebar in bottom of page #388941

    Hi!

    Where did you get a copy? I hope it’s not a free copy. Unfortunately, we won’t be able to help you unless you update the theme to the latest version. The code above should disable the theme translation and might fix the issues you’re having. You should add it at the very bottom of functions.php.

    Cheers!
    Ismael

    in reply to: Search #388940

    Hi!

    Try to improved the search by indexing the content using search plugins like the following:

    https://wordpress.org/plugins/relevanssi/
    SearchWP

    Refer to these links for better plugin/theme compatibility:

    http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/
    http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Cheers!
    Ismael

    in reply to: Responsive issues #388939

    Hey!

    I noticed you’re not using any special animation on the slider and since you set the slider height to 800px, to emulate fullscreen sliders, I guess the screen resolution of your monitor 1920x1080px. The height setting may just be too much for smaller display resolutions. My suggestion is to use the Fullscreen Slider which responsively calculates the browser height, instead of the Advance Layer Slider.

    Cheers!
    Ismael

    in reply to: WPML Customization (Part II) #388938

    Hey sancho_pancho!

    Thank you for using Enfold.

    Try to choose the second option on Header Mobile Menu activation. Go to Enfold > Header > Mobile Menu panel. Fix the language selector with this on Quick CSS:

    @media only screen and (max-width: 989px) {
    .main_menu, ul.avia_wpml_language_switch.avia_wpml_language_switch_extra {
    display: block;
    }
    
    ul.avia_wpml_language_switch.avia_wpml_language_switch_extra {
    right: 100px;
    }
    
    .avia-menu.av-main-nav-wrap {
    display: none;
    }
    }

    The code should put the language selector between the logo and the advance mobile menu.

    Regards,
    Ismael

    in reply to: Disable gallery animation? #388937

    Hi!

    Please replace the code with this:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation: none; /* Fx 5+ */
    animation: none; /* IE 10+ */
    }
    
    .av-masonry-entry {
    opacity: 1 !important;
    visibility: visible !important;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: WPML language selector in main menu #388936

    Hi!

    Try adding this on Quick CSS:

    .avia_wpml_language_switch li .language_code {
    display: none;
    }
    
    span.language_translated {
    display: block !important;
    }

    Regards,
    Ismael

    in reply to: Change background color for some of the sublevel menu? #388933

    Hi!

    Glad it worked. If you still have any questions, let us know on another thread. :)

    Regards,
    Ismael

    in reply to: Croatian translation #388932

    Hey tcar984!

    Thank you for using Enfold.

    Unfortunately, there is no available translation yet for the croatian language. No one has volunteered to do the translation. Any language files that are available can be found here: https://kriesi.at/support/topic/please-contribute-and-translate-enfold

    Best regards,
    Ismael

    in reply to: Probleme mit dem Editor #388931

    Hi friendworx!

    Thank you for using Enfold.

    If you don’t mind, we would like to check the actual website. Please post the website url here. Make sure that you’re running Enfold 3.0.8 on WordPress 4.1.

    Best regards,
    Ismael

Viewing 30 posts - 52,021 through 52,050 (of 67,519 total)