Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi I am having the same error:

    Error: failed to find /home3/leeannap/public_html/wp-content/themes/theme2063/bootstrap/less/bootstrap.lesslessphp fatal error: load error: failed to find /home3/leeannap/public_html/wp-content/themes/theme2063/style.less

    I am trying to find/delete those cache files but am not sure where or how to do so. Could you point me in the right direction? Do I go into Appearance, Editor, and delete lines of code in there?

    #frustrated and wishing I hadn’t switched to a new host right about now.

    Did you ever solve your problem? I am having the same issue. I found the below to help but can’t figure out how to find and delete these files. Any help?

    —-
    You need to delete your .cache files for .less files. Here is where mine were located:

    For Cherry Framework itself:

    less/bootstrap.less.cache

    less/style.less.cache

    Then inside my child theme (this may be different for you, but find the .cache files and delete them if you’re getting errors):

    theme root/style.less.cache

    bootstrap/less/bootstrap.less.cache

    Without deleting these files, your site will look for the .less related files and style sheets inside the old site file structure, which obviously will not work

    Forum: Fixing WordPress
    In reply to: Broken Page Link
    Thread Starter LeeAnna

    (@leeannap)

    Figured out which plug-in was messing up the page. It was “Connections”. Deleted it. Thank you for your help though!

    Forum: Fixing WordPress
    In reply to: Broken Page Link
    Thread Starter LeeAnna

    (@leeannap)

    Yes, it’s using full width FAQ template. I just spent the past half hour Googling how to print out my global variables…lol. No success. I have very limited coding knowledge which is why I don’t alter any code in my site.

    I’m thinking one of my recent added plug-ins must have altered something. I’ve been deleting/deactivating with no luck.

    I don’t know where line 28 is…can’t seem to figure out where it’s trying to pull from. The only related php files for this FAQ page is the above and this loop file:

    <?php /* Loop Name: Faq */ ?>
    <?php
    // WPML filter
    $suppress_filters = get_option(‘suppress_filters’);
    if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
    <div id=”post-<?php the_ID(); ?>” <?php post_class(‘page’); ?>>
    <?php the_content(); ?>
    <div class=”clear”></div>
    </div><!–#post–>
    <?php endwhile;
    //query
    $temp = $wp_query;
    $wp_query = null;
    $args = array(
    ‘post_type’ => ‘faq’,
    ‘showposts’ => -1,
    ‘suppress_filters’ => $suppress_filters
    );
    $wp_query = new WP_Query($args);

    if (have_posts()) : ?>
    <dl class=”faq-list”>
    <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
    <dt class=”faq-list_h”>
    <h4 class=”marker”><?php echo theme_locals(“q”); ?></h4>
    <h4><?php the_title(); ?></h4>
    </dt>
    <dd id=”post-<?php the_ID(); ?>” class=”faq-list_body”>
    <h4 class=”marker”><?php echo theme_locals(“a”); ?></h4>
    <?php the_content(); ?>
    </dd>
    <?php endwhile; ?>
    </dl>
    <?php else: ?>
    <div class=”no-results”>
    <?php echo ‘<p>‘ . theme_locals(“there_has”) . ‘</p>’; ?>
    <p><?php echo theme_locals(“we_apologize”); ?> /” title=”<?php bloginfo(‘description’); ?>”><?php echo theme_locals(“return_to”); ?> <?php echo theme_locals(“search_form”); ?></p>
    <?php get_search_form(); /* outputs the default WordPress search form */ ?>
    </div><!–no-results–>
    <?php endif;
    $wp_query = null;
    $wp_query = $temp;
    ?>

    Forum: Fixing WordPress
    In reply to: Broken Page Link
    Thread Starter LeeAnna

    (@leeannap)

    Thanks for the responses!

    It is a template file and then I have a page that directs to the template:

    <?php
    /**
    * Template Name: FAQs
    */

    get_header(); ?>

    <div class=”motopress-wrapper content-holder clearfix”>
    <div class=”container”>
    <div class=”row”>
    <div class=”<?php echo cherry_get_layout_class( ‘full_width_content’ ); ?>” data-motopress-wrapper-file=”page-faq.php” data-motopress-wrapper-type=”content”>
    <div class=”row”>
    <div class=”<?php echo cherry_get_layout_class( ‘full_width_content’ ); ?>” data-motopress-type=”static” data-motopress-static-file=”static/static-title.php”>
    <?php get_template_part(“static/static-title”); ?>
    </div>
    </div>
    <div class=”row”>
    <div class=”<?php echo cherry_get_layout_class( ‘full_width_content’ ); ?>” id=”content” data-motopress-type=”loop” data-motopress-loop-file=”loop/loop-faq.php”>
    <?php get_template_part(“loop/loop-faq”); ?>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>

    <?php get_footer(); ?>

    did you find a solution @vstamilan? i need a autoheight solution for my site https://www.leeannapham.com

    i don’t like the scrolling.

Viewing 6 replies - 1 through 6 (of 6 total)