empulse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Oh No! What Have I done?!jlevandowski:
I had been messing with the url, and upon review I did find that you were correct. I left the www out.. So I manually edited the dbase, but I’m still getting the same result… Its almost like I don’t even have wordpress installed…When I attempt to goto ../wpress/wp-admin/, it kicks me to the “Nothing Found” search page…. ( http://www.redlinedesigngroup.com/wp-login.php?redirect_to=http%3A%2F%2Fwww.redlinedesigngroup.com%2Fwpress%2Fwp-admin%2F&reauth=1)
What gives?!?
PS:
Thanks a ton for your assistance. I’m beside myself here.Forum: Fixing WordPress
In reply to: single-{custom}.php helpDavid, thanks for your quick response!
Shortly after I posted this I found the info I was seeking. Here is a link for anyone that may come through here looking for a solution later on:
Single Post Templates by Category
Regards,
BrandonForum: Plugins
In reply to: [NextGEN Scroll Gallery] Display caption – description insted of title?I’m currently trying to figure this out as well… I wish I knew how to make it display “Title” and then directly below it “Desc”.
If anyone is up and around and might be able to give me help, I’d appreciate it!
Forum: Fixing WordPress
In reply to: Display Post Date, but not as a link… ??Solved myself…
<ul> <?php global $post; $args = array( 'numberposts' => 5, 'offset'=> 1, 'category' => 1 ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>works perfectly for doing this. Anyone who runs into this issue can find more info here, under “Post Lists with Offset”.
Thanks again alchymyth!
Forum: Fixing WordPress
In reply to: Display Post Date, but not as a link… ??<span> works perfectly… Nice and clean. Thank you =)
This is where I’m at
<?php $args = array( 'numberposts' => 3, 'category' => 7,); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a> <span><?php the_date(); ?></span></h2> <?php the_excerpt();?> <?php endforeach; ?>Now I know I’m abusing having your attention. . . . But while I got it, I figure I’d ask my last question in regards to this project… Currently this is returning the last 3 posts and excerpting each of them. How would I go about ONLY excerpting the newest post, but still pulling in the previous 2 titles/dates without and excerpt? The things I’ve tried don’t work… Granted I know nothing about php.
Thanks again for all your help, even if you can’t answer this last question. I’m grateful!
Forum: Fixing WordPress
In reply to: Display Post Date, but not as a link… ??alchymyth; what would be the proper way to add space between the_title and the_date…. Judging from your post using is not proper.
~ Brandon
Forum: Fixing WordPress
In reply to: Display Post Date, but not as a link… ??Found the error, thanks alchymyth =)
I just had to close the hook with the_permalink and the_title.
For anyone running into this in the future, this code works fine for me.
<?php $args = array( 'numberposts' => 2, 'category' => 7,); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a> <?php the_date(); ?></h2> <?php the_excerpt();?> <?php endforeach; ?>Forum: Fixing WordPress
In reply to: Strange Division Appearing on my Front Page….Moderator: Sorry about that =)
Here is the template that the pictured page is generated from. http://pastebin.com/VuPFbdD7
Can someone please offer me some advice or guidance?
Forum: Fixing WordPress
In reply to: Strange Division Appearing on my Front Page….And incase it will help, here is the template that page was generated from:
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: Alignment Issues in FirefoxOh. My. God.
Thank you kmessinger. I’ve spent so much time fiddling with my css and all sorts of random crap, and never even thought it would be something like that.
Thank you so much. I feel like an idiot.
Humbly,
BrandonForum: Fixing WordPress
In reply to: Post Pics appearing in wrong place in FirefoxI’ve spent a bunch of time playing with your suggestion, Kostas. . . . No luck though. =(
Anyone else have any input? Advice? Support?
Thanks for any help you can give me!
Forum: Fixing WordPress
In reply to: Help removing all sidebar and footers from Full Page PostsSo I just found where it’s all going down. . . single.php
When I delete the lines everything goes away that I want gone. I can’t def do that. . . Easy fix =)
But for the sake of preservation, is there an easy way to comment things out in the WP editor? //, #, and /* seem to all be unrecognized and appear on my page like normal text.
Forum: Fixing WordPress
In reply to: Call to undefined function get_header()Chip,
I feel like an idiot. Of course! I appreciate your assistance and lack of ridicule.Thank you kindly!
BrandonForum: Fixing WordPress
In reply to: Call to undefined function get_header()Chip: I am. . . I guess this is where my problem exists… Again, keep in mind I have very little clue what I’m doing (my apologies!), but I assumed I could link directly to
ie: mydomain.com\wp-content\themes\press.phpMy knowledge is basic html where
<a href="/wp-content/themes/MaybeMarquis/press.php" class="grey-white">PRESS</ul></div>would work. . . . How would I go about to linking to press.php from my index.php??