You are not logged in.
Pages: 1
Hello!
I've been getting to know BigTree as I've been building out a site for a client and I have to say - I'm loving it so far!
So, my issue - I'm trying to use the blogging engine included in the example site. For the most part everything works great! However, I can't seem to figure out how to tag the blog posts. The layout files seem to have been built with tagging in mind, but when you go to add a post or edit a post there's no place for tags. Is this something that was never built out or am I missing something?
Offline
You'll need to enable tagging in the module. Head to the developer tab and edit the form for the blog posts. There should be a checkbox to enable tags.
Offline
I believe this is probably a bug in the example site for RC2. In a recent release we changed tags from being enabled by default (and thus more often than not they simply confused end users since they're not often used) to having to be explicitly enabled.
If you go into the developer section and edit the blog module's form for posts you should be able to re-enable tagging there (it should be a checkbox above the field area).
I'll make sure to have this fixed in the next release — thanks for the bug report!
Offline
Thanks to you both! That did the trick.
Offline
Does there need to be a field with a special name to enable tagging? I've enabled it for my module, and I'm seeing it on the form, but any tags I enter aren't saved.
Offline
No special fields are required. Tags are actually a relational system. The "bigtree_tags" table stores the actual tag (as well as metaphone info and a generated route), while the "bigtree_tags_rel" table stores the relationship between the tag and an individual page or module item. A basic SQL join is used to find tagged pages or module items, but you could always write a custom query to find everything related to a specific tag. Check out these tag related functions in the docs to help get you started:
http://www.bigtreecms.org/code-referenc … CMS.getTag
http://www.bigtreecms.org/code-referenc … TagByRoute
http://www.bigtreecms.org/code-referenc … agsForPage
http://www.bigtreecms.org/code-referenc … agesByTags
http://www.bigtreecms.org/code-referenc … agsForItem
http://www.bigtreecms.org/code-referenc … atedByTags
Offline
I know this is an old post, but does anyone have an answer to ashuttl's question? I'm experiencing the same thing: I can enter tags in the module form, but they aren't saved.
Offline
As Ben mentioned above, no special fields are required. The relationship is stored in the `bigtree_tags_rel` table and the different tags are stored in `bigtree_tags`.
Do you see any content in those tables? Also, are you hitting enter after entering each tag (I totally understand this part isn't clear in the process -- we don't use tagging very often in our projects so it's not the most refined UX). You should see something like this after tagging an entry:
Offline
Pages: 1