Michelle Langston
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Navigation problem – suspect Vista??Works fine on my system. Glad the problem is fixed. Whew! 🙂
Forum: Fixing WordPress
In reply to: Navigation problem – suspect Vista??Ah, I know how frustrating these things can be! Ok, if you haven’t changed .htaccess then I don’t think that’s the problem…
Try deactivating each of your other plugins one at a time (besides WP e-commerce) to see if any of those are causing a conflict.
Also, is your version of WP E-Commerce current (e.g. has it been tested to work on 3.0.1)?
Forum: Fixing WordPress
In reply to: Simple questionThe default theme Twenty-Ten has what you are looking for. You could open up the Twenty-ten css and copy the comment styles over to your stylesheet. 🙂
Forum: Fixing WordPress
In reply to: Navigation problem – suspect Vista??I’m using Mac OS 10.6.3, with Firefox, and I get the problem when I try to go to any sub-level page and any of your store pages. The top-level pages (except for the online store page) all load fine.
Hmm…maybe there is a server redirect issue here. What shopping cart plugin are you using? Did you change anything in .htaccess? What have you got your home page set to the WordPress preferences? Did you change anything with the DNS?
The same issue happens in Safari as well.
Ideas:
1.If you have any plugins install, deactivate each of them one at a time to see if any of them are causing the problem.
2. You could try reinstalling WordPress (fresh install, fresh database) and see if that fixes the problem.Forum: Themes and Templates
In reply to: white text on white backgroundTaking a glance at your CSS, it looks like the color of your body text has been changed to white. Doesn’t the Atahualpa theme have a CSS editor? Find the body {} declaration and change the color from #FFFFFF to #000000. That should fix it!
Forum: Themes and Templates
In reply to: Problem With WP-PageNavi Plugin On P2 ThemeGlad you got it sorted out! 🙂
Forum: Themes and Templates
In reply to: Why is theme name in __()'s and _e()'s and similar ?Yes, they have to do with localization. The theme name is the “text domain” and basically it’s used to help the GetText system know what the scope of the translation is and to group everything together. The text domain doesn’t have to be the theme name but it’s commonly the theme name for simplicity’s sake.
This nice guide will answer a lot of your questions regarding the GetText functions _e and __() as well:
Forum: Themes and Templates
In reply to: Problem With WP-PageNavi Plugin On P2 ThemeHmm…some ideas to try:
1. Did you go to WP-Admin -> Settings -> PageNavi to configure PageNavi? Is there an option to turn it on and off?
2. Check to see if your theme is using query_posts() correctly: http://scribu.net/wordpress/wp-pagenavi/right-way-to-use-query_posts.html
Forum: Themes and Templates
In reply to: Error message cannot log inYou need an FTP client (such as FileZilla). Are you in touch with the person who set up the site for you? Ask him/her to either give you FTP access (they need to give you the FTP user name, FTP password and domain name) or go in there themselves and fix it.
EDIT: Yes, do what Samuel B says, that’s a good suggestion!
Did you work through all of the Atahualpa theme options? If not, then that’s probably the issue. The folks at the BytesForAll forums may be able to help you out more, though. 🙂
Forum: Themes and Templates
In reply to: Error message cannot log inHmm, looks like your theme is trying to access a function that does not exist. What version of WordPress are you running?
Do you have FTP access to your site? Go to wp-content/themes and delete the folder of the theme you just installed.
Forum: Themes and Templates
In reply to: Problem With WP-PageNavi Plugin On P2 ThemeAdd this code:
<?php wp_pagenavi(); ?>After <div class=”clear”></div>
So your code would look like this:
<?php /** * @package WordPress * @subpackage P2 */ ?> <div class="clear"></div> <?php wp_pagenavi(); ?> </div> <!-- // wrapper --> <div id="footer"> <p> <?php echo prologue_poweredby_link(); ?> <?php printf( __( 'P2 theme by %s.', 'p2' ), 'Automattic' ); ?> </p> </div> <div id="notify"></div> <div id="help"> <dl class="directions"> <dt>c</dt><dd><?php _e( 'compose new post', 'p2' ); ?></dd> <dt>j</dt><dd><?php _e( 'next post/next comment', 'p2' ); ?></dd> <dt>k</dt> <dd><?php _e( 'previous post/previous comment', 'p2' ); ?></dd> <dt>r</dt> <dd><?php _e( 'reply', 'p2' ); ?></dd> <dt>e</dt> <dd><?php _e( 'edit', 'p2' ); ?></dd> <dt>o</dt> <dd><?php _e( 'show/hide comments', 'p2' ); ?></dd> <dt>t</dt> <dd><?php _e( 'go to top', 'p2' ); ?></dd> <dt>l</dt> <dd><?php _e( 'go to login', 'p2' ); ?></dd> <dt>h</dt> <dd><?php _e( 'show/hide help', 'p2' ); ?></dd> <dt>esc</dt> <dd><?php _e( 'cancel', 'p2' ); ?></dd> </dl> </div> <?php wp_footer(); ?> </body> </html>Forum: Installing WordPress
In reply to: Joomla and WordPressCorrect me if I’m wrong, but WordPress works best on a unix/linux server. Not sure how smoothly it will run in a Windows environment. I’m also not sure if WordPress will run in any other database besides MySQL. Can’t speak for Joomla though!
But yes, installing them in separate folders in your web space shouldn’t be a problem at all. And you can give each installation its own database or they can share a single database.
Forum: Themes and Templates
In reply to: Problem With WP-PageNavi Plugin On P2 ThemeAre you sure the plugin is activated and is showing up in the installed plugins list? What version of WordPress are you using? Is the plugin compatible with the version of WordPress you’re using?
Can you paste the code of your footer.php file here?
Forum: Themes and Templates
In reply to: Problem With WP-PageNavi Plugin On P2 ThemeWell, you need to add that code to your theme’s footer.php file or else the plugin won’t show up.