I’ve just installed the Bookmark Me plugin and was disappointed it didn’t come with the eye candy logos next to each of the bookmark-me links.

Then I realised when I viewed the html that it did actually come with the fancy logo’s. The problem is that I have my blog installed in a sub directory so my wordpress url is actually different to the site url.
If you’ve got the same problem, here’s the fix:
Denis has just used to wrong option to get the wordpress installation url. Instead of get_bloginfo(’siteurl’), it should be get_bloginfo(’wpurl’).
. trailingslashit(get_bloginfo(’siteurl’))
. ‘wp-content/plugins/sem-bookmark-me/img/’
. $site_id . ‘.gif’
. ‘”‘
. ‘ alt=”‘ . __($site_info[’name’]) . ‘”‘
. ‘ style=”border: none; margin: 0px 1px;”‘
. ‘ width=”16″‘
. ‘ height=”16″‘
Popularity: 3%











3 comments ↓
Hi. I’m having the same problem you had, where the names appear as links but none of the eye candy logos. I did what you said but still no luck. My WordPress installation is located in a folder named WordPress at the highest level of my site. Any suggestions? Thanks in advance, Joe
Ah never mind, I fixed it by editing the plugin PHP and fixing it to point to the wpurl as you stated. THANK YOU. JOEyGADGET
yeah.. that bit of code is in the plugin php file itself. Glad to have helped out. I emailed the author and he said it’ll be included in the next release
Leave a Comment