aeonex
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Another Static page questionIt only takes about 5 minutes to reinstall WP to the root directory. That’s not too much trouble? Instead of making it appear that it’s in the root, I would actually put it in the root :).
Forum: Fixing WordPress
In reply to: Links on a new pageYou can paste the comments.php file you have and I’ll look at it. Sure.
Forum: Fixing WordPress
In reply to: Links on a new pageI see the $comment_author_url as well. What I changed is a little earlier in the document. Near the top you should have something like :
<!-- You can start editing here. --> <?php if ($comments) : ?> <h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3> <ol class="commentlist"> <?php foreach ($comments as $comment) : ?> <li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"> <cite><a href="<?php comment_author_link() ?>" target="_blank"></cite> Says: <?php if ($comment->comment_approved == '0') : ?> <em>Your comment is awaiting moderation.</em> <?php endif; ?> <br />Forum: Fixing WordPress
In reply to: You can’t login — but I can.They have caps-lock on? ๐
Forum: Fixing WordPress
In reply to: Links on a new pageIt’s in your comments.php file. You’ve already custom coded some of your comments.php so it’s going to look a little different. You want to find
<?php comment_author_link() ?>and make it
<a target="_blank" href="<?php comment_author_link() ?>">I’ve tested it on my local machine and it seemed to work.
-Ryan
Forum: Fixing WordPress
In reply to: Links on a new pageMeh it looks like I chose the wrong place to insert that _blank.
This looks like it should work after referencing your site to comments.php. You have some custom things already in your php, but I’m sure you will be able to figure it out with this.
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"> <cite><a target="_blank" href="<?php comment_author_link() ?>"></cite> Says: <?php if ($comment->comment_approved == '0') : ?> <em>Your comment is awaiting moderation.</em> <?php endif; ?> <br />Forum: Fixing WordPress
In reply to: How do I protect my Podcasts?Again you are bringing up another issue. I can’t see anyone that would want to help you after your constant bumping of old threads. One thread bump would have been enough, and would have probably increased the time that you receive a response.
Forum: Fixing WordPress
In reply to: Links on a new pageUzma,
There should be something such as:
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> <label for="url"><small>Website</small></label></p>located in your comments.php.
Changing it to:
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" target="_blank" /> <label for="url"><small>Website</small></label></p>Should fix it.
Hope this helps!
-Ryan
Forum: Fixing WordPress
In reply to: Password Protection For Entire BlogIt’s not necessary to keep bringing up older forum post(s) on the same topics just because you cannot find a solution that will work for you. We all understood from your previous bump (http://wordpress.org/support/topic/137894?) of an older thread that you would like this resolved. Have you attempted to use any of the available plug-in’s yet?
Forum: Fixing WordPress
In reply to: Removing images from WordPress PageJon,
Deleting the images won’t do anything if you’ve made posts already. What you need to do if I’m understanding you right and you want to get rid of :
“November 10th, 2007
Hooking a Bass Fish
Posted in Fishing Tips | No Comments ยป
November 10th, 2007Bass Fish Swimming
Posted in Fishing Tips | No Comments ยป”
is login to your WP-Admin and go to manage–>posts–>delete whichever post(s) you are trying to get rid of.
Your other question for the background wallpaper would involve you finding your CSS file.
Yours is located at:
http://bigger-bass-e-book.com/blog/wp-content/themes/default/style.css
to add a background image to that you would need to find whatever “div” you want to have the background include in (probably body), and add:
background: url (image link);
background-repeat: repeat;to make it look something exactly like :
body {
background: url(image-link.jpg);
background-repeat: repeat;
}Hope this helps some. I would suggest reading over the Word Press documentation before continuing further.
-Ryan
Forum: Fixing WordPress
In reply to: Upload on different HostGiena,
Are you wanting the upload link to upload the file to a different directory on the same host/domain, or are you trying to get the upload button to go to an entirely different host/domain?
-Ryan
Forum: Fixing WordPress
In reply to: Need help & adviceForum: Fixing WordPress
In reply to: pdfAh you are trying to use a built in web application that pulls up via the web browser. I would be pretty careful with these because they tend to have random issues. (user permissions, security settings, etc..) I’ve seen many city jurisdictions use these, and they are disastrous.
Forum: Fixing WordPress
In reply to: Make images full size on printer versionHanni,
I think you could accomplish what you are trying to do by implementing a print.css to define sizes for image sizes when a end user prints the page. It does require a small bit of work depending on if you want different size images, but once it’s setup things should work smoothly. You could do something like :
img {
height: xxxpx;
width: xxxpx;
}you will need to insert :
<link rel="stylesheet" type="text/css" media="print" href="CSS Location" />into your header.php so it knows where to get the settings for the print version.
See ( http://www.alistapart.com/stories/goingtoprint/ )
for more information.
I hope this helps !
-Ryan
Forum: Fixing WordPress
In reply to: Insterting empty line between two categoriesAndrej,
Have you tried:
.cat-item-16 {
padding-top: 30px;
}