papercuts3
Forum Replies Created
-
Forum: Plugins
In reply to: Subscribe to postsForum: Themes and Templates
In reply to: fixed height theme?You can count the number of words in a text with php explode() function so one can split a post into several layers and then scroll a layer at a time. that would give the sensation of turning pages. But for anything other than text in the post it can be tricky.
I am checking script.aculo.us for a sliding script that’s easy on the eye.
Forum: Fixing WordPress
In reply to: registered user only sidebarconcerning Whitepimp’s suggestion,
What worked for me was this:
<?php global $userdata;
get_currentuserinfo();
if ($userdata->user_level > 0) {
?>….
<?php }
?>If you noticed the if clause is different here. More on this issue here:
http://codex.wordpress.org/get_currentuserinfoCaner
Forum: Everything else WordPress
In reply to: multiple hrsumeSorry I wrote it wrong. I meant to say “… allow every single user make a resume for themselves…”
Forum: Plugins
In reply to: New plugin – UsermetaI have to agree with moshmoney there. For one hell of a useful plugin usermeta/userextra has abysmal support for newbies.
I know some php but I still couldn’t make any sense of the example given above.
I want to make distinct profile pages open to public with selective information. For instance:
author name:
website:
favourite films:
favourite quotations:
etc…On the previous page I want a list of all authors to lead to this page. For example:
Authors:
– John (See complete profile)
– Jane (See complete profile)
– Tarzan (See complete profile)
etc..Can someone spell this out, pleaseeeee.
Forum: Plugins
In reply to: Exclude Category From RSS – Suggestions InvitedI tried this too and it works fine. there is however still something that bugs me.
In the loop where at the top you can see previous and next posts, the invisible post names are still there. When a person who has not logged in clicks the link you get the 404 Error (which is normal). But it’s a pain in the neck to browse. You have to then go back and try to find the next post in order that you can view. One can go through the archives but what if the readers of the post aren’t so smart about it. I think this is something that upsets the smoothness of a blog.
Anyone has any solution for this? Private posts can be blocked out in the archive pages, why not in the individual pages?