Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    Figured it out, a plugin that had been removed, still had a htacccess file over riding my images. I discovered it by using chrome’s developer tools which showed 404 error and somehow (I can’t remember already) I connected it to webp express plugin, which was not active/installed. I reinstalled plugin and voila! old images work& I can upload images.

    I am having this problem as well. As far as I can tell I have no compatibility issues anymore, and the site looks right on mobile, but cannot do anything because the menu won’t open….

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    I am back up and running!! WordPress files must have been damaged some how.

    I backed up my child theme files. And uploaded new wordpress. I then uploaded new theme files and changed my child theme back (no more _old). and I am back up and running. I have to re add plugins back, but Ill do that one at a time in case there are any problems there.

    Thanks for your help!!

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    okay I’ll get started thanks.

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    Would it work to export my wp-content files and wp-config.php and completely redo wp and then upload those back in?

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    If I change the name on the child theme to _old then I get a message that “The theme directory “florence-child” does not exist.”

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    I still have no access to wp-admin though. I get a white page when I try.

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    by changing the name on the florence theme the child theme seems to take over a and the website site sort of works again. https://www.thesolarfri.com but I am obviously, missing a lot of structure. So I guess its my theme thats broken?

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    I should also mention i have disabled all plugins by changing name to plugins_old. I uploaded new class-wp-list-table.php. I also uploaded new class-tgm-plugin-activation.php file.

    I dont understand what (include_path=’.:/opt/cpanel/ea-php56/root/usr/share/pear’) means.

    Line 1164-1165 looks like :
    if ( ! class_exists( ‘WP_List_Table’ ) ) {
    require_once ABSPATH . ‘wp-admin/includes/class-wp-list-table.php’;
    }

    I would also like to do this. Only 4 widgets is very limiting. I am also searching for the answer to additional widgets.

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    I tried again and made sure that I did step 4, but I what I was also missed were steps 5 & 8… But that is okay, because I just changed the URL right in the database. That was much simpler.

    Thank-you!

    Thread Starter Kelsey Kesler Piche

    (@keslerpiche)

    Never mind I figured It out. searched the “Word press blank page of death” and found this website: https://www.smashingmagazine.com

    Read and found the error message I was getting “FATAL ERROR: CANNOT REDECLARE” and what it meant: “This usually means that you have included a file twice. Check everywhere you have edited and check included files to make sure you haven’t duplicated an include.”

    Followed the file path in the error message, opened the file using text editor and removed the duplicate code then saved.

    My website & WordPress works again!

    Should be able to go into Onetone Options > Header > Top Bar Options and the first selection is “Display Top Bar” choose no, save and it should be gone.

    I also have this problem. I want to show the excerpts on the category and blog pages, full article on the post page, and only show date, article title and photo on front page.

    My front page is a page with sections, and I am using Magee short code to display recent posts in 3 sections and I want all 3 to hide the entry-summary.

    So far I have added the .entry-summary { display: none; } to my CSS to hide it, but this also means the entry summaries are hidden on my blog page and category pages.

    Website is soakupthesun.co – I am looking for the PHP coding to hide the entry-summary on the front page. Below is my current untouched content.php code – YES i have a child theme, just no knowledge on PHP.

    <?php
    $format = get_post_format();
    $formats = get_theme_support( 'post-formats' );
    $archive_content   = onetone_option('archive_content','content');
    ?>
    <div class="entry-box-wrap" id="post-<?php the_ID(); ?>">
                                            <article <?php post_class("entry-box"); ?> role="article">
                                            <?php if (  has_post_thumbnail() ): ?>
                                                <div class="feature-img-box">
                                                    <div class="img-box figcaption-middle text-center from-top fade-in">
                                                        <a>">
                                                            <?php the_post_thumbnail();?>
                                                            <div class="img-overlay dark">
                                                                <div class="img-overlay-container">
                                                                    <div class="img-overlay-content">
                                                                        <i class="fa fa-link"></i>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </a>
                                                    </div>
                                                </div>
                                                <?php endif;?>
                                                <div class="entry-main">
                                                    <div class="entry-header">
                                                        <a>"><h1 class="entry-title"><?php the_title();?></h1></a>
                                                        <ul class="entry-meta">
                                                            <li class="entry-date"><i class="fa fa-calendar"></i><a>"><?php echo get_the_date("M d, Y");?></a>
                                                            <li class="entry-author"><i class="fa fa-user"></i><?php echo get_the_author_link();?>
                                                            <li class="entry-catagory"><i class="fa fa-file-o"></i><?php the_category(', '); ?>
                                                            <li class="entry-comments"><i class="fa fa-comment"></i><a>#comments"><?php  comments_popup_link( __('No comments yet','onetone'), __('1 comment','onetone'), __('% comments','onetone'), 'comments-link', '');?></a>
    
                                                    </div>
                                                    <?php if ( is_search() ) : // Only display Excerpts for Search ?>
                                                    <div class="entry-summary">
                                                        <?php the_excerpt(); ?>
                                                    </div><!-- .entry-summary -->
                                                    <?php else : ?>
                                                    <div class="entry-content">
                                                      <?php if (  $archive_content =='content' ) : // Only display Excerpts for Search ?>
                                                        <?php the_content( ); ?>
                                                         <?php else : ?>
                                                         <?php the_excerpt(); ?>
                                                          <?php endif; ?>
    
                                                        <?php wp_link_pages( array( 'before' => '<div class="page-links">', 'after' => '</div>', 'link_before' => '<span class="active-link">', 'link_after' => '</span>' ) ); ?>
                                                    </div><!-- .entry-content -->
                                                    <?php endif; ?>
                                                    <div class="entry-footer">
                                                        <a>" class="entry-more pull-right"><?php _e("Read More","onetone");?> >></a>
                                                    </div>
                                                </div>
                                            </article>
                                        </div>
Viewing 14 replies - 1 through 14 (of 14 total)