Page 6 of 7 FirstFirst 1 2 3 4 5 6 7 LastLast
Results 76 to 90 of 92
Like Tree2Likes

keyword link replacements

This is a discussion on keyword link replacements within the General Discussion forums, part of the vBSEO SEO Plugin category; Any reason why Code: define ( 'VBSEO_AUTOLINK_FORMAT' , '<a target="_blank" href="%1">%2</a>' ); no longer appears in the vbseo_config file?...

  1. #76
    Member
    Real Name
    Vlad
    Join Date
    Feb 2006
    Location
    NYC
    Posts
    47
    Liked
    0 times
    Any reason why

    Code:
           define('VBSEO_AUTOLINK_FORMAT',        '<a target="_blank" href="%1">%2</a>'); 


    no longer appears in the vbseo_config file?

  2. #77
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    It exits in config_vbseo.php

    PHP Code:
        define('VBSEO_AUTOLINK_FORMAT',        '<a href="%1" title="%2">%2</a>'); 
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  3. #78
    Member
    Real Name
    Vlad
    Join Date
    Feb 2006
    Location
    NYC
    Posts
    47
    Liked
    0 times
    Apparently, after upgrading to 3.3.2, the VBSEO_AUTOLINK_FORMAT variable did not have a value. Works now!

  4. #79
    Junior Member
    Real Name
    James Robinson
    Join Date
    Feb 2007
    Location
    Birmingham UK
    Posts
    16
    Liked
    0 times
    Is there a way of setting this so things only get replaced for guests?

  5. #80
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    You can enable it to guests only for guests within the following option inside config_vbseo.php

    PHP Code:
        define('VBSEO_ACRONYM_GUESTS',                0); 
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  6. #81
    Member
    Real Name
    Weselski
    Join Date
    Sep 2007
    Posts
    34
    Liked
    0 times
    Sorry for repeat post:

    Is there any way to do that:

    when appear the word "Ebay" I have the link Ebay
    when appear the word "ebay" I have the link ebay
    when appear the word "eBaY" I have the link eBaY

    etc...

    In GAL I have defined 1 link "ebay" and all words ebay, Ebay, eBaY... were transformed to links ebay, Ebay, eBaY ...

  7. #82
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    Hello ,

    Yes you can do that . Please do the following.

    In vBSEO Cp please look for Acronym Expansion setting.

    You should choose REPLACE acronyms as expanded text option.

    and you need to define replacements as
    Code:
    'Ebay' => 'http://www.ebay.com'
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  8. #83
    Member
    Real Name
    Weselski
    Join Date
    Sep 2007
    Posts
    34
    Liked
    0 times
    OK, I have defined:

    'Ebay' => 'http://www.ebay.com'
    'ebay' => 'http://www.ebay.com'

    And now when I type "Ebay" I get link: Ebay but when I type "ebay" I get link: Ebay instead of ebay

  9. #84
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    The repalced text will be the one you defined there. We don't offer differfent and complex options similar to Gal.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  10. #85
    Senior Member
    Real Name
    Chris
    Join Date
    Jan 2009
    Posts
    154
    Liked
    3 times
    Quote Originally Posted by Oleg Ignatiuk View Post
    A new BETA option will be added for testing in the next 3.2.0 build to limit the number of replacements per keyword per page, it would be able to modify it in config_vbseo.php file:
    PHP Code:
        define('VBSEO_ACRONYM_PAGELIMIT',             0); 
    (0 means no limits)
    Can we set this to 1 per post instead of 1 page?

  11. #86
    Senior Member
    Real Name
    Chris
    Join Date
    Jan 2009
    Posts
    154
    Liked
    3 times
    Quote Originally Posted by equinox View Post
    Any reason why

    Code:
           define('VBSEO_AUTOLINK_FORMAT',        '<a target="_blank" href="%1">%2</a>'); 



    no longer appears in the vbseo_config file?
    I'd like to add this but its a bit confusing since the new config.xml. What do we add for this today?

    Code:
    <setting>
    <name>VBSEO_AUTOLINK_FORMAT</name>
    <value><![CDATA[<a rel="glossary" href="%1" title="%2">%2</a>]]></value>
    </setting>

  12. #87
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,782
    Liked
    648 times
    Blog Entries
    2
    What exactly are you trying to do with the link?
    Brian Cummiskey / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  13. #88
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,782
    Liked
    648 times
    Blog Entries
    2
    Quote Originally Posted by bigtree View Post
    Can we set this to 1 per post instead of 1 page?
    This is currently not an available option.
    Brian Cummiskey / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  14. #89
    Senior Member
    Real Name
    Chris
    Join Date
    Jan 2009
    Posts
    154
    Liked
    3 times
    okay, please add this option!

    second Q: How do we do:
    target="_blank

  15. #90
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,782
    Liked
    648 times
    Blog Entries
    2
    Code:
    <value><![CDATA[<a target="_blank" rel="glossary" href="%1" title="%2">%2</a>]]></value>
    But you don't need to go into the raw XML to do this. It is available in the CP directly since 3.5

    vbseocp.php#vbseo_opt
    advanced tab
    "Acronym Autolink Format NEW!"
    enter:
    Code:
    <a target="_blank" rel="glossary" href="%1" title="%2">%2</a>
    Please suggest all feature requests here:
    vBSEO Plugin Feature Suggestions
    Brian Cummiskey / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


Page 6 of 7 FirstFirst 1 2 3 4 5 6 7 LastLast

Similar Threads

  1. Keyword help
    By blueraider in forum General Discussion
    Replies: 1
    Last Post: 02-15-2007, 08:46 PM
  2. keyword replacements
    By vissa in forum vBSEO Features Archive
    Replies: 4
    Last Post: 04-28-2006, 05:36 PM
  3. /keyword/ vs. /keyword.html
    By Fender963 in forum General Discussion
    Replies: 5
    Last Post: 03-19-2006, 12:05 PM
  4. Local Link Replacement, more replacements
    By iain meddicks in forum vBSEO Features Archive
    Replies: 2
    Last Post: 03-03-2006, 10:51 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •