No, click on *this* link...
February 10, 2008 3:04 AM
Subscribe
I want a plugin for Wordpress that will automatically add my Amazon Associates ID into an URL. I've googled, and found loads of plugins that work with Wordpress and Amazon, but none of them appear to do this.
For example, I link to a product on Amazon, typing
http://www.amazon.com/[insert ASIN etc here]
I'd like the plugin to automatically modify the URL to something like
http://www.amazon.com/[insert ASIN etc here][insert ID here]
I've found several Amazon themed WP plugins, but none of them seems to do this. I don't want an Amazon based shop set up. I don't want a sidebar littered with Amazon products. I want to be able to visit Amazon, find the product I'm looking for, paste the URL into a post, and have the associate ID automatically added.
Either that, or a simple guide as to where in the URL the ID needs to be pasted manually. I know Amazon has a builder that will do this, but I find it cumbersome to use when I have several URL's that need editing.
posted by Rabulah to computers & internet (5 comments total)
8 users marked this as a favorite
Making a link in HTML is quite simple:
<a href="URL-of-where-you-want-to-jump">visible-link-goes-between-opening-&-closing-A-tags</a>
So your links would look like this:
<a href="http://www.amazon.com/[ASIN]/[Associate-ID">Visible Product Link</a>
You may have to think about it the first few times you do it, but it will become second nature.
PS... if you want to make the link open in a new window (leaving your blog in the window behind) you can add a "target" attribute to the opening A tag, like this:
<a href="http://www.amazon.com/[ASIN]/[Associate-ID" target="_blank">Visible Product Link</a>
posted by spock at 6:50 AM on February 10