Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter jonjaxproductions

    (@jonjaxproductions)

    A “free” theme with no support is worth exactly what you paid for it – zip! If you want an less problematic life, get a theme that offers support.

    So, kmessinger, seeing as you are the moderator and had taken down my recent post that described my situation in a clearer light: What solution do you actually offer? Your previous post did nothing to offer any intelligence on my problem nor help to elicit response from any forum user who

      actually

    has the knowledge I seek. The response of “If you want an less problematic life, get a theme that offers support.” is a cheap way of avoiding the problem I have due to the face that you don’t know the solution. My opinion is that if you don’t have any real advice to offer, don’t post on the forum. But thanks for link to the article on posting code. Once again, here is the php form I need help with, for anyone who can help me find a way to get a cleaner search result page:

    <?php get_header(); ?>
    
    <div class="eleven columns ">
    <div id="content" >
    
    <div class="subtitle">
    <p> <?php $mySearch =& new WP_Query("s=$s & showposts=-1"); $num = $mySearch->post_count; echo $num.' search results for '; the_search_query();?> in <?php get_num_queries(); ?> <?php timer_stop(1); ?> seconds.</p>
    </div>
    
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    
    <article class="post" id="post-<?php the_ID(); ?>">
    <div class="title">
    <h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
    </div>
    
    <div class="postmeta">
    <span class="author">Posted by <?php the_author(); ?> </span> <span class="clock"> <?php the_time('M - j - Y'); ?></span>
    </div>
    
    <div class="entry">
    <?php wpe_excerpt('wpe_excerptlength_index', ''); ?>
    <div class="clear"></div>
    </div>
    </article>
    <?php endwhile; ?>
    
    <?php getpagenavi(); ?>
    
    <?php else : ?>
    
    <div class="post"><div class="title">
    <h4>Your search - <?php the_search_query();?> - did not match any entries.</h4>
    </div>
    
    <div class="entry">
    <p>Suggestions:</p>
    
        Make sure all words are spelled correctly.
        Try different keywords.
        Try more general keywords.
    
    </div>
    </div>
    
    <?php endif; ?>
    
    </div>
    </div>
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Thread Starter jonjaxproductions

    (@jonjaxproductions)

    Cool! Thanks kmessinger you are awesome!

    Thread Starter jonjaxproductions

    (@jonjaxproductions)

    Actually that isn’t the right Orion template, I am using the one listed here https://www.web2feel.com/orion/. I have tried contacting the developer but to no avail. I got the search bar to look good in the header but I still have one issue; the search.php form results look bad and don’t include hyperlinks or any styling. Any idea how to fix this? This is the website I’m working on:
    https://americanhoperadio.com/

    Here is my search.php code:

    Current Search.php
    <?php get_header(); ?>

    <div class=”eleven columns “>
    <div id=”content” >

    <div class=”subtitle”>
    <p> <?php $mySearch =& new WP_Query(“s=$s & showposts=-1”); $num = $mySearch->post_count; echo $num.’ search results for ‘; the_search_query();?> in <?php get_num_queries(); ?> <?php timer_stop(1); ?> seconds.</p>
    </div>

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <article class=”post” id=”post-<?php the_ID(); ?>”>
    <div class=”title”>
    <h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
    </div>

    <div class=”postmeta”>
    <span class=”author”>Posted by <?php the_author(); ?> </span> <span class=”clock”> <?php the_time(‘M – j – Y’); ?></span>
    </div>

    <div class=”entry”>
    <?php wpe_excerpt(‘wpe_excerptlength_index’, ”); ?>
    <div class=”clear”></div>
    </div>
    </article>
    <?php endwhile; ?>

    <?php getpagenavi(); ?>

    <?php else : ?>

    <div class=”post”><div class=”title”>
    <h4>Your search – <?php the_search_query();?> – did not match any entries.</h4>
    </div>

    <div class=”entry”>
    <p>Suggestions:</p>

    • Make sure all words are spelled correctly.
    • Try different keywords.
    • Try more general keywords.

    </div>
    </div>

    <?php endif; ?>

    </div>
    </div>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Thread Starter jonjaxproductions

    (@jonjaxproductions)

    Yes I am sure. I couldn’t find it on WordPress either, it may be discontinued? But it came up on Google here

    Thread Starter jonjaxproductions

    (@jonjaxproductions)

    I am currently using orion

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