Viewing 30 results - 100,411 through 100,440 (of 142,918 total)
  • Author
    Search Results
  • #584149
    Susanne
    Participant

    URL: http://www.sumason.co.uk

    Hi there,
    I need a caption in Easy Slider BELOW the images, not as overlay.
    I found Vinnies’s answer (see copied code below), inserted it into quick css – but nothing changes.
    I also would need the font size only 11px and all in lower case & italic.
    Please could you help? Thanks

    /*Caption below image gallery*/
    .avia-slideshow-inner, .avia-slideshow{overflow: visible!important;}
    .avia-caption {
    bottom: auto!important;
    top:100%!important;
    left:0!important;
    padding:0!important
    }

    #584138
    e-cat
    Participant

    Hi, LayerSlider in Enfold 3.4.7 is buggy. I made a nice LayerSlider and it looks good. However if I now go to the admin panel of LayerSlider, the text CSS is broken, it doesn’t appear correct and the preview doesn’t work.

    I already removed the space before the “/ codemirror/” (as mentioned here: https://kriesi.at/support/topic/layerslider-not-working-5). After doing this I recreated the broken slider and it worked. But after a while also this slider broke in the admin panel. On the website it still looks how it should be, but in the admin not. If I would save the slider in the admin now, I would break the appearance on the site as well (tested this on another slider).

    It is quite clear that the version of LayerSlider in Enfold 3.4.7 is buggy. Several people are having the same problems. When is version 3.4.8 coming out with a working version of LayerSlider?

    Please fix my LayerSlider. Login below. Thanks! :-)

    • This topic was modified 10 years, 2 months ago by e-cat.
    #584135
    elbnetz
    Participant

    Hi There,

    we need post category in the masonry blog. And we’ve found the following solution: https://kriesi.at/support/topic/post-category-in-the-mesonary-blog/

    The unsolved problem there: its showing the Category Slug insted the Category Name.

    Do you have a solution?

    Thanks

    #584109

    Thanks Rikard. You can close this topic.

    #584106

    Hey Gerban!

    Your website does not load correctly on my end at the moment. You can simply adjust the code you posted here – https://kriesi.at/support/topic/banner-position-above-right-menu/#post-580649 or you can use custom CSS to change the position. Can you please post a screenshot showing the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Regards,
    Yigit

    #584101

    Hey Guys, very disappointed, I’m not paying support for get this templated answer. I think that is not complex question and answer. I have been forced in do a deep investigation in your code, this is my answer to my question:

    First of all you need to know that i’m using a child theme because I want to update enfold in a future. I think (but not tested) that this code works in normal enfold functions.php but i wrote this code in child theme functions.php :

    
    add_action( 'init', function () {
    	
    	//we need new portfolio class extending actual portfolio class
    	class ebavs_portfolio extends avia_sc_portfolio {
    
    		//this method is called when shortcode needs to render, we need override and then copy and paste original content 
    		public function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    		{
    			$atts['class'] = !empty($meta['custom_class']) ? $meta['custom_class'] : "";
    			
    			if(current_theme_supports('avia_template_builder_custom_post_type_grid'))
    			{
    			    if(isset($atts['link']))
    			    {
    			        $atts['link'] = explode(',', $atts['link'], 2 );
    			        $atts['taxonomy'] = $atts['link'][0];
    			
    			        if(isset($atts['link'][1]))
    			        {
    			            $atts['categories'] = $atts['link'][1];
    			        }
    			    }
    			
    				if(empty($atts['post_type']) || !current_theme_supports('add_avia_builder_post_type_option'))
    				{
    					$atts['post_type'] = get_post_types();
    				}
    
    				if(is_string($atts['post_type'])) $atts['post_type'] = explode(',', $atts['post_type']);
    			}
    			
    			$atts['fullscreen'] = ShortcodeHelper::is_top_level();
    
    			// HERE WE CHANGE $grid TO NEW OBJECT
    			$grid = new ebavs_post_grid($atts);
    			$grid->query_entries();
    			$portfolio_html = $grid->html();
    		
    			if(!ShortcodeHelper::is_top_level()) 
    			return $portfolio_html . '<!-- ebavs -->';
    			
    			
    			$params['class'] = "main_color avia-no-border-styling avia-fullwidth-portfolio ".$meta['el_class'];
    			$params['open_structure'] = false;
    			$params['id'] = !empty($atts['id']) ? AviaHelper::save_string($atts['id'],'-') : "";
    			$params['custom_markup'] = $meta['custom_markup'];
    			
    			//we dont need a closing structure if the element is the first one or if a previous fullwidth element was displayed before
    			if(isset($meta['index']) && $meta['index'] == 0) $params['close'] = false;
    			if(!empty($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )) $params['close'] = false;
    				
    			$output  =  avia_new_section($params);
    			$output .= $portfolio_html;
    			$output .= avia_section_after_element_content( $meta , 'after_portfolio' );
    			
    			return $output . '<!-- ebavs -->';
    		}
    
    	}
    
    	// Create new Grid class and extends the original
    	class ebavs_post_grid extends avia_post_grid { 
    
    		// override sort buttons, this methods render html for sort bar
    		protected function sort_buttons($entries, $params)
    		{
    			//get all categories that are actually listed on the page
    			$categories = get_categories(array(
    				'taxonomy'	=> $params['taxonomy'],
    				'hide_empty'=> 0
    			));
    
    			$current_page_cats 	= array();
    			$cat_count 			= array();
    			$display_cats 		= is_array($params['categories']) ? $params['categories'] : array_filter(explode(',',$params['categories']));
    
    			foreach ($entries as $entry)
    			{
    				if($current_item_cats = get_the_terms( $entry->ID, $params['taxonomy'] ))
    				{
    					if(!empty($current_item_cats))
    					{
    						foreach($current_item_cats as $current_item_cat)
    						{
    							if(empty($display_cats) || in_array($current_item_cat->term_id, $display_cats))
    							{
    								$current_page_cats[$current_item_cat->term_id] = $current_item_cat->term_id;
    
    								if(!isset($cat_count[$current_item_cat->term_id] ))
    								{
    									$cat_count[$current_item_cat->term_id] = 0;
    								}
    
    								$cat_count[$current_item_cat->term_id] ++;
    							}
    						}
    					}
    				}
    			}
    
    			// DRAW HERE YOUR HTML
    			$output = 'new sort buttons';
    			return $output;
    			
    		}
    
    	}
    
    	// Look for builder Avia Object
    	global $builder;
    
    	// Magic here, change portfolio class by our new class
    	$builder->shortcode_class['avia_sc_portfolio'] = new ebavs_portfolio( $builder ); 
    	
    	// init new object
    	$builder->shortcode_class['avia_sc_portfolio']->init();
    
    	// and replace the named class for shortcode
    	$builder->shortcode[$builder->shortcode_class['avia_sc_portfolio']->config['shortcode']] = 'ebavs_portfolio';
    
    	// this shortcode have a heavy css and js components, you can add your new js and css in this point
    },'100');
    

    As you can see only few lines of code explaining how you can override portfolio sort buttons, masonry is similar.

    #584096
    willy_chen
    Participant

    Hallo!

    Wir haben das gleiche/ähnliche Problem wie Hella: https://kriesi.at/support/topic/portfolio-grid-hover-animation/).

    Es scheint, dass der Hover-Effekt (weiß-transparente Overlay-Fläche und weißer Pfeil auf rotem Kreis – wie auch hier gezeigt: http://kriesi.at/themes/enfold/portfolio/) bei den Bildern im Portfolio-Raster nicht mehr funktioniert.

    Im Firebug ist auch zu erkennen, dass der ganze <a>-tag um das Bild herum und der span mit dem “image-overlay” nach dem <img>-tag fehlt.

    Der Effekt hat bisher immer funktioniert. Wir haben im Inhalt auch nichts geändert. Uns ist jetzt erst das Fehlen des Effekts aufgefallen. Das Einzige, was wir geändert haben, ist die Installation des Plugins “polylang” und das Anlegen der einzelnen Sprachseiten.

    Kann es vielleicht daran liegen?

    THX Nane Charrad

    • This topic was modified 10 years, 2 months ago by willy_chen. Reason: bilder nicht mehr nötig
    #584091

    I am sorry.
    just now i see this choice:
    “Hide Form Labels
    Check if you want to hide form labels above the form elements. The form will instead try to use an inline label (not supported on old browsers)”

    I am sorry again and thank you for your response
    please close the topic

    #584089

    Hi Havi!

    Thank you :)

    You would need to add Social Share Buttons and Comments element to the bottom of your post manually. Also, post meta would not show up but there is a workaround, please see Ismael’s post here – https://kriesi.at/support/topic/using-alb-with-custom-post-type-and-meta-information/#post-580144

    Have you tried using Fullwidth Easy Slider instead? :)

    Best regards,
    Yigit

    #584071

    hm it seems to be to easy ! ?

    goto plugin editor and open – choose secret content and only ad that meta box for portfolio:

    add_meta_box(
            'secret_sectionid',
            _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on portfolio', 'secret_textdomain' ),
            'secret_render_meta_box_content',
            'portfolio',
            'side',
            'high'
        );

    so it looks afterwards at the top in this way:

    function secret_meta_box() {
        add_meta_box(
            'secret_sectionid',
            _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on posts', 'secret_textdomain' ),
            'secret_render_meta_box_content',
            'post',
            'side',
            'high'
        );
            add_meta_box(
            'secret_sectionid',
            _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on portfolio', 'secret_textdomain' ),
            'secret_render_meta_box_content',
            'portfolio',
            'side',
            'high'
        );
        add_meta_box(
            'secret_sectionid',
            _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on pages', 'secret_textdomain' ),
            'secret_render_meta_box_content',
            'page',
            'side',
            'high'
        );
    }

    then the plugin works too for portfolio entries !

    • This reply was modified 10 years, 2 months ago by Guenni007.
    #584069

    In reply to: Main Menu Padding

    Hey sitesme!

    Please add following code to Quick CSS

    .html_header_top .av_bottom_nav_header .main_menu ul:first-child > li a {
        height: 40px;
        line-height: 40px;
    }
    .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child {
        height: 40px;
    }

    Cheers!
    Yigit

    #584052

    In reply to: Enfold Showcase

    I recommend also checking Google speed insight – as the matter of fact, their score is the most important in the seo aspect:
    https://developers.google.com/speed/pagespeed/insights/?url=hikepos.com&tab=desktop
    and GtMetrix:
    https://gtmetrix.com/reports/hikepos.com/c5CdYH3Y

    Scores look nice ;) But as you see, there are still some little issues you could brush up.

    #584050

    Hi Rikard,

    the slider images are stretched vertical. Please validate with your mobile (e.g. iphone) from normal to landscape. Then you see the failure, the red deer is very thin and not the normal picture scale. (because i read the topic to set height: 300px etc.)

    you understand what i mean?

    Thank a lot, André

    #584035

    In reply to: Separators size

    Hi!

    Yes you can create custom separators and use it at a later stage.

    The result will look like the screenshot below

    To do so you need to enable custom class support for the theme as mentioned in this link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    After you enable it you can add different class names such as separator-1, separator-2, separator-3 and separator-4 to the short separator in Advance Layout builder.

    
    /*Separator Styles*/
    .separator-1 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;
    }
     
    .separator-2 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;    
    }
    .separator-2  .hr-inner {
        width: 50%!important;
        left: 50%;
        margin-left: 0!important;
        transform:translateX(-50%);
    }
     
    .separator-2 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;    
    }
    .separator-3  .hr-inner {
        width: 100%!important;
        left: 50%;
        margin-left: 0!important;
        transform:translateX(-50%);
    }
     
    .separator-4 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;
        width:20px;
        height:20px;
        top:-5px;
    }

    Cheers!
    Vinay Kashyap

    • This reply was modified 10 years, 2 months ago by Vinay.
    #584015

    Hi!

    The product in the demo is a variable type product, that’s why you can see the price. If you set the product type to simple, you have to add the price using a text or code block. Or modify the product button shortcode to display the product price by default: https://kriesi.at/support/topic/product-purchase-button-avia-layout-not-showing-product-price/#post-533059

    Best regards,
    Ismael

    #584011

    Topic: footer column spacing

    in forum Enfold
    oestersund
    Participant

    HI,
    on my page below I would like to reduce vertical space between the footer columns. Reason: The (longer) 3rd footer column heading breaks into 2 lines on iPad, so I need more content width and less space in-between

    If tried things like in this post:
    https://kriesi.at/support/topic/reduce-widget-vertical-spacing-in-footer/
    but did not get it. (e.g. resulted in shifting all blocks to the left, but same prob.as above. etc.)

    What can I do?

    Thx a lot & best regards Tilman

    #584007

    Hallo Thomas,

    ich habe in der Sprachdatei Enfold/lang/de_DE.po
    “Events” mit Veranstaltungen übersetzt.

    Du musst aber auch, wie von Josue in dem Ticket vorgeschlagen, folgendes in die functions.php eingeben

    add_filter(‘tribe_events_register_event_type_args’, function($args) {
    $args[‘has_archive’] = false;
    return $args;
    });

    Dann erscheinen die Breadcrumbs richtig.
    Ich würde mir aber schon wünschen, dass das Problem von Kriesi anders gelöst würde.

    Schöne Grüße
    AL

    #584006

    Hey!

    Main menu – Go to the Appearance > Menus panel then set the Menu Style of the menu items to Button Coloured or Bordered.

    Secondary Menu – You can enable the default secondary menu and set it to the right side of the top area. If you need another set of links in the left side area, add it as html links in the phone info field. http://www.w3schools.com/html/html_links.asp

    Cheers!
    Ismael

    #583998

    Hi Reisfreaks!

    Please change your code to following one

    @media only screen and (min-width:481px) and (max-width: 767px)  {
    #top #wrap_all .av_header_transparency { background: transparent !important; }
    #header { position: fixed !important; }
    }

    Regards,
    Yigit

    #583986

    a little offtopic – i have imported yesterday one demo file.
    i often change my media structure just from the beginning to “not in month and year-based Folders”
    The import of all pages and posts works good – but some images weren’t imported. Could it be that the imported files have to have that media structure of month and year based folders ?

    • This reply was modified 10 years, 2 months ago by Guenni007.

    Hello,

    I can provide you a custom page we have developed (.net) that you don’t get that error: https://developers.google.com/speed/pagespeed/insights/?url=www.eemh.gr&tab=desktop

    I understand what you say, but we have minified css and we also use cdn and we still get the red should fix error. I suppose that there should be a way to load it async for example ?? This is important though because this is how quality score is calculated and Cost Per Click is affected on adwords. Let me know if there is anything you can do about.

    Thank you

    #583938

    Hey!

    Did you remove the other codes as explained above? Please remove this code:

    function avia_close_image_div()
    {
    global $avia_config;
    if(is_product()) {
    $back =$_SERVER[‘HTTP_REFERER’];
    if((isset($back) && $back !=”)) echo ‘Go back‘;
    $avia_config[‘currently_viewing’] = “shop_single”;
    get_sidebar();
    }
    echo “</div>”;
    }

    .. then look for this one:

    function avia_add_sidebar() {
    if(is_product()) {
    $avia_config[‘currently_viewing’] = “shop_single”; 
    get_sidebar();
    }
    }

    Replace it with the combined function here: https://kriesi.at/support/topic/button-single-product-page/#post-583077

    Regards,
    Ismael

    Hi!

    Unfortunately, there is no element for the post meta info, tags, categories etc., by default. You can add it manually in a text or code block. If you want to create a custom element for this, please refer to this link. https://kriesi.at/support/topic/using-alb-with-custom-post-type-and-meta-information/

    Regards,
    Ismael

    #583927

    In reply to: icon boxes

    I selected the option to have the large icons on the top of the icon box and that centered them.

    However, On the demo link the 3 icon boxes are centered with the small icons on the left. When I select that option in my icon boxes all the boxes left justify.

    #583926

    Hi,

    Please try the following instead:

    #advanced_menu_toggle {
        top: 80% !important;
    }

    Best regards,
    Rikard

    #583920

    Topic: Main Menu Padding

    in forum Enfold
    sitesme
    Participant

    Hi,

    We would like to decrease the top / bottom padding on the menu: shrink the menu bar basically by a few pixels.

    Can you please help me with this?

    Thank you

    #583919

    In reply to: Logo – Header Menu

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling:

    .html_header_top.html_logo_center .logo {
        padding-top: 20px !important;
    }

    Thanks,
    Rikard

    #583878

    Hi Anthony,

    Did you read Elliotts reply? https://kriesi.at/support/topic/need-more-buttons-in-fullscreen-slider/#post-404783

    If you need help on the backend then please start a new thread and include admin login details in private.

    Thanks,
    Rikard

    #583859
    Olga Vitkalova
    Participant

    hi

    I have a pretty nice header with transparent image on some pages, but it does not look good on mobile.

    The top and header do not transparent, only h1 is transparent.
    I try this code:

    /*Mobile Header Identical To Desktop*/
    @media only screen and (max-width: 767px) {
    #top #wrap_all .av_header_transparency {
        background-color: transparent;
        position: absolute!important;
    }}

    but it does not work for me…
    Can you help me with this issue?
    Thank you

    #583856

    Andy,

    This CSS caused a problem so I removed it.

    1. The CSS worked on the instagram widget sort of, but it also made every image using lightbox at 80×80 (I changed that value). So the Featured Image on all posts was a thumbnail. Can we change that code to be reserved ONLY to the Instagram Widget?

    2. When I make the browser window smaller, the instagram widget then becomes distorted. (See Screenshot below) So this code does not keep the thumbnails proportional.

    2. This is all the code we have created for this to get it in the correct location and sized. Seems like a lot. Is this all necessary to accomplish this or is this a bit overkill? The padding is necessary to keep the element from crowding the “INSTAGRAM” wigit title.

    /*Footer*/
    
    .av-instagram-pics.av-instagram-size-thumbnail {
        width: 70%;
        padding-top: 12px !important;
    }
    
    .av-instagram-item {
        padding: 1px;
    }
    
    .av-instagram-item:hover a {
        opacity: .5;
    } /*instagram hover effect*/
    
    .widget-easy-twitter-feed-widget-container .row {
        margin-bottom: 0;
    }
    
    a.lightbox-added ing { (REMOVED)
    width: 80px;
    height: 80px;
    } /*instagram dimension*/
    • This reply was modified 10 years, 2 months ago by Jasmer.
Viewing 30 results - 100,411 through 100,440 (of 142,918 total)