LostInNetwork
Forum Replies Created
-
Forum: Plugins
In reply to: Democracy 2What rules does your themes CSS apply on < label > ?
And on < LI > and < UL > and < FORM > ?Forum: Plugins
In reply to: Democracy 2I’m using Chameleon
http://webgazette.co.uk/web-design/wordpress-themes/chameleon/I have ONLY used Democracy 2 on a static page or as a widget.
Have you looked at the page source? Do you see the div class=’democracy’and the list below that?
Forum: Plugins
In reply to: Post security extensions?You should also look at the “Role Manager” plugin and the “Category Visibility” plugin. Together they are a powerfull combo. Role Manager lets you define groups of readers if you want (like public, member, inner circle or public, friends, family…) , and Category Visibility lets you decide what they see.
I know that this works for a small organization, but people are probably using this kind of solution to private blogs, too. I would if I were a private blogger.
Newest version of R-M: http://www.im-web-gefunden.de/wordpress-plugins/role-manager/
Cat Vis: http://ryowebsite.com/?p=46
Haven’t you been here: http://codex.wordpress.org/Plugins/Restriction ?
Look at the alternatives, then install Democracy 2, and let us participate in a fun poll. It might(?) give you some sort of idea of the popularity of these. Or then not.
Forum: Plugins
In reply to: Democracy 2I have Democracy 2.0.1 running on WordPress 2.0.7
No problems.What poll page?
I created an empty static page and placed the democracy latest poll tag there. It displays the latest poll very well (or the archives if I wish). I also installed the poll widget in the sidebar.
Check your css.
Forum: Plugins
In reply to: Looking for two pluginsYou want to ask the maker of Event Calendar 3 to include an location field. http://wpcal.firetree.net/
… and a notes field, that could be used to store the artist, the participant, or some other info that users need…
Forum: Plugins
In reply to: ToDo plugin released!… but don’t make the program code TOO complicated too fast.
Forum: Plugins
In reply to: ToDo plugin released!The author name might be a good thing too. WE don’t NEED it for anything, but it is nice to know who added a task. Just in case there is something unclear about the task, and one needs to ask… And beeing responsible for the tasks one submit, is A Good Thing in collaborative blogs, as anonymity would make it easier to flood the list with stupid tasks 🙂
Due time? Hmm… I can see that some people might benefit from that. You should maybe implement the widget first, then priorization/notes/sorting, then due time.
You might want to create a complete table with many many fields that you can activate later. This would minimize the need of risky database table structure changes. Someone will ask for some advanced feature anyway, and it is fun if you only need to use 5 sec to “enable” it instead of redesigning the database and program logic. So, put a bit more db fields and selection/sorting features in the code than you initially publish…
Forum: Plugins
In reply to: ToDo plugin released!A few simple things:
– An update to my request: Comment –> Notes
“Notes” are more general, IMO…– More features:
$type = ‘completed’ // Print tasks on an archive page– More features:
$type = ‘duetoday’ // Show even OLD incomplete tasks
// such as those due yesterday and
// last weekForum: Plugins
In reply to: ToDo plugin released!I hope that I will never see:
Feb-10-2008
Feb-11-2007
Feb-12-2008The MTH-DD-YYYY date format is just presentation, right? Not the actual data written to the database field?
Forum: Plugins
In reply to: ToDo plugin released!I haven’t tried yor plugin yet, but there are three features I would love to see:
1) Comments field (we would use the comments field for the name of the person responsible for the task, and we could add other notes there too)
2) Priority field (numeric 1…5; 1=high, 3=normal, 5=low?)
3) Sorting by any field (object id, task, comment, priority, due date)
I hope that the due date is not a required field for all tasks.
I’ll install this as soon as it gets widgetised.
Forum: Plugins
In reply to: Hide Timestamp, author catagory1) The category, timestamp and posted by are created by some of your themes scripts (yourtheme/post.php, yourtheme/footer.php, …). Find that place.
2) Add an if-then-statement. Something like if $the_ID is not something, then print timestamp etc. Look here for template tags: http://codex.wordpress.org/Template_Tags
The syntax is something like < ? php if ( condition ) action : else_something ? >
Someone else will be able to tell you exactly how that is done.
Forum: Plugins
In reply to: Democracy 2 plugin privacy issue?I must add that while cookies are supposedly only sent back to the respective websites, Wikipedia claims that Javascript can usually access all the cookies and that cookie theft is thus possible (see the end of http://en.wikipedia.org/wiki/HTTP_cookie ) especially in blogs, where people can comment and post html.
So, controlling the content of cookies can be a real concern.
This particular plugin doesn’t use the HttpOnly cookie headers, so it might be vulnerable to cookie theft – unless WordPress takes protective measures against code injection to comments. I do not know WordPress well enough to be sure.
Other vulnerabilities might exist, too, so I would really prefer to remove all references to answers from the cookies. Note, that on a poorly protected shared computer, this could become a problem too.
Forum: Plugins
In reply to: Does Gengo work with the homepage selection?Post bug reports here: jamietalbot.com/wp-hacks/forum
Forum: Plugins
In reply to: Implementing JS Toggle Boxes for the widgets widget works pluginsThanks. I will do that. I don’t have a site of my own, so that pastebin will be usefull. I’ll use it next time.
Forum: Plugins
In reply to: Implementing JS Toggle Boxes for the widgets widget works pluginsIn the code above, extra spaces have been applied around UL and LI elements so that they would be visible in this post.
There is an extra line feed in the middle of the code, because I forgot to “disable” one < LI > element in the middle of a comment line.
Problem solved.