Viewing 30 results - 5,371 through 5,400 (of 10,101 total)
  • Author
    Search Results
  • #611840

    Hi!

    when editing your Masonry element you have chosen “Perfect Manual Masonry” as Size Settings. As you can read in it’s description you need to tag your portfolio items to either “landscape” or “portrait”. You tagged “Alaska” with both, which is wrong. Choose only “landscape”. I have removed “portrait” for you in your backend now.

    You are not using the plugin I mentioned to you, so I repeat: WordPress is cropping images by default when uploading them and you can control this behavior with a plugin like: https://wordpress.org/plugins/simple-image-sizes/

    Use this plugin and let us know when you are done. Don’t forget to regenerate your thumbnails afterwards. Clear browser cache and hard refresh in the end.

    Regards,
    Andy

    #611705

    Hey!

    Did you install the simple image size plugin? You can modify the size of the available thumbnails in the Settings > Media panel.. For example, you can adjust the “Large” thumbnail size to 1030x800px.

    Change the background with css:

    #full_slider_1 {
        background: yellow !important;
        background-image: none !important;
    }

    Turn on the custom css class field if you want to use a unique selector: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    #611658

    Hey!

    Note that the maximum size of the images in the masonry element is set to 705x705px. Images larger than the specified dimension will be cropped or resized accordingly. Install the following plugin if you want to adjust the size of the masonry thumbnail: https://wordpress.org/plugins/simple-image-sizes/

    Go to the Settings > Media panel then adjust the size of the “masonry” thumbnail. Update, save then regenerate the thumbnails afterwards. You may need to do this process multiple times to get the exact dimension that you want.

    Cheers!
    Ismael

    #611450

    Hi!

    Have you regenerated thumbnails as well? https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #611427

    Hi!

    If you are using a child theme, please add following code to Functions.php file of your child theme instead

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size['featured'] = array('width'=>1500, 'height'=>500);
    $size['featured_large'] = array('width'=>1500, 'height'=>500);
    return $size;
    }

    then regenerate thumbnails :)

    Best regards,
    Yigit

    #611409

    Hi!

    You can go to Appearance > Editor and open functions.php file and find

    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider

    and change the values as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #610953

    In reply to: Blog Posts / Image

    Hey!

    Sorry for the delay. Please remove all modifications above then add this in the functions.php file to override the post format image filter:

    
    function avia_image_slideshow_filter($current_post)
    {
    
        $prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
        $image = "";
    
        if(!$prepend_image)
        {
            $image		= avia_regex($current_post['content'],'image');
            if(is_array($image))
            {
                $image = $image[0];
                $prepend_image = '<div class="avia-post-format-image"><img src="'.$image.'" alt="" title ="" /></div>';
            }
            else
            {
                $image		= avia_regex($current_post['content'],'<img />',"");
                if(is_array($image))
                {
                    $prepend_image = '<div class="avia-post-format-image">'.$image[0]."</div>";
                }
            }
        }
        else
        {
    
            $large_image = get_the_permalink();
            $prepend_image = '<div class="avia-post-format-image"><a href="'.$large_image.'">'.$prepend_image."</a></div>";
        }
    
            if(!empty($prepend_image) && is_string($prepend_image))
            {
                if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
                $current_post['before_content'] = $prepend_image;
                $current_post['slider']  = "";
            }
    
        if(is_single(get_the_ID()) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['before_content'] = "";
    
        return avia_default_title_filter($current_post);
    }

    Regards,
    Ismael

    #610666
    serentius
    Participant

    As you can see at the bottom of the link, there are two videos which I have uploaded to my site, that can play next to each other, using the Video Media Element. While they do play correctly, they appear black when not in use, a poor design look.

    Can you give me a CSS or other advice on how to give it a basic thumbnail image background, similar to Youtube. So in this way, I can specify my own image for the video background to showcase when it’s not in use. Thanks!

    #610419

    In reply to: Gallery Shortcode

    Hello…. HOW can I “Turn Off” or “Remove” the Gallery Thumbnail fade in effect

    Thank you!

    #610361

    In reply to: Image Slider

    Okay so this is frustrating. I have started to resize my images so that they would display properly but they are being resized for some reason. If you go to the link below and then right click on the image and view source you will see it is being resized.

    Now the gallery settings are as follow:
    Big Image with thumbnails below
    no scaling (original width X original height)
    No, do not force same size
    Thumbnail 80×80
    6
    No, don’t add a link to the images at all
    show animation when user scrolls to the gallery

    Why is it resizing the larger image to make it huge???

    #610273
    andybute
    Participant

    Hi,
    I’m using Business Directory plugin and there’s an issue with the lightbox gallery thumbnail display for each directory entry. On mouseover of the thumbs they carriage return down the page into a column. The lightbox effect still works and the images can be viewed in larger formats but this problem doesn’t happen if I switch to another theme.
    Here’s a link ..
    http://www.visitbute.com/business-directory/4963/beautiful-flat-with-view-of-rothesay-castle-and-moat/

    Any idea what’s going on? I’m using the latest version of Enfold.
    It happens in all browsers..

    best

    Andy

    • This topic was modified 10 years ago by andybute.
    #610137

    Thank you for explanation :)
    Ok I understand now the concept of triggering the “pause” event. We don’t know if video is playing, so pause is always trigged.
    I will turn off auto-rotation, so the last thumbnail will be visible.

    RESOLVED

    #609998

    Hey!

    Add this in the functions.php file to disable the parallax effect:

    add_action('init', 'ava_product_parallax_init', 50);
    function ava_product_parallax_init() {
        remove_action( 'ava_after_main_container', 'avia_woocommerce_big_cat_banner', 11 );
        add_action( 'ava_after_main_container', 'avia_woocommerce_big_cat_banner_mod', 11 );
    }
    
    function avia_woocommerce_big_cat_banner_mod()
    {
    	if(is_product_category())
    	{
    		global $wp_query, $avia_config;
    
    		if(isset($wp_query->query_vars['taxonomy']))
    		{
    			$term = get_term_by( 'slug', get_query_var($wp_query->query_vars['taxonomy']), $wp_query->query_vars['taxonomy']);
    			if(!empty($term->term_id))
    			{
    				$description 	= term_description() ;
    				$style 			= get_woocommerce_term_meta($term->term_id, 'av_cat_styling');
    				$attachment_id 	= get_woocommerce_term_meta($term->term_id, 'thumbnail_id');
    
    				$overlay 	= get_woocommerce_term_meta($term->term_id, 'av-banner-overlay');
    				$font 		= get_woocommerce_term_meta($term->term_id, 'av-banner-font');
    				$opacity 	= get_woocommerce_term_meta($term->term_id, 'av-banner-overlay-opacity');
    
    				if(!empty($style))
    				{
    					remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 );
    					echo avia_woocommerce_parallax_banner_mod($attachment_id, $overlay, $opacity, $description, $font);
    					$avia_config['woo-banner'] = true;
    				}
    			}
    		}
    	}
    }
    
    function avia_woocommerce_parallax_banner_mod($bg, $overlay, $opacity, $description, $font)
    {
    
    	if(is_numeric($bg))
    	{
    		$bg = wp_get_attachment_image_src($bg, 'extra_large');
    		if(is_array($bg) && $bg[0] != "") $bg = $bg[0];
    	}
    
    	if($font) $font = "style='color:{$font};'";
    	if($bg) $bg = "background-image: url(".$bg.");";
    
    	$output = "";
    
    	$output .='<div id="av_product_description" style="'.$bg.' main_color background-attachment: scroll; background-position: 50% 50%; background-repeat: no-repeat;" class="avia-section main_color avia-section-large avia-no-border-styling avia-full-stretch av-parallax-section av-section-color-overlay-active avia-bg-style-parallax container_wrap fullsize" data-section-bg-repeat="stretch" '.$font.'>';
    
    	$output .='<div class="av-section-color-overlay-wrap">';
    	if(!empty($overlay))
    	{
    		$output .='<div class="av-section-color-overlay" style="opacity: '.$opacity.'; background-color: '.$overlay.'; "></div>';
    	}
    
    	$output .='<div class="container">';
    	$output .='<main class="template-page content av-content-full alpha units">';
    	if($description) $output .= "<h1>".$description."</h1>";
    	$output .='</main></div></div></div>';
    
    	return $output;
    }

    Best regards,
    Ismael

    Hey!

    Yes, the theme modifies the default thumbnail size. The code is located in the functions-enfold.php file:

    //change default thumbnail size and fullwidth size on theme activation
    if(!function_exists('avia_set_thumb_size'))
    {
    	add_action('avia_backend_theme_activation', 'avia_set_thumb_size');
    	function avia_set_thumb_size()
    	{
    		update_option( 'thumbnail_size_h', 80 ); update_option( 'thumbnail_size_w', 80 );
    		update_option( 'large_size_w', 1030 ); 	 update_option( 'large_size_h', 1030 );
    	}
    }
    

    If you need a 150x150px thumbnail, adjust the thumbnail size in the Settings > Media panel.

    Cheers!
    Ismael

    #609978

    Hey!

    Thank you for the explanation but I understand the issue just fine. Once you clicked the next or previous button or the slider auto rotates, it will trigger an event, the video pause event. This is to ensure that multiple videos cannot play at the same time. Once a video event ( play, pause, ended etc) has been triggered, it will no longer display the thumbnail. You can only go back to the video’s initial state, the one with the thumbnail, by refreshing the page.

    You can contact codeable if you really need the thumbnail. They will try to enhance video or youtube api: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    #609757

    In reply to: using 2 themes

    Hi!

    I personally really like the shop design as it is right now. If you use good color combinations, product images and font family, it would look awesome out of the box.
    You could use a plugin such as contact form 7 to have functioning datepicker and add the shortcode to product description. Manually entering the date is not really a good UX as you mentioned.
    Sharper single product image would be better. Currently it is little bit blurry on my end. To increase single product image, please go to WooCommerce > Settings > Products > Display and increase “Single Product Image” then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #609405

    Hi!

    A workaround is to replace the iframe code with an image and then add the video url as link:

    <div class="avia-image-container">
        <div class="avia-image-container-inner">
            <a href="https://www.youtube.com/watch?v=3eaW9PMJOR" class="avia_image">
                <img class="avia_image" src="_IMAGE_URL_HERE_" alt="" title="Test Video" itemprop="contentURL" style="display: block;">
            </a>
        </div>
    </div>

    Create a video thumbnail then add its url in the placeholder (_IMAGE_URL_HERE_) above. It will open the video in a lightbox.

    Best regards,
    Ismael

    #609395

    Hi!

    There are pre-designated thumbnails for the masonry gallery element so scaling the image is not going to work. What you need to do is to pre-cropped the thumbnail then upload it in the masonry gallery. Set the original image as Custom Link of the thumbnail.

    Regards,
    Ismael

    #609283

    In reply to: Color Section

    Hey!

    The site loads a custom script. What is this script for?

    <script>
    
    jQuery(document).ready(function($){
    
    $('body').prepend('<div id="h5ab-print-content" style="width: 100px; height: 100px; overflow: hidden; position: fixed; left: -9999px;"><h1>color-sections-error</h1>' + "<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3' class='avia-section main_color avia-section-default avia-no-shadow avia-bg-style-scroll   container_wrap sidebar_right' style='background-color: #d65799;background-color: #d65799'><div class='container'><div class='template-page content  av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n<section class=\"av_textblock_section\"><div class='avia_textblock ' style='font-size:25px'><h2>Title lorem ipsum<\/h2>\n<\/div><\/section>\n<div class='avia-content-slider avia-content-slider-active avia-content-slider3 avia-content-slider-odd  '><div class='avia-content-slider-inner'><div class='slide-entry-wrap'><article class='slide-entry flex_column  post-entry post-entry-5969 slide-entry-overview slide-loop-1 slide-parity-odd  av_one_fifth first real-thumbnail'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/0220-concorrenza\/\" rel=\"tag\">Concorrenza (MiSE)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/\" rel=\"tag\">MEF<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' title='Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE'>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>06\/11\/2015<\/div><div class='slide-entry-excerpt entry-content'>La lettura del bollettino 296 della Banca d\u2019Italia ispira alcune considerazioni di geoconcorrenza, geopolitica e perci\u00f2 di geoeconomia.\r\nL\u2019incipit del paper \u00e8 impostato secondo la pluriennale consolidata certezza che il controllo sulla domanda sia il motore originante tutti i cambiamenti favorevoli e sfavorevoli: \u201c\u2026 <div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t   <span>470<\/span>\n\t\t\t\t\t   <span>1310<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-11-06 07:17:16<\/span><span class='av-structured-data'>2016-03-10 16:45:57<\/span><span class='av-structured-data'><span>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-5909 slide-entry-overview slide-loop-2 slide-parity-even  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' class='slide-image' title=''><img width=\"246\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"151020 01 sx green\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' title='Libero arbitrio o cos\u00ec fan tutti?'>Libero arbitrio o cos\u00ec fan tutti?<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>21\/10\/2015<\/div><div class='slide-entry-excerpt entry-content'>In Italia il sistema organizzativo democratico \u00e8 troppo centralistico\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg<\/span>\n\t\t\t\t\t   <span>1269<\/span>\n\t\t\t\t\t   <span>1689<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-10-21 09:38:08<\/span><span class='av-structured-data'>2016-02-23 13:47:15<\/span><span class='av-structured-data'><span>Libero arbitrio o cos\u00ec fan tutti?<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-5648 slide-entry-overview slide-loop-3 slide-parity-odd  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' class='slide-image' title=''><img width=\"185\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"Rotore economico\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/milav\/\" rel=\"tag\">MiLPS<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' title='Stipendi bassi? Serve il rotore del valore aggiunto'>Stipendi bassi? Serve il rotore del valore aggiunto<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>13\/09\/2015<\/div><div class='slide-entry-excerpt entry-content'>Perch\u00e9 in Italia gli stipendi sono bassi? Perch\u00e9 sono come\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg<\/span>\n\t\t\t\t\t   <span>9000<\/span>\n\t\t\t\t\t   <span>9000<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-09-13 14:03:49<\/span><span class='av-structured-data'>2016-02-23 13:47:42<\/span><span class='av-structured-data'><span>Stipendi bassi? Serve il rotore del valore aggiunto<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-5050 slide-entry-overview slide-loop-4 slide-parity-even  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' class='slide-image' title=''><img width=\"179\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"150715 01\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/0240-fisco\/\" rel=\"tag\">Fisco (MEF)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' title='Mini-econoregole: Il debito a banda larga'>Mini-econoregole: Il debito a banda larga<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/07\/2015<\/div><div class='slide-entry-excerpt entry-content'>Il debito \u00e8 a banda limitata, nella quantit\u00e0 e nel tempo.\r\n\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png<\/span>\n\t\t\t\t\t   <span>754<\/span>\n\t\t\t\t\t   <span>731<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-07-15 14:21:25<\/span><span class='av-structured-data'>2015-10-12 07:44:19<\/span><span class='av-structured-data'><span>Mini-econoregole: Il debito a banda larga<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-1294 slide-entry-overview slide-loop-5 slide-parity-odd  post-entry-last  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' title='Il Paradosso del PIL'>Il Paradosso del PIL<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/04\/2014<\/div><div class='slide-entry-excerpt entry-content'>PIL e resilienza \u2013 Per qualcuno la resilienza \u00e8 un pregio\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/il-paradosso-del-pil\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t   <span>470<\/span>\n\t\t\t\t\t   <span>1310<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Scior Carera<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Scior Carera<\/span><\/span><span class='av-structured-data'>2014-04-15 16:16:55<\/span><span class='av-structured-data'>2016-03-10 16:46:14<\/span><span class='av-structured-data'><span>Il Paradosso del PIL<\/span><\/span><\/span><\/article><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_3' class='main_color av_default_container_wrap container_wrap sidebar_right'><div class='container'><div class='template-page content  av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4' class='avia-section main_color avia-section-default avia-no-shadow avia-bg-style-scroll   container_wrap sidebar_right' style='background-color: #4ecac2;background-color: #4ecac2'><div class='container'><div class='template-page content  av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n<section class=\"av_textblock_section\"><div class='avia_textblock ' style='font-size:25px'><h2>Title lorem ipsum<\/h2>\n<\/div><\/section>\n<div class='avia-content-slider avia-content-slider-active avia-content-slider4 avia-content-slider-odd  '><div class='avia-content-slider-inner'><div class='slide-entry-wrap'><article class='slide-entry flex_column  post-entry post-entry-5969 slide-entry-overview slide-loop-1 slide-parity-odd  av_one_fifth first real-thumbnail'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/0220-concorrenza\/\" rel=\"tag\">Concorrenza (MiSE)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/\" rel=\"tag\">MEF<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/' title='Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE'>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>06\/11\/2015<\/div><div class='slide-entry-excerpt entry-content'>La lettura del bollettino 296 della Banca d\u2019Italia ispira alcune considerazioni di geoconcorrenza, geopolitica e perci\u00f2 di geoeconomia.\r\nL\u2019incipit del paper \u00e8 impostato secondo la pluriennale consolidata certezza che il controllo sulla domanda sia il motore originante tutti i cambiamenti favorevoli e sfavorevoli: \u201c\u2026 <div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/piu-greggio-per-tutti-la-rivoluzione-shale-negli-usa-e-la-reazione-dellopec\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t   <span>470<\/span>\n\t\t\t\t\t   <span>1310<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-11-06 07:17:16<\/span><span class='av-structured-data'>2016-03-10 16:45:57<\/span><span class='av-structured-data'><span>Pi\u00f9 greggio per tutti: la rivoluzione shale negli USA, le reazioni dell\u2019OPEC e dell'OCSE<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-5909 slide-entry-overview slide-loop-2 slide-parity-even  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' class='slide-image' title=''><img width=\"246\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"151020 01 sx green\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0295-europa\/\" rel=\"tag\">Europa, Mediterraneo e oltre<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/' title='Libero arbitrio o cos\u00ec fan tutti?'>Libero arbitrio o cos\u00ec fan tutti?<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>21\/10\/2015<\/div><div class='slide-entry-excerpt entry-content'>In Italia il sistema organizzativo democratico \u00e8 troppo centralistico\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/libero-arbitrio-o-cosi-fan-tutti\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/10\/151020-01-sx-green.jpg<\/span>\n\t\t\t\t\t   <span>1269<\/span>\n\t\t\t\t\t   <span>1689<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-10-21 09:38:08<\/span><span class='av-structured-data'>2016-02-23 13:47:15<\/span><span class='av-structured-data'><span>Libero arbitrio o cos\u00ec fan tutti?<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-5648 slide-entry-overview slide-loop-3 slide-parity-odd  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' class='slide-image' title=''><img width=\"185\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"Rotore economico\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/milav\/\" rel=\"tag\">MiLPS<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/' title='Stipendi bassi? Serve il rotore del valore aggiunto'>Stipendi bassi? Serve il rotore del valore aggiunto<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'>13\/09\/2015<\/div><div class='slide-entry-excerpt entry-content'>Perch\u00e9 in Italia gli stipendi sono bassi? Perch\u00e9 sono come\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/stipendi-bassi-serve-il-rotore-del-valore-aggiunto-2\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/09\/Rotore-economico.jpg<\/span>\n\t\t\t\t\t   <span>9000<\/span>\n\t\t\t\t\t   <span>9000<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-09-13 14:03:49<\/span><span class='av-structured-data'>2016-02-23 13:47:42<\/span><span class='av-structured-data'><span>Stipendi bassi? Serve il rotore del valore aggiunto<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-5050 slide-entry-overview slide-loop-4 slide-parity-even  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' class='slide-image' title=''><img width=\"179\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"150715 01\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mef\/0240-fisco\/\" rel=\"tag\">Fisco (MEF)<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/mise\/lavoro-e-impresa-a-temi\/\" rel=\"tag\">Lavoro e Impresa (MiSE & MLPS)<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/' title='Mini-econoregole: Il debito a banda larga'>Mini-econoregole: Il debito a banda larga<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/07\/2015<\/div><div class='slide-entry-excerpt entry-content'>Il debito \u00e8 a banda limitata, nella quantit\u00e0 e nel tempo.\r\n\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/mini-econoregole-il-debito-a-banda-larga\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2015\/07\/150715-01.png<\/span>\n\t\t\t\t\t   <span>754<\/span>\n\t\t\t\t\t   <span>731<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Stefano Cianchi<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Stefano Cianchi<\/span><\/span><span class='av-structured-data'>2015-07-15 14:21:25<\/span><span class='av-structured-data'>2015-10-12 07:44:19<\/span><span class='av-structured-data'><span>Mini-econoregole: Il debito a banda larga<\/span><\/span><\/span><\/article><article class='slide-entry flex_column  post-entry post-entry-1294 slide-entry-overview slide-loop-5 slide-parity-odd  post-entry-last  av_one_fifth  real-thumbnail'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' class='slide-image' title=''><img width=\"260\" height=\"185\" src=\"http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder-260x185.jpg\" class=\"attachment-portfolio_small size-portfolio_small wp-post-image\" alt=\"econoregole-placeholder\" \/><\/a><div class='slide-content'><header class=\"entry-content-header\"><span class=\"blog-categories minor-meta\"><a href=\"http:\/\/www.scwip.it\/categoria\/0250-ap\/\" rel=\"tag\">AP Amministratori Pubblici<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/econoregole\/\" rel=\"tag\">Econoregole<\/a>, <a href=\"http:\/\/www.scwip.it\/categoria\/0230-finanza\/\" rel=\"tag\">Finanza<\/a> <\/span><h3 class='slide-entry-title entry-title'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/' title='Il Paradosso del PIL'>Il Paradosso del PIL<\/a><\/h3><span class=\"av-vertical-delimiter\"><\/span><\/header><div class='slide-meta'><div class='slide-meta-comments'><a href='http:\/\/www.scwip.it\/il-paradosso-del-pil\/#respond'>0 Comments<\/a><\/div><div class='slide-meta-del'>\/<\/div>15\/04\/2014<\/div><div class='slide-entry-excerpt entry-content'>PIL e resilienza \u2013 Per qualcuno la resilienza \u00e8 un pregio\u2026<div class=\"read-more-link\"><a href=\"http:\/\/www.scwip.it\/il-paradosso-del-pil\/\" class=\"more-link\">Read more<span class=\"more-link-arrow\">  &rarr;<\/span><\/a><\/div><\/div><\/div><footer class=\"entry-footer\"><\/footer><span class='hidden'>\n\t\t\t<span class='av-structured-data'>\n\t\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/03\/econoregole-placeholder.jpg<\/span>\n\t\t\t\t\t   <span>470<\/span>\n\t\t\t\t\t   <span>1310<\/span>\n\t\t\t\t  <\/span><span class='av-structured-data'>\n\t\t\t\t<span>Scior Carera<\/span>\n\t\t\t\t<span>\n\t\t\t\t   <span>http:\/\/www.scwip.it\/wp-content\/uploads\/2016\/02\/Logo_Extra-300x77.png<\/span>\n\t\t\t\t <\/span>\n\t\t\t  <\/span><span class='av-structured-data'><span>Scior Carera<\/span><\/span><span class='av-structured-data'>2014-04-15 16:16:55<\/span><span class='av-structured-data'>2016-03-10 16:46:14<\/span><span class='av-structured-data'><span>Il Paradosso del PIL<\/span><\/span><\/span><\/article><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_4' class='main_color av_default_container_wrap container_wrap sidebar_right'><div class='container'><div class='template-page content  av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-6940'><div class='entry-content-wrapper clearfix'>\n" + '</div>');
    
    $('#h5ab-print-content video, #h5ab-print-content audio, #h5ab-print-content script').remove();
    
    });
    
    </script>
    

    Cheers!
    Ismael

    #609232
    themeforesttony
    Participant

    Hi,
    I had just migrated a site for a client, and I noticed that on all the pages just above the footer on the left side “KRIESI” text is appearing.
    It is not in the socket which I have disabled but rather appears to be wrapped in the following:
    <div class=”container_wrap container_wrap_first main_color fullsize av-blog-meta-comments-disabled”
    <div container template-blog
    <main class=”content av-content-full alpha units” role=”main” itemprop=”mainContentOfPage” itemscope=”itemscope” itemtype=”https://schema.org/Blog”&gt;
    <<article class=”post-entry post-entry-type-standard post-entry-538 post-loop-1 post-parity-odd single-small with-slider post-538 post type-post status-publish format-standard has-post-thumbnail hentry category-press-release” itemscope=”itemscope” itemtype=”https://schema.org/BlogPosting&#8221; itemprop=”blogPost”>

    then I have some blog post content which is followed by:
    <div class=”single-small”></div>
    <!–end content–>
    </main>
    :: after
    </div>
    <!–end container–>
    </div>
    <!– close default .container_wrap element –>
    “kriesi”

    I can’t find where it is being generated and how to remove it. Any help is welcome.

    #609160

    In reply to: Image Slider

    Hi again, so I have created the thumbnails which display in the pop up color box. Do you know if there is a way to set it so that it would display as in the mock up?

    #609044

    That didn’t work either but I took the different ones you sent and compared what worked and didn’t from each and came up with this ….

    if(!post_password_required($id)){
    $custom_link = get_post_meta( $id ,’_portfolio_custom_link’, true);
    $custom_link_url = get_post_meta( $id ,’_portfolio_custom_link_url’, true);

    if($custom_link) $this->loop[$key][‘url’] = wp_get_attachment_image_src(get_post_thumbnail_id($id), ‘full’)[0]; // custom link toggled, link featured img
    if($custom_link_url) $this->loop[$key][‘url’] = $custom_link_url; // custom link toggled and URL set, link to URL.
    }

    This seems to work … do you see anything that would cause problems?

    Thanks,
    Renita

    #609017

    In reply to: Image Slider

    Hi Basilis,
    Thank you so much for getting back to me. I am so lost! With this page I had tried a few different ways to create this but I do not know how to make it so that the large image will behave like an image slider and will change when the thumbnails are clicked. I will post a link to the test site below. I have created a test page, just not sure how to make this work. Any help is greatly appreciated!

    The goal is to make it so that you go from the Category projects page:
    Urban, Suburban or Renovations & Additions to the individual project page which would have the thumbnails and larger image like in the link I gave before.

    brianwelsh
    Participant

    Hi,

    I would like to remove the circle with an arrow in when I mouse-over an image. Can you please let me know
    if this is possible.

    If you mouse-over the very 1st image of the Enfold Demo you will see what I mean. I am adding an image gallery to a site and it is just too much to have this style on every thumbnail image.

    http://kriesi.at/themedemo/?theme=enfold-overview

    Thanks
    Brian

    • This topic was modified 10 years ago by brianwelsh.

    Hey!

    your images have different sizes, which is causing this I think. Make sure they have all the exact same size. After changing image size don’t forget to regenerate your thumbnails.

    Regards,
    Andy

    #608786

    Hi!

    wäre notwendig wenn du genau zeigst von was du die Schriftgröße und Farbe ändern willst. Bitte immer Screenshots etc. verwenden. Vielleicht ist es ja das heir:

    #top div ul.product_list_widget li a {
    font-size: 15px;
    color: red;
    }
    

    Die Thumbnails kannst du hiermit vergrößern:

    img.attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image {
    width: 100px;
    }
    

    Gruß!
    Andy

    #608630

    Here is what I replaced:

    if(!post_password_required($id)){
    $custom_link = get_post_meta( $id ,’_portfolio_custom_link’, true) != “” ? get_post_meta( $id ,’_portfolio_custom_link_url’, true) : false;
    if($custom_link) $this->loop[$key][‘url’] = $custom_link;
    }

    This is what I replaced it with:

    if(!post_password_required($id)){
    $custom_link = get_post_meta( $id ,’_portfolio_custom_link’, true);
    $custom_link_url = get_post_meta( $id ,’_portfolio_custom_link_url’, true);

    if($custom_link) $this->loop[$key][‘url’] = wp_get_attachment_image_src(get_post_thumbnail_id($id), ‘full’)[0]; // custom link toggled, link featured img
    if($custom_link_url) $this->loop[$key][‘url’] = $custom_link; // custom link toggled and URL set, link to URL.
    }

    All custom links are broke – they go to ../custom
    The blank custom field do open the image lightbox
    The default opens the light box too … not the permalink.

    #608597

    Ok try with this:

    					if($custom_link != ''){
    						    $this->loop[$key]['url'] = wp_get_attachment_image_src(get_post_thumbnail_id($id), 'full')[0]; // custom link toggled, link featured img
    						}elseif($custom_link_url != ''){
    						    $this->loop[$key]['url'] = $custom_link_url; // custom link toggled and URL set, link to URL.  
    						} else {
    						    $this->loop[$key]['url'] = get_permalink($id);
    						}
    

    Should work in the three cases as follows:
    1. http://screencast.com/t/lU2XxtTfuGPf
    2. http://screencast.com/t/07k7pJVzh
    3. http://screencast.com/t/R1wXyIM97cit

    • This reply was modified 10 years ago by Josue.
    #608579
    serentius
    Participant

    Hi,

    As you can see at the bottom of the link, there are two videos which I have uploaded to my site, that can play next to each other. While they do play correctly, they appear black when not in use, a poor design look. Can you give me a CSS or otherwise advice on how to give it a basic thumbnail image background? Thanks.

    Seth

    #608524

    Topic: Image Slider

    in forum Enfold
    NetphoriaInc
    Participant

    Hello, I am trying to build a page that looks like the page I Linked to in the private content below. Can you please tell me how I would do this in your theme? I was able to create the other pages, just having trouble with this type of image slider. Basically One main image that will change when you click the thumbnail or the next or previous buttons. Please help. Thanks. Jess

Viewing 30 results - 5,371 through 5,400 (of 10,101 total)