Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Fixing WordPress
    In reply to: Search results
    Thread Starter MissSearle

    (@misssearle)

    <?php
    /**
     * The template for displaying Search Results pages.
     *
     * @package vantage
     * @since vantage 1.0
     * @license GPL 2.0
     */
    
    get_header(); ?>
    
    <section id="primary" class="content-area">
    <div id="content" class="site-content" role="main">
    
    <?php if ( have_posts() ) : ?>
    
    <header class="page-header">
    <h1 id="page-title"><?php printf( __( 'Search Results for: %s', 'vantage' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    </header><!-- .page-header -->
    
    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>
    
    <?php get_template_part( 'content' ); ?>
    
    <?php endwhile; ?>
    
    <?php vantage_content_nav( 'nav-below' ); ?>
    
    <?php else : ?>
    
    <?php get_template_part( 'no-results', 'search' ); ?>
    
    <?php endif; ?>
    
    </div><!-- #content .site-content -->
    </section><!-- #primary .content-area -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    Forum: Fixing WordPress
    In reply to: Search results
    Thread Starter MissSearle

    (@misssearle)

    I’m unsure what you mean.

    The search bar is a simple search widget I added.

    The products are just images with text underneath.

    Thread Starter MissSearle

    (@misssearle)

    I deactivated all my plugins, then reactivated them one by one.

    Thread Starter MissSearle

    (@misssearle)

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>

    Do you have the above code anywhere?
    I had it in my header, which caused any page with a moving Meta Slider to not work. So i put that code on the only page I needed it, which luckily didn’t have a moving slider.

    My slider now works, once I moved that code.

    Forum: Fixing WordPress
    In reply to: Contact Form
    Thread Starter MissSearle

    (@misssearle)

    I have yes, i quite like contact form 7, but how would I get that exact design for contact form 7?

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