prettysenshi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not listing entriesI have the blog on another page. Its not supose to be styled. I use the php include on my main site.
Forum: Fixing WordPress
In reply to: Paragraph Breakwhat do you mean you can use css to place the text?
Forum: Fixing WordPress
In reply to: breaks in commentsI’ve tried the <br> inbetween the comment paragraphs, it just doesn’t work.
Forum: Fixing WordPress
In reply to: Protected Password EntriesAnybody?
Forum: Fixing WordPress
In reply to: Protected Password EntriesIts it its own directory. I have the main directiony, then I have a sub directory, which is wp so on wp my home page is https://akiraka.com/wp
Forum: Fixing WordPress
In reply to: Protected Password Entriesbecause I have an index.php page https://akiraka.com the blog doesn’t begin till https://akiraka.com/indexx.php index.php is my splash page o.o
Forum: Fixing WordPress
In reply to: Protected Password Entriesanybody?
Forum: Fixing WordPress
In reply to: Comment ProblemI posted this at the very bottom of fuctions.php
function comment_plugger($show = 0, $limit = 0, $sep = ‘, ‘, $none = ‘ none’) {
global $wpdb, $tablecomments, $id;
$cid = ($show) ? ($id – 1) : $id;
$request = “SELECT DISTINCT comment_author_url, comment_author FROM $tablecomments”;
$request .= ” WHERE comment_post_ID=’$cid’ AND comment_author <> ” AND comment_author_url <> ””;
$request .= ‘ ORDER BY comment_author ASC’;
$request .= ($limit > 0) ? “LIMIT $limit” : ”;
$commenters = $wpdb->get_results($request);
if ($commenters) {
$output = ”;
foreach ($commenters as $commenter) {
if (!empty($commenter->comment_author_url)) {
$output[] = ‘comment_author_url.'” title=”‘.$commenter->comment_author.'”>’.$commenter->comment_author.’‘;
}
}
}
if (is_array($output)) {
echo implode($sep, $output);
} else {
echo $none;
}
}Forum: Plugins
In reply to: codergurl’s hacksI installed the comment hack, and was wondering if there is a way to include people with email addresses.
Forum: Fixing WordPress
In reply to: CommentsNEVER MIND! I figured it out!
Forum: Fixing WordPress
In reply to: How do I?scrollbar? I completely deleted wp-layout.css, I just edited the vars.php file, and paragraph break is gone!
Forum: Fixing WordPress
In reply to: How do I?did what happen?