Forum Replies Created

Viewing 30 posts - 47,911 through 47,940 (of 67,570 total)
  • Author
    Posts
  • in reply to: avia_animate_when_visible funktioniert nicht #478578

    Hi frankeee!

    Thank you for using Enfold.

    Which browser are you using when you test this? I tested it on Chrome and Firefox, Windows 7 and the icon shows up every time I refresh the page.

    Regards,
    Ismael

    in reply to: Issue with layout testimonials on tablet #478575

    Hey!

    You can add this in the Quick CSS field:

    @media only screen and (max-width: 770px) {
    .avia-testimonial-image {
      margin: 0;
      width: 100%;
      float: none;
      text-align: center;
      margin-bottom: 15px;
      height: auto;
      max-width: 80%;
    }
    
    .avia-testimonial-meta {
      margin-left: 0;
    }
    }

    Regards,
    Ismael

    in reply to: Image Upload Error #478572

    Hey!

    I think it’s working now. Did you fix it? I was able to upload an image. http://www.nutritional-insight.co.uk/wp-admin/post.php?post=477&action=edit

    Cheers!
    Ismael

    in reply to: Toogle / wp google maps conflict #478571

    Hey!

    There are no errors generated so it’s a bit difficult to debug the issue. What happens when you use the default google maps element in the advance layout builder?

    Cheers!
    Ismael

    in reply to: Shopping Cart Icon at secondary menu #478568

    Hi!

    You can replace the code with this:

    .cart_dropdown {
      right: -50px;
    }
    
    .html_visible_cart .cart_dropdown {
      right: 200px;
      top: 2px;
    }
    
    #header_main {z-index: 10;}

    Adjust the values if necessary.

    Best regards,
    Ismael

    Hi Switzer!

    Thank you for using Enfold.

    You can try this in the functions.php file:

    add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10);
    
    function avia_append_search_nav_mod()
    {
        ob_start();
        get_search_form();
        $form =  htmlspecialchars(ob_get_clean()) ;
    	
        $items = '<div id="menu-item-search-mod" class="menu-item-search-mod menu-item menu-item-search-dropdown">
            <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
               </div>';
    
        echo $items;
    }

    Add this in the Quick CSS field:

    #menu-item-search-mod {
      display: block;
      position: absolute;
      right: 30%;
      top: 30%;
      z-index: 1000;
    }
    
    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    	#menu-item-search-mod { display: none; }
    }

    Regards,
    Ismael

    Hi Haybazak!

    Thank you for using Enfold.

    I’m sorry but the inquiry is a bit unclear. What do you want to change with the category banner?

    Cheers!
    Ismael

    in reply to: Masonry Gallery Captions on Mobile #478554

    Hi!

    This is the media query line:

    @media only screen and (max-device-width: 1024px) {
    
    }

    Please replace the code with this:

    @media only screen and (max-width: 1024px) {
    .main_color .av-inner-masonry-content {
      font-size: 12px;
      padding: 6px;
    }
    
    figcaption.av-inner-masonry-content.site-background {
    display: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Issues with front page slider #478551

    Hi!

    Thank you for the info. Did you install the WP Rocket plugin? This plugin is incompatible with layer slider so you might have to disable it.

    Regards,
    Ismael

    Hi!

    1.) Add this in the Quick CSS field:

    .custom-form {
      background-color: #fff;
    }

    2.) Use this to increase the width:

    #top #searchform>div {
      position: relative;
      max-width: 800px;
      width: 500px;
    }

    Regards,
    Ismael

    in reply to: addthis Excerpt position problem #478546

    Hi!

    If I am not mistaken, you can use shortcodes or generate html code in order to add the buttons. Try to edit the includes > loop-index.php file then look for this code on line 200:

    echo $content;
    

    Add the addThis code or shortcode below.

    Best regards,
    Ismael

    in reply to: Using Google Adsense w/ Enfold Avia Page Builder #478543

    Hi!

    You can turn no the custom css class field then add a custom class attribute to the blog post element. Remove the bottom margin.

    .avia-content-slider {
      margin: 0;
    }

    You can replace the selector above with the custom css class attribute that you defined.

    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Cheers!
    Ismael

    in reply to: Events Countdown Widget Bug #478539

    Hey!

    You can only find the avia_sc_events_countdown class in that specific file, nowhere else. The code means that if the “avia_sc_events_countdown” class exists or defined somewhere else, don’t define it but since it is not defined somewhere else other than this specific file, continue or define it. Like I said, the same exact code of line is working on my installation as you can see on the screenshot. I test it again on the new temp page but it’s not working. Please hire a freelance developer to help us and see what’s going on with it.

    Cheers!
    Ismael

    in reply to: You may also like… OR Related products #477520

    Hey!

    Thank you for using Enfold.

    They will both display by default. If you want to only display the upsells section if it’s available, use this in the functions.php file:

    #
    # display upsells and related products within dedicated div with different column and number of products
    #
    remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 10);
    add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products_mod', 20);
    
    function avia_woocommerce_output_related_products_mod($items = false, $columns = false)
    {
    	global $avia_config;
    	$output = "";
    	
    	if(!$items) 	$items 	 = $avia_config['shop_single_column_items'];
    	if(!$columns) 	$columns = $avia_config['shop_single_column'];
    
    	ob_start();
    	woocommerce_related_products(array('posts_per_page'=>$items, 'columns'=>$columns)); // X products, X columns
    	$content = ob_get_clean();
    	if($content && $avia_config['upsells'] == '')
    	{
    		$output .= "<div class='product_column product_column_".$columns."'>";
    		//$output .= "<h3>".(__('Related Products', 'avia_framework'))."</h3>";
    		$output .= $content;
    		$output .= "</div>";
    	}
    
    	$avia_config['woo_related'] = $output;
    	return $output;
    
    }
    
    remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_upsells', 10); 
    add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_upsells_mod', 21);
    
    function avia_woocommerce_output_upsells_mod($items = false, $columns = false)
    {
    	global $avia_config;
    
    	$output = "";
    	
    	if(!$items) 	$items 	 = $avia_config['shop_single_column_items'];
    	if(!$columns) 	$columns = $avia_config['shop_single_column'];
    	
    	ob_start();
    	woocommerce_upsell_display($items,$columns); // 4 products, 4 columns
    	$content = ob_get_clean();
    	if($content && $avia_config['woo_related'] == '')
    	{
    		$output .= "<div class='product_column product_column_".$columns."'>";
    		//$output .= "<h3>".(__('You may also like', 'avia_framework'))."</h3>";
    		$output .= $content;
    		$output .= "</div>";
    	}
    
    	$avia_config['woo_upsells'] = $output;
    	return $output;
    
    }

    Best regards,
    Ismael

    in reply to: SumoMe Share Buttons not appearing on some posts #477516

    Hi!

    Please ask the plugin author how they hook their plugin to render the plugin’s tools on posts. They don’t necessarily need to classify if it’s a post or a page. Plugins usually use javascripts, action and filter hooks in order to append codes or scripts on different parts of the page.

    http://codex.wordpress.org/Plugin_API/Filter_Reference
    http://codex.wordpress.org/Plugin_API/Action_Reference

    Regards,
    Ismael

    in reply to: Remove Share Links from selected posts #477511

    Hey!

    You can use this in the Quick CSS field:

    .comment-count {
      display: none;
    }

    Cheers!
    Ismael

    in reply to: undefined function get_header() #477510

    Hey!

    I think you didn’t install WordPress correctly. The best thing to do is to contact your hosting provider to help you setup your WordPress installation. We can then install the theme after.

    Cheers!
    Ismael

    in reply to: Adding Widget area to Top Header Social Media area #477509

    Hi sublime5o!

    Thank you for using Enfold.

    You can follow the instructions here: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    Regards,
    Ismael

    in reply to: Reduce white space under logo and menu #477508

    Hi!

    Yes, I know that. The problem is, if you didn’t set the blog style to use the advance layout builder then you will not be able to use the advance layout builder to modify the blog page. If the blog style is set to multi grid or single author, the page will use the default blog template.

    Regards,
    Ismael

    in reply to: WPML Language Switcher #477506

    Hey george!

    Thank you for using Enfold.

    You can convert the flags to text symbols using css. Please refer to this link: https://kriesi.at/support/topic/wpml-text-lang-switcher/#post-451922

    Best regards,
    Ismael

    in reply to: WPML plugin stop working / Enfold theme conflict #477502

    Hi!

    Glad it is fixed. The error regarding the sidebar is brought by the WP 4.2 update which requires the register_sidebar function to set an id to sidebars or widget areas. If possible, please don’t use cyrillic characters when creating custom widget areas.

    Best regards,
    Ismael

    in reply to: Altering the Display of Categories in Post Meta Info #477501

    Hi!

    You can find the code in includes > loop-index.php file. Unfortunately, the get_the_term_list function doesn’t have any arguments or options to exclude child categories. You need to rewrite the code. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Masonry Gallery Lightbox Figcaption Titles missing #477499

    Hi!

    One of these plugins is causing the issue. If deactivated, the title shows fine:

    Img Title Removal
    No Title Tooltips

    Please contact the plugin author.

    Best regards,
    Ismael

    in reply to: Easy slider animations #477495

    Hi noamman!

    Thank you for using Enfold.

    Add this in the Quick CSS field:

    .avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title, .avia_transform .av_slideshow_full .avia-caption-content, .avia_transform .av_slideshow_full .avia-caption-title, .avia_transform .av_fullscreen .avia-caption-content, .avia_transform .av_fullscreen .avia-caption-title, .avia_transform .avia-slideshow-button {
      animation: none !important;
      -webkit-animation: none !important;
      visibility: visible !important;
    }

    Good job on the site. :)

    Regards,
    Ismael

    in reply to: Shopping Cart Icon at secondary menu #477492

    Hi eyeweb!

    Thank you for using Enfold.

    Where exactly in the top bar do you want to place the cart icon? A screenshot will help. Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: How to set up enfold to work for retina screens? #477485

    Hi!

    Enfold is retina ready in a way that you can set custom thumbnails in a specific element. For example, if you use the portfolio grid element, you can select a custom thumbnail. To make the portfolio grid images retina ready, just select thumbnails that is twice the size of the actual container. You can do this method in most of the elements with images.

    And to answer the question above, no, the theme cannot serve different image on retina devices.

    Regards,
    Ismael

    in reply to: Masonry galley not working with WPML #477481

    Hi!

    Thank you for the update. Post the login details, we would like to check it.

    Cheers!
    Ismael

    in reply to: Shortcodes not working #477474

    Hi!

    Thank you for the info.

    I deactivated the plugins but it’s still not working. Did you modify any theme files? If you check the console, there is a javascript error coming from the WP core files. Please override the WP files with a fresh copy then test it again.

    Best regards,
    Ismael

    in reply to: Fixed footer #477472

    Hi!

    Thank you for using Enfold.

    Can you please provide a link to the actual page with the issue? You can set a minimum height to the main container:

    #main > div {
      min-height: 600px;
    }

    Regards,
    Ismael

    in reply to: Upgraded to WP 4.2.2 and enfold is not working ! #477470

    Hey!

    What do you mean by “demo pages do not work on the actual site.”? I checked random demo pages and they are working:

    http://purplepeepal.com/home-v10-magazine/
    http://purplepeepal.com/homepage/home-v2-3-col-images-contact/
    http://purplepeepal.com/home-v6-classic-4-column/

    Cheers!
    Ismael

Viewing 30 posts - 47,911 through 47,940 (of 67,570 total)