Forum Replies Created

Viewing 15 replies - 1 through 15 (of 34 total)
  • Thread Starter baemiller

    (@baemiller)

    Woo 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!

    Thread Starter baemiller

    (@baemiller)

    Okay, 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?

    Thread Starter baemiller

    (@baemiller)

    HELP!!!! 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!

    Thread Starter baemiller

    (@baemiller)

    Yes, 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.

    Thread Starter baemiller

    (@baemiller)

    Just 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. : )

    Thread Starter baemiller

    (@baemiller)

    One 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?

    Thread Starter baemiller

    (@baemiller)

    LOL I am learning that the key to all this is patience.

    Thread Starter baemiller

    (@baemiller)

    Just 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.

    Thread Starter baemiller

    (@baemiller)

    I 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?

    Thread Starter baemiller

    (@baemiller)

    Thank 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!

    Thread Starter baemiller

    (@baemiller)

    Yes, 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!

    Thread Starter baemiller

    (@baemiller)

    It 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 &ndash; 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&rarr;', '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( __( '&laquo; Previous Page', 'it-l10n-BuilderChild-Foundation' ) ); ?></div>
                <div class="alignright"><?php next_posts_link( __( 'Next Page &raquo;', '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
    
    }
    Thread Starter baemiller

    (@baemiller)

    Thank 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!

    Thread Starter baemiller

    (@baemiller)

    I don’t see an #END WordPress. Is it not necessary?

    Thread Starter baemiller

    (@baemiller)

    I 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.

Viewing 15 replies - 1 through 15 (of 34 total)