Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I've seen this on a couple of sites now and I'm having trouble finding information about (probably because it's awkward to describe):

All internal URLs like this for example:

    http://www.domain.com/section/

Are rewriting themselves to something like this:

    http://www.domain.com/section/#.TvuV_pim9PI

Does anyone know what causes this? I'm running WP 3.3 and .htaccess is just the default:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

My Permalink settings are set to Post name and nothing in Category and Tag base.

share|improve this question

1 Answer

Have a read of the following thread on the WordPress forum, apparently the AddThis plugin is the reason the hash tag is been appended to the URL.

http://wordpress.org/support/topic/random-hashtag-strings-added-to-url-in-firefox

share|improve this answer
The AddThis plugin is most definitely the culprit. Unchecking "Track address bar shares:" in the Advanced tab solved it. FYI I'm pretty sure I remember this setting being unchecked by default. – Brian Larson Jan 16 '12 at 18:04

protected by Community Apr 29 at 19:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.