Page 24 of 31 FirstFirst ... 142223242526 ... LastLast
Results 231 to 240 of 301

Thread: WordPress SEO by Yoast | XML Sitemaps - Post titles and meta descriptions

  1. #231
    jackie2011ws's Avatar
    Join Date
    Sep 2011
    Location
    Australia
    Posts
    133
    Thanks
    8
    Thanked 2 Times in 2 Posts
    After upgrade to 3.1.6, things has changed.
    If I checked "force rewrite" box, then on ad-listing page, the title displays author name instead of ad title;
    If I don't check the box, then on homepage and ad-listing page, the title duplicates, could somebody solve it??

  2. #232
    Veteran barukar's Avatar
    Join Date
    Sep 2010
    Location
    Brasil, São Paulo, SP
    Posts
    6,785
    Thanks
    186
    Thanked 742 Times in 623 Posts
    This problem has been solved and the fix will come in the next update.

    Meanwhile, you can download the file "functions.php" attached and send it to the folder: /public_html/wp-content/themes/classipress/framework/includes

    Note: Unzip the file "functions.zip" and send the file "functions.php" (Send via FTP)
    Attached Files Attached Files
    -------------------------------------------------------------------------------------------
    Projects: ClassiNoiva - Classimóveis - vocênoenem - i50 - Clube DETRAN

  3. The Following User Says Thank You to barukar For This Useful Post:

    bursaemlak (March 12th, 2012)

  4. #233
    jackie2011ws's Avatar
    Join Date
    Sep 2011
    Location
    Australia
    Posts
    133
    Thanks
    8
    Thanked 2 Times in 2 Posts
    Quote Originally Posted by barukar View Post
    This problem has been solved and the fix will come in the next update.

    Meanwhile, you can download the file "functions.php" attached and send it to the folder: /public_html/wp-content/themes/classipress/framework/includes

    Note: Unzip the file "functions.zip" and send the file "functions.php" (Send via FTP)
    It seems not working. After upload, the title becomes the url, could you double check that?

  5. #234
    Veteran barukar's Avatar
    Join Date
    Sep 2010
    Location
    Brasil, São Paulo, SP
    Posts
    6,785
    Thanks
    186
    Thanked 742 Times in 623 Posts
    I inserted the patch file for version 3.1.6 and now it looks like it will work.

    Then use this new file.
    Attached Files Attached Files
    -------------------------------------------------------------------------------------------
    Projects: ClassiNoiva - Classimóveis - vocênoenem - i50 - Clube DETRAN

  6. The Following User Says Thank You to barukar For This Useful Post:

    casa (January 18th, 2012)

  7. #235
    jackie2011ws's Avatar
    Join Date
    Sep 2011
    Location
    Australia
    Posts
    133
    Thanks
    8
    Thanked 2 Times in 2 Posts
    Quote Originally Posted by barukar View Post
    I inserted the patch file for version 3.1.6 and now it looks like it will work.

    Then use this new file.
    Still the same, have you tested?

  8. #236
    Veteran barukar's Avatar
    Join Date
    Sep 2010
    Location
    Brasil, São Paulo, SP
    Posts
    6,785
    Thanks
    186
    Thanked 742 Times in 623 Posts
    Yes, I'm using on my site and everything is okay (www.classinoiva.com.br)

    You set the header?
    -------------------------------------------------------------------------------------------
    Projects: ClassiNoiva - Classimóveis - vocênoenem - i50 - Clube DETRAN

  9. #237
    jackie2011ws's Avatar
    Join Date
    Sep 2011
    Location
    Australia
    Posts
    133
    Thanks
    8
    Thanked 2 Times in 2 Posts
    Quote Originally Posted by barukar View Post
    Yes, I'm using on my site and everything is okay (www.classinoiva.com.br)

    You set the header?
    I don't know where to change header.php in v3.1.6, but no matter I checked the force rewrite or not, the result is not right, anybody else have the same situation as me?

  10. #238
    Veteran barukar's Avatar
    Join Date
    Sep 2010
    Location
    Brasil, São Paulo, SP
    Posts
    6,785
    Thanks
    186
    Thanked 742 Times in 623 Posts
    As I mentioned, this problem is not occurring on my site. So it may be something related settings or conflict with any plugin.

    To configure the header you need to edit

    See below where to insert the tag title:

    <?php global $app_abbr; ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>

    <head profile="http://gmpg.org/xfn/11">

    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

    <title><?php wp_title(''); ?></title>

    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php if ( get_option('feedburner_url') <> "" ) echo get_option('feedburner_url'); else echo get_bloginfo_rss('rss2_url').'?post_type='.APP_POS T_TYPE; ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php if ( file_exists(TEMPLATEPATH.'/images/favicon.ico') ) { ?><link rel="shortcut icon" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicon.ico" type="image/x-icon" /><?php } ?>

    <?php if ( is_singular() && get_option('thread_comments') ) wp_enqueue_script('comment-reply'); ?>

    <?php wp_head(); ?>


    </head>

    <body <?php body_class(); ?>>

    <?php appthemes_before(); ?>

    <div class="container">

    <?php if ( get_option('cp_debug_mode') == 'yes' ) { ?><div class="debug"><h3><?php _e('Debug Mode On','appthemes'); ?></h3><?php print_r($wp_query->query_vars); ?></div><?php } ?>

    <?php appthemes_before_header(); ?>

    <?php appthemes_header(); ?>

    <?php appthemes_after_header(); ?>

    <?php include_once( TEMPLATEPATH . '/includes/theme-searchbar.php' ); ?>
    -------------------------------------------------------------------------------------------
    Projects: ClassiNoiva - Classimóveis - vocênoenem - i50 - Clube DETRAN

  11. The Following 2 Users Say Thank You to barukar For This Useful Post:

    jackie2011ws (January 12th, 2012), levt (January 12th, 2012)

  12. #239
    Veteran levt's Avatar
    Join Date
    Jan 2012
    Location
    Portugal
    Posts
    308
    Thanks
    27
    Thanked 10 Times in 10 Posts
    This works great barubar

    Muito obrigado

    Quote Originally Posted by barukar View Post
    As I mentioned, this problem is not occurring on my site. So it may be something related settings or conflict with any plugin.

    To configure the header you need to edit

    See below where to insert the tag title:

  13. #240
    Member woreillyjr's Avatar
    Join Date
    Dec 2011
    Posts
    71
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Can someone please provide the settings for this applications on jobroller theme. and also advise how to implement the breadcrumb feature because FXtender breadcrumbs don't work as well.

Page 24 of 31 FirstFirst ... 142223242526 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. SEO: Meta Tags - Titles, Descriptions, etc.
    By panopticholdings in forum Clipper General Discussion
    Replies: 1
    Last Post: October 16th, 2011, 12:33 AM
  2. [SOLVED] Ad Titles & Descriptions not justified...
    By indianajim in forum Report ClassiPress Bugs
    Replies: 6
    Last Post: May 22nd, 2011, 06:04 PM
  3. Keywords, titles and descriptions
    By f1hybrids in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: January 25th, 2011, 04:13 PM