One way to find out which one is your category ID is by going to the dashboard->categories and clicking "Edit" for every category. The URL in your addressbar will then show something like /vanilla/settings/editcategory/ID. That is the ID for that…
Sjoerd or chi1,
You might try changing the js/quotes.js file like I mention above (link), and see if that helps. I don't think it could hurt, anyway.
Actually, that did indeed work. Thanks alot!
Sorry for making a fuss :)
Do you have Firefox with Firebug installed?
No sorry, I'm using Chrome. What would you want me to check if I had had Firefox/Firebug? (I could install it)
2.0.4 will fix this bug. AJAX is basically broken in 2.0.3 with RewriteUrls = FALSE
Updated to 2.0.4, running with RewriteUrls = TRUE, just as I did under 2.0.3. Still having the same problem. None of the other solutions in this thread has helped, e…
@zodiacdm I've already customized the codebase quite some to handle pretty specific needs, so I don't really have the original codebase left, except for the package on the addon site, which means I'm not actively working on it and quite frankly don'…
@Tim
Is getquote.php supposed to be empty? Because it is in the zipfile on the addons site, and that feels like it could be the source of all these problems! :P
My blog mod is very much built around the use of a category, so changing that behaviour would probably be like rewriting the whole thing.. What might be a solution would be using tags, which should be fairly straightforward to add. :)
@Raize
There's a div class called "Blogpost" which you could use. In the stylesheet for your theme, add this:
div.Blogpost {
border-bottom:solid 1px #C4C4C4;
}
I'm sorry I didn't spend more time making styling easier, might be something for a…
Well, if a starting point for blog implementation is what you're looking for, I actually made one yesterday.. :P
http://vanillaforums.org/addon/587/blog
atm, I'm writing it as an application, and I'm close to completion :) I solved it by copying the DiscussionModel into a BlogModel, with an edited "->Get" called "-->GetBlog".
I'll be sure to post it when I'm fully done.
My plan was to keep it as integrated with Vanilla and use the CustomPages plugin for this..
On a side not, I've now gotten progress with simply copying the discussionscontroller+views and making a "blogcontroller", but it's all very hackish and unm…