Support » Plugin: Yoast SEO » [Plugin: WordPress SEO by Yoast] Meta descriptions not working yet.

  • Resolved EmanueleT

    (@emanuelet)


    Hi,

    im still having problem with my meta descriptions, in the results google shows my titles also in the description area.

    my website: http://www.lem-international.com

    and here there is my head , i set the titles rewriting in the plugin.

    <head>
    <?php if ( function_exists('yoast_breadcrumb') ) {
    yoast_breadcrumb('<p id="breadcrumbs">','</p>');
    } ?>
    	<meta charset="<?php bloginfo( 'charset' ); ?>" />
    	<link rel="profile" href="http://gmpg.org/xfn/11" />
      	<link rel="icon" href="<?php bloginfo( 'template_url' ); ?>/favicon.ico" type="image/x-icon" />
    	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    	<link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'rss2_url' ); ?>" />
    	<link rel="alternate" type="application/atom+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'atom_url' ); ?>" />
    	<?php /* The HTML5 Shim is required for older browsers, mainly older versions IE */ ?>
      	<!--[if lt IE 8]>
            <div style=' clear: both; text-align:center; position: relative;'>
                <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannercode"><img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" alt="" /></a>
            </div>
      <![endif]-->
      <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/css/normalize.css" />
      <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
      <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/css/prettyPhoto.css" />
      <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/css/grid.css" />
    	<?php
    		/* We add some JavaScript to pages with the comment form
    		 * to support sites with threaded comments (when in use).
    		 */
    		if ( is_singular() && get_option( 'thread_comments' ) )
    			wp_enqueue_script( 'comment-reply' );
    
    	?>
      	<!--[if lt IE 9]>
            <style type="text/css">
    			.button,
    			.dropcap,
    			.featured-thumbnail,
    			.featured-thumbnail img,
                .wp-pagenavi a,
                .wp-pagenavi span,
                li.comment .avatar,
                #top-search #submit,
    			.wpcf7-form input[type="submit"],
    			.wpcf7-form input[type="reset"],
                .tags-cloud a,
    			.tagcloud a,
                .popular-posts li .post-thumb,
                .popular-posts li .post-thumb .thumbnail,
    			#gallery .portfolio li a.image-wrap,
    			#gallery .portfolio li a.image-wrap img,
    			.text-icon {
    			  behavior:url(<?php bloginfo('stylesheet_directory'); ?>/PIE.php)
    			}
            </style>
     	 <![endif]-->
    
      	<script type="text/javascript">
      	// initialise plugins
    		jQuery(function(){
    			// main navigation init
    			jQuery('ul.sf-menu').superfish({
    				delay:       <?php echo of_get_option('sf_delay'); ?>, 		// one second delay on mouseout
    				animation:   {opacity:'<?php echo of_get_option('sf_f_animation'); ?>'<?php if (of_get_option('sf_sl_animation')=='show') { ?>,height:'<?php echo of_get_option('sf_sl_animation'); ?>'<?php } ?>}, // fade-in and slide-down animation
    				speed:       '<?php echo of_get_option('sf_speed'); ?>',  // faster animation speed
    				autoArrows:  <?php echo of_get_option('sf_arrows'); ?>,   // generation of arrow mark-up (for submenu)
    				dropShadows: <?php echo of_get_option('sf_shadows'); ?>   // drop shadows (for submenu)
    			});
    
    			// prettyphoto init
    			jQuery("a[rel^='prettyPhoto']").prettyPhoto({
    				animation_speed:'normal',
    				slideshow:5000,
    				autoplay_slideshow: false,
    				overlay_gallery: true
    			});
    
    		});
    
    		// Init for audiojs
    		audiojs.events.ready(function() {
    			var as = audiojs.createAll();
    		});
    		$(function(){
    			$('.after-content-area .latestpost li:nth-child(3n), .recent-posts.general li:nth-child(3n), .recent-posts.services li:nth-child(2n), .recent-posts.team li:nth-child(2n), .recent-posts.clients li:nth-child(5n)').addClass('nomargin');
    			$('.recent-posts.team li:nth-child(4n), .recent-posts.team li:nth-child(4n-1)').addClass('img-right');
    			$('#widget-header .social-networks li a').append('<span class="line-bot"></span>');
    			if ($.browser.opera || $.browser.msie) {
    				$('#widget-header .social-networks li a').hover(function(){
    						$(this).find('.line-bot').stop().animate({width:'100%', left:0})
    					}, function(){
    						$(this).find('.line-bot').stop().animate({width:0, left:'50%'})
    				});
    
    			} else {
    				$('#widget-header .social-networks li a').hover(function(){
    						$(this).find('.line-bot').stop().animate({width:'100%', left:'0%'})
    					}, function(){
    						$(this).find('.line-bot').stop().animate({width:'0%', left:'50%'})
    				});
    			}
    		});
      </script>
    
      <script type="text/javascript">
    		jQuery(window).load(function() {
    
    		});
    	</script>
      <!-- Custom CSS -->
    	<?php if(of_get_option('custom_css') != ''){?>
      <style type="text/css">
      	<?php echo of_get_option('custom_css' ) ?>
      </style>
      <?php }?>
    
      <style type="text/css">
    
    		<?php $background = of_get_option('body_background');
    			if ($background != '') {
    				if ($background['image'] != '') {
    					echo 'body { background-image:url('.$background['image']. '); background-repeat:'.$background['repeat'].'; background-position:'.$background['position'].';  background-attachment:'.$background['attachment'].'; }';
    				}
    				if($background['color'] != '') {
    					echo 'body { background-color:'.$background['color']. '}';
    				}
    			};
    		?>
    
    		<?php $header_styling = of_get_option('header_color');
    			if($header_styling != '') {
    				echo '#header {background-color:'.$header_styling.'}';
    			}
    		?>
    
    		<?php $links_styling = of_get_option('links_color');
    			if($links_styling) {
    				echo 'a{color:'.$links_styling.'}';
    				echo '.button {background:'.$links_styling.'}';
    			}
    		?>
    
    		<?php $body_typography = of_get_option('body_typography');
    			if($body_typography) {
    				echo 'body {font-family:'.$body_typography['face'].'; color:'.$body_typography['color'].'}';
    				echo '#main {font-size:'.$body_typography['size'].'; font-style:'.$body_typography['style'].';}';
    			}
    		?>
      </style>
    	<?php
    		/* Always have wp_head() just before the closing </head>
    		 * tag of your theme, or you will break many plugins, which
    		 * generally use this hook to add elements to <head> such
    		 * as styles, scripts, and meta tags.
    		 */
    		wp_head();
    	?>
    </head>

    i hope you can help me.

    thanks in advance

    http://wordpress.org/extend/plugins/wordpress-seo/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello!!!
    You must wait because google must update your search result. Wait 1 week and if your snippet is wrong, write also here.

    <title>LEM International Srl | Prodotti Elettronici Di Consumo & Servizi Web</title>
    <meta name="description" content="Vendiamo prodotti elettronici di consumo all' ingrosso: TV LCD , PRODOTTI LED , TABLET. Offriamo servizi per il web: creazione siti web e sviluppo loghi."/>
    Thread Starter EmanueleT

    (@emanuelet)

    ok, thank you very much …
    i have another question do make, do you think that im my sitemap i should register only the main pages ( services, products, who we are) , or is better to register all ( categort name, portfolio, price box ecc…)

    thanks!

    The pages have specific content?

    If yes includes it in sitemap, if not doen’t include it! 🙂

    Thread Starter EmanueleT

    (@emanuelet)

    😉

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WordPress SEO by Yoast] Meta descriptions not working yet.’ is closed to new replies.