Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Had the same problem. then spoke with itthinx.com (great guys, brilliant service and some awsome plugins). They just helped me out.
    the solution to the ‘not searching’ was easy activate the permalinks. I changed mine from defualt to posts and it started working. The back link is a bit more difficult so for the momment you can add entryback=”” to your shortcode and this should loose the link. you users can then defer to the back button or you could add a back html button to the template. although i dont know what template. If anyone else figures this bit out let me know.

    The white text is just a css issue can be resolved by opening.
    wp-content/plugins/business-directory-plugins/css/wpbusdirmann.css/
    search for line #lco .title input
    and change color: #ffffff to colour:#000000 for black.

    I am just trying to get the search to actually work does your search actually produce results?

    Forum: Plugins
    In reply to: Codex query
    Thread Starter gavdo

    (@gavdo)

    Problem sorted. The original coding was done using $ commands so i removed all of these and substituted them for the standard wordpress coding <?php query_posts('cat=4&showposts=15&paged='.$paged); ?><ul class="latest-posts"><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    thank you for your assistance alachymyth

    Forum: Plugins
    In reply to: Codex query
    Thread Starter gavdo

    (@gavdo)

    Hi alchymyth
    When i implimented the change I get a syntex error blank page display Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ‘)’ in /home/phat/public_html/wp-content/themes/theme1122/page_home.php on line 30. 30 is the modified line
    It is definately the right template as i have been changing various elements on it.
    The site is http://www.cre8ivdesign.co.uk and the template operates directly on the front page controling the image grid.

    Forum: Plugins
    In reply to: Codex query
    Thread Starter gavdo

    (@gavdo)

    Thanks for that. I have tried it but to no avail.
    If you have anymore suggestions I would love to try them.
    Got to go for a while but will check back in 3hrs or so.

    Forum: Plugins
    In reply to: Codex query
    Thread Starter gavdo

    (@gavdo)

    pastebin URLfor full code.

    small snippet below

    <?php $loop = new WP_Query(array( 'post_type' => 'post', 'orderby' => 'post_date', 'order' => 'DESC', 'posts_per_page' => 15)); ?>
    
    <?php if ($loop->have_posts()): ?>
    
    <?php while ($loop->have_posts()): $loop->the_post(); $posts_counter++; ?><?php
    global $more; $more = 0;
    ?>

    Forum: Plugins
    In reply to: Codex query
    Thread Starter gavdo

    (@gavdo)

    OK I have not used pastebin before. I have the embed codes but how do i get it to display here in the forum?

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