Log inUsernamePassword
Log me on automatically each visit    
Register
Register
Log in to check your private messages
Log in to check your private messages
Broobles Forum Forum Index » SimpleTags

Post new topic   This topic is locked: you cannot edit posts or make replies.
Problems with Tags Goto page 1, 2  Next
View previous topic :: View next topic  
Author Message
mtreas
Junior Member


Joined: 28 Jan 2006
Posts: 6

PostPosted: Sat Jan 28, 2006 2:17 am    Post subject: Problems with Tags Reply with quote

Hopefully I can get some help. Using WP2.0 and installed Simpletags 2.0 as well. I followed the instructions as indicted at "http://www.broobles.com/scripts/simpletags/" . What's happening is that the "Tags:" are showing up inline with the text instead of at the bottom of the article. The indicated tags link to the technorati site just fine. My site is at www.treas-tech.com if anyone would like to see an example of the problem.

Thanks in advance for your help.

-Mike
Back to top
View user's profile Send private message
mtreas
Junior Member


Joined: 28 Jan 2006
Posts: 6

PostPosted: Sat Jan 28, 2006 4:44 am    Post subject: Reply with quote

oh BTW, I'm using the Journalized Sand theme if that make a difference. Thanks again for any help.

-Mike
Back to top
View user's profile Send private message
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Sat Jan 28, 2006 4:12 pm    Post subject: Reply with quote

You're also using div class="simpletags" to display the tags, so you should look at your CSS for presentation issues.
Back to top
View user's profile Send private message Visit poster's website
mtreas
Junior Member


Joined: 28 Jan 2006
Posts: 6

PostPosted: Mon Jan 30, 2006 12:17 am    Post subject: Reply with quote

Can you give me a hint as to what I'm looking for? I'm not up to speed with CSS.

Thanks,

-Mike
Back to top
View user's profile Send private message
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Mon Jan 30, 2006 12:25 am    Post subject: Reply with quote

If you are not up to speed with CSS, then you're better off not displaying the tags with CSS. So, instead of using divs, just use something like this:

Code:

$pre_replacement = '<p>Tags: ';
$post_replacement = '</p>';


You will find the $pre_replacement and $post_replacement lines at the start of the simpletags.php file.
Back to top
View user's profile Send private message Visit poster's website
mtreas
Junior Member


Joined: 28 Jan 2006
Posts: 6

PostPosted: Mon Jan 30, 2006 12:45 am    Post subject: Reply with quote

Thanks for your help Ivan, it looks like its still doing the same thing. These are some of the settings I've used and the tags still display the same:

//$pre_replacement = '<p>Tags: ';
//$post_replacement = '</p>';

//$pre_replacement = '<div class="simpletags">Tags: ';
//$post_replacement = '</div>';

$pre_replacement = '<p><small>Tags: ';
$post_replacement = '</small></p>';

//$pre_replacement = '<p>Technorati Tags: ';
//$post_replacement = '</p>';

// $pre_replacement = '<div class="simpletags">Technorati Tags: ';
// $post_replacement = '</div>';

I've even changed themes thinking that may help but to no avail.
Back to top
View user's profile Send private message
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Mon Jan 30, 2006 12:53 am    Post subject: Reply with quote

Very strange. Have you tried it with other posts too? What other plugins do you have installed?
Back to top
View user's profile Send private message Visit poster's website
mtreas
Junior Member


Joined: 28 Jan 2006
Posts: 6

PostPosted: Mon Jan 30, 2006 1:00 am    Post subject: Reply with quote

I have google sitemaps, simpletags, wordpress DB Backup and adsense. I have others but for the sake of troubleshooting, I disabled the others. As far as customizations, I've only configured only within the wordpress dashboard. I wanted to get very comfortable with how everything works before I start tweaking anything.
Back to top
View user's profile Send private message
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Mon Jan 30, 2006 1:09 am    Post subject: Reply with quote

Can you try adding the tags to another post. It's suspicious that the tags appear just after the double quotes.
Back to top
View user's profile Send private message Visit poster's website
mtreas
Junior Member


Joined: 28 Jan 2006
Posts: 6

PostPosted: Mon Jan 30, 2006 5:48 am    Post subject: Reply with quote

I added tags to the word spam on the second article and the same thing happened. Another strange think is that it's hyperlinking the actual word bieng tagged. From what I understand, it's not supposed to. Is this correct?
Back to top
View user's profile Send private message
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Mon Jan 30, 2006 7:46 am    Post subject: Reply with quote

I'm running out of ideas. Two things remain:

1. Have you modified anything else in the code except the pre and post replacement variables?

2. Try turning off all the plugins except SimpleTags and see if that solves the problem. What Adsense plugin are you using?
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Mon Jan 30, 2006 8:01 am    Post subject: Reply with quote

No I haven't modified anything else. I'm using the adsense written by Phil Hord (version 0.1).

Ok, I deactivated everything except for Simpletags and it's still doing the same thing.

I'm not too sure if it's related but I'm also having a problem with the <!--more--> tag. Once I insert it onto my article, any subsequent insertions so not work when the article is viewed. It just shows one complete article.

Could the two problems be related?
Back to top
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Mon Jan 30, 2006 8:25 am    Post subject: Reply with quote

Yes, it might be related. I just double checked SimpleTags on a post with the "More" tag and it worked fine, both with inline tags and with a taglist at the bottom.
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Mon Jan 30, 2006 8:38 am    Post subject: Reply with quote

Ok hopefully this will shed some light on the subject...

[tag]Computer crimes[/tag] - This correctly displays the tag at the bottom of the article as one word.

[tags]Computer crimes[/tags] - This displays Tags: Computer crimes inline with article text.

From what I understand anything within the [tags]....[/tags] should be tagged as individual tagged words. Is this correct?

So should I just use [tag]Computer crimes[/tag] ?

Thanks,

-Mike
Back to top
Ivan
Admin


Joined: 16 Apr 2005
Posts: 340
Location: Belgrade

PostPosted: Mon Jan 30, 2006 6:09 pm    Post subject: Reply with quote

Yes, you should be using [tag]xxx[/tag] in the text. You can have multiple occurrences of these in a post. You should use [tags]xxx, yyy[/tags] only at the end of the post. If in doubt or need more details, please check the example on the SimpleTags page.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    Broobles Forum Forum Index » SimpleTags All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Powered by phpBB © 2001, 2002 phpBB Group
iCGstation v1.0 Template By Ray © 2003, 2004 iOptional