baemiller
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Remove MultisiteWoo hoo! I fixed it all by my little self. Seems I somehow managed to NOT save the changes to the .htaccess and wp-config files when editing. Duh! Thanks for all the help, Andrea!
Forum: Networking WordPress
In reply to: Remove MultisiteOkay, I restored my database, leaving the .htaccess and wp-config files I already corrected the same. I got the site back, but the SuperAdmin is still there? Any suggestions?
Forum: Networking WordPress
In reply to: Remove MultisiteHELP!!!! I followed directions then went in to log-in to WP admin and got “Error Establishing Database Connection.” Luckily, I backed everything up before changing. What next? Thanks again!
Forum: Themes and Templates
In reply to: importing Blogger into myMag theme – no picsYes, it had to do with the Featured Images in the ithemes theme I was using. I had to designate each picture as a featured image.
Forum: Networking WordPress
In reply to: Remove MultisiteJust to clarify, I added it after installing multisite. So, is it considered a sub-site, or since it is the first and only 1 installed is it considered the main site? I don’t need to back-up and reimport or anything?
Thanks again. Sorry for the newbie question. : )
Forum: Networking WordPress
In reply to: Remove MultisiteOne more question…what do I do with the 1 blog I already have installed that I want to keep as my main blog? And do I have to reinstall any of the plugins, or will they stay put?
Forum: Networking WordPress
In reply to: Remove MultisiteLOL I am learning that the key to all this is patience.
Forum: Networking WordPress
In reply to: Remove MultisiteJust within the one blog. I only have one site active, but had intentions of others later. I just set it up as Multisite for later use.
I have been in contact with the ithemes guys, and they are aware of the bug but no idea on a fix or timeframe yet.
Forum: Networking WordPress
In reply to: Remove MultisiteI actually said that wrong. It is a plug-in not a theme. I have a plug-in from iThemes that allows me to post scrolling blog posts from specified categories and apparently it is having problems with the Multisite feature. Unless you can suggest another plug-in that would do the same feature?
Forum: Fixing WordPress
In reply to: Can't Edit Certain Pages and other Quirky ProblemsThank you. I find the plug-in that is the culprit. It is a paid one through my iThemes account, and they are working on it. I so appreciate the help!
Forum: Fixing WordPress
In reply to: Individual Category Posts on Separate PagesYes, the one response I have received said that it should be automatically done by WordPress, but obviously it isn’t working. I have put in another response to them and am waiting. Thanks for trying to help!
Forum: Fixing WordPress
In reply to: Individual Category Posts on Separate PagesIt is supposed to work just like standard WordPress. I have the Builder theme from iThemes. But when I go to any category directory it just takes me back to my home page. See this link.
https://hungryhappyhealthy.com/category/recipes
I also tried setting up a page for the category, but all it gives me is the title and doesn’t pull any posts onto it.
https://hungryhappyhealthy.com/category/fitness
Here is my archive.php file:
<?php function render_content() { global $posts; ?> <?php if ( have_posts() ) : ?> <h4 class="page-title"> <?php the_post(); if ( is_category() ) { // Category Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-BuilderChild-Foundation' ), single_cat_title( '', false ) ); } else if ( is_tag() ) { // Tag Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-BuilderChild-Foundation' ), single_tag_title( '', false ) ); } else if ( is_tax() ) { // Tag Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-BuilderChild-Foundation' ), builder_get_tax_term_title() ); } else if ( is_day() || is_time() ) { // Day-Specific Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-BuilderChild-Foundation' ), get_the_time() ); } else if ( is_month() ) { // Month-Specific Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-BuilderChild-Foundation' ), get_the_time( 'F Y' ) ); } else if ( is_year() ) { // Year-Specific Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-BuilderChild-Foundation' ), get_the_time( 'Y' ) ); } else if ( is_author() ) { // Author Archive $title = sprintf( __( 'Author Archive for %s', 'it-l10n-BuilderChild-Foundation' ), get_the_author() ); } else { // Default catchall just in case $title = __( 'Archive', 'it-l10n-BuilderChild-Foundation' ); } if ( is_paged() ) printf( '%s – Page %d', $title, get_query_var( 'paged' ) ); else echo $title; rewind_posts(); ?> </h4> <?php while ( have_posts() ) : // The Loop ?> <?php the_post(); ?> <div <?php post_class(); ?>> <!-- title, meta, and date info --> <div class="title clearfix"> <div class="post-title"> <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> </div> <div class="author-meta"> <?php printf( __( 'by %s', 'it-l10n-BuilderChild-Foundation' ), '<span class="meta-author">' . builder_get_author_link() . '</span>' ); ?> </div> <div class="post-meta"> <span class="month"><?php the_time( 'F' ); ?></span> <span class="day"><?php the_time( 'j' ); ?><span class="day-suffix"><?php the_time( 'S' ); ?></span><span class="day-comma">,</span></span> <span class="year"><?php the_time( 'Y' ); ?></span><br /> </div> </div> <!-- "Read More" link --> <div class="post-content"> <?php the_content( __( 'Read More→', 'it-l10n-BuilderChild-Foundation' ) ); ?> </div> <!-- categories, tags and comments --> <div class="meta-bottom clearfix"> <div class="alignleft"><span class="categories"><?php printf( __( 'Categories %s', 'it-l10n-BuilderChild-Foundation' ), get_the_category_list( ', ' ) ); ?></span><br /> <?php do_action( 'builder_comments_popup_link', '<span class="comments">', '</span></div>', __( 'Comments %s', 'it-l10n-BuilderChild-Foundation' ), __( '(0)', 'it-l10n-BuilderChild-Foundation' ), __( '(1)', 'it-l10n-BuilderChild-Foundation' ), __( '(%)', 'it-l10n-BuilderChild-Foundation' ) ); ?> </div> </div> <!-- end .post --> <?php comments_template(); // include comments template ?> <?php endwhile; // end of one post ?> <!-- Previous/Next page navigation --> <div class="paging clearfix"> <div class="alignleft"><?php previous_posts_link( __( '« Previous Page', 'it-l10n-BuilderChild-Foundation' ) ); ?></div> <div class="alignright"><?php next_posts_link( __( 'Next Page »', 'it-l10n-BuilderChild-Foundation' ) ); ?></div> </div> <?php else : // do not delete ?> <?php do_action( 'builder_template_show_not_found' ); ?> <?php endif; // do not delete ?> <?php }
Forum: Fixing WordPress
In reply to: 2 htaccess files and can't seem to combineThank you, thank you! Worked like a charm. I am just learning all this. Can you tell? : ) Trying to learn PHP, WordPress, Apache, HTML, AND CSS all at the same time is an overwhelming task. I so appreciate people like you who are willing to help others learn. Thanks again!
Forum: Fixing WordPress
In reply to: 2 htaccess files and can't seem to combineI don’t see an
#END WordPress
. Is it not necessary?Forum: Fixing WordPress
In reply to: 2 htaccess files and can't seem to combineI guess my concern is that it will somehow mess up the network options by having the rewrite rules in a separate file. So far it seems to be working. I guess I’m being anal because I thought there was only supposed to be one file, but every time I try to merge them I get the 500 Error again. I don’t want to get down the road setting up the network and have a problem. I guess I’ll leave it as is for now until I see another problem. Thanks for all the help.