spotme10
Forum Replies Created
-
Forum: Plugins
In reply to: wp-shopping-cartI’m sorry, but I have had nothing but problems with the wp-ecommerce plugin. Someone from Instinct contacted me and was helping me for a bit and then I never heard from them again. I uninstalled the plugin and then REinstalled it again only to have the same exact issue (I can’t create a product, nothing happens).
I am going to check out the documentation to see if I can find a solution to my issue because as much as I complain I really trully just want it to work as it says it does because it has so much potential.
I meant to follow up to my last post, jeffbaier solution worked perfectly. It wasn’t his solution that was causing the error on my site.
Sorry. *sheepish grin*
Spoke too soon.
jeffbaier, this leaves a huge error message at the top of the page if no one is logged in.
Oh well… starting from scratch again…
jeffbaier, that worked perfectly for me! Thanks!
Forum: Plugins
In reply to: Random Posts from Single Category in SidebarHi, wondering how I would incorporate your script with the script I am using to create a list of posts with a thumbnail image.
<ul id="candidates"> <?php $postslist = get_posts('category=1&order=ASC&orderby=post_title'); foreach ($postslist as $post) : setup_postdata($post); // check for thumbnail $thumb = get_post_meta($post->ID, 'thumbnail', $single = true); // check for thumbnail class $thumb_class = get_post_meta($post->ID, 'thumbnail-class', $single = true); // check for thumbnail alt text $thumb_alt = get_post_meta($post->ID, 'thumbnail-alt', $single = true); ?> <li> <?php // if there's a thumbnail if($thumb !== '') { ?> <img src="<?php echo $thumb; ?>" class="<?php if($thumb_class !== '') { echo $thumb_class; } else { echo "left"; } ?>" alt="<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>" /> <?php } // end if statement // if there's not a thumbnail else { echo ''; } ?> <h3><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> <?php the_excerpt(); ?></li> <?php endforeach; ?> </ul>
Forum: Fixing WordPress
In reply to: Page Content Not Showing Up!Well… I feel sheepish. I figured it out. Very elementary WP mistake that I should have seen. The loop was duplicated. I don’t know how I managed to have a brain fart and do that, but I did.
Thanks for everyone’s help!
Forum: Fixing WordPress
In reply to: Page Content Not Showing Up!I just tested it with a non-modified version of the default theme and the pages showed up just fine. So despite my constant checking and rechecking there has to be something wrong with my coding.
@egyptian: Yes. They are all necessary. I try to keep them to a minimum as best I can, but it was unavoidable for this particular layout.
@adamrbrown: I will post this afternoon if my last resort testing doesn’t work out.
Fingers crossed.
Forum: Fixing WordPress
In reply to: Page Content Not Showing Up!No, that’s not my question at all.
There are 2 different types of content. Posts and Pages. For some reason it will not show my Pages content.
I’ll give a link to my “Welcome” page.
https://www.housing2008.org/?page_id=2The title says, “Welcome to Housing 2008” but is not showing the content from that page. Instead it shows a list of my posts.
I’ve built several websites using WordPress and this is completely baffling me. I have no idea what I may have done wrong. I keep going back and checking my coding, but it all seems right.
Why does it not work for me then? Argh!
Forum: Fixing WordPress
In reply to: Fatal Error in DashboardProblem is, nothing has been changed in a couple weeks and it was working fine until today. The error has since disappeared with no help from me, and the WordPress feed has returned.
Weird…
Forum: Installing WordPress
In reply to: Disable “Register” link without disabling registrationI’d been looking for the answer to this question too! Thanks!
I just tried to sign in (FF) and got the same “cookie” error. I also had my girlfriend sign in from her computer at work and she got the same error as well.
I’m on Lunarpages (www.lunarpages.com). Not sure what kinds of stats you need about their servers. I know they run MySQL 4+, PHP 4+.
What else do you need to know?
Thanks for helping me out, btw! ??
I tried this solution and it did not work for me. I’m just going to downgrade back to 2.2.
Forum: Themes and Templates
In reply to: Customize comments popup link (images)I can not for the life of me get this to work. It keeps giving me a major error.