Wordpress is RUINING my business! PLEASE HELP!

Discussion in 'WordPress' started by henryhavoc, Aug 5, 2007.

  1. #1
    Okay I have a blog (link in my sig) that I sell ads on. I need to find some way to make it so that when a user goes to the categories, they can only see post links, not descriptions. It's killing my business because they see all the content and not the ad at the bottem. So they dont bother clicking, just reading straight from the categories page. Is there some way to fix this? Please help me!
     
    henryhavoc, Aug 5, 2007 IP
  2. Colbyt

    Colbyt Notable Member

    Messages:
    3,224
    Likes Received:
    185
    Best Answers:
    0
    Trophy Points:
    210
    #2
    There is a template out there that will let you plant the adds between the posts. Right at this minute I can not recall the name of it.
     
    Colbyt, Aug 5, 2007 IP
  3. MaryMary

    MaryMary Prominent Member

    Messages:
    1,982
    Likes Received:
    559
    Best Answers:
    0
    Trophy Points:
    310
    #3
    I think it's mightyadsense
     
    MaryMary, Aug 5, 2007 IP
  4. MyAwesomeBlog

    MyAwesomeBlog Peon

    Messages:
    23
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You probably need to edit the category.php file in your theme editor.. I could probably do it for you for a small fee. PM if interested..
     
    MyAwesomeBlog, Aug 5, 2007 IP
  5. Nipon

    Nipon Peon

    Messages:
    17
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Wordpress is fully customisable. Why should it ruin you? :)
    You can control it as you want.

    Instead of showing entire post show only the excerpt or simply just the title as you have said. You have to edit category.php file in your theme folder.

    The example code below will show only excerpt - it uses
    <?php the_excerpt(','); ?>
    PHP:
    instead of
    <?php the_content("<br />" . "continue reading&nbsp;" . "&quot;" . the_title('', '', false) . "&quot;"); ?>
    PHP:
    <div class="post_meta" id="post-<?php the_ID(); ?>">
    
    <div class="post_title">
    <div class="post_permalink">
    <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
    <span class="author">Posted By: <?php the_author_posts_link(); ?>&nbsp;<?php edit_post_link(__(' Edit'), '|', ''); ?></span>
    <span class="category">Permalink in <?php the_category(', ') ?></span>
    <?php if(function_exists("UTW_ShowTagsForCurrentPost")) : ?>
    <span class="category"><?php UTW_ShowTagsForCurrentPost("commalist", array('last'=>' and %taglink%', 'first'=>'tag in %taglink%',)) ?></span>
    <?php endif; ?>
    </div>
    <div class="post_date"><p class="days"><?php the_time('j'); ?></p><p class="month"><?php the_time('M'); ?></p></div>
    </div>
    
    <div class="post_content"><?php the_excerpt(','); ?></div>
    <div class="post_commented"><a href="<?php comments_link(); ?>"><?php comments_number('no comment','1 comment','% comments'); ?></a></div>
    </div>
    PHP:
    Or you may simply show the title by not displaying the post content. exclude the line of php that calls post content.

    Codes shown here are for example. it will not look exactly like your theme code. but things are same more or less. use ur common sense and u ll know.

    by the way, aren't you showing ads on ur category archive page? u can do that by inserting ad code in category.php
     
    Nipon, Aug 6, 2007 IP
    arpitagarwal82 likes this.
  6. arpitagarwal82

    arpitagarwal82 Notable Member

    Messages:
    2,996
    Likes Received:
    398
    Best Answers:
    0
    Trophy Points:
    280
    #6
    It seems Nipon has given a good solution.

    In case you don't want to edit the code ( or you are uncomfortable editing it) you can download some theme which only shows post title in categories by default.

    An example of that is theme which am using in my blog. http://www.meetarpit.com. Its a simple widget ready theme, and its download page link and credits are in footer.
     
    arpitagarwal82, Aug 6, 2007 IP
  7. henryhavoc

    henryhavoc Banned

    Messages:
    252
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I have no category.php file in my theme folder or theme editor. And theres no download link for the template arp gave me.
     
    henryhavoc, Aug 6, 2007 IP
  8. Nipon

    Nipon Peon

    Messages:
    17
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #8
    ok let us know what files you have in your theme. probably you have an archive.php which you need to edit
     
    Nipon, Aug 6, 2007 IP
  9. arpitagarwal82

    arpitagarwal82 Notable Member

    Messages:
    2,996
    Likes Received:
    398
    Best Answers:
    0
    Trophy Points:
    280
    #9
    Ok Sorry.. I thought you will be able to search it out by theme name and author site (both are in footer) :D

    Here is the theme page.
    http://themes.wordpress.net/columns/3-columns/1419/nonzero-green/

    ENJOY.
     
    arpitagarwal82, Aug 6, 2007 IP
  10. henryhavoc

    henryhavoc Banned

    Messages:
    252
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Here are the files I have:

    And here is my archives.php file:

    <?php
    /*
    Template Name: Archives
    */
    ?>
    
    <?php get_header(); ?>
    
    <div id="content" class="widecolumn">
    
    <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    
    <h2>Archives by Month:</h2>
      <ul>
        <?php wp_get_archives('type=monthly'); ?>
      </ul>
    
    <h2>Archives by Subject:</h2>
      <ul>
         <?php wp_list_cats(); ?>
      </ul>
    
    </div>	
    
    <?php get_footer(); ?>
    
    PHP:
    What do I need to edit? I'd rather keep my template =]
    Thankyou so much!
     
    henryhavoc, Aug 6, 2007 IP
  11. Nipon

    Nipon Peon

    Messages:
    17
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #11
    No need to edit archives.php you need to edit archive.php

    in case ur theme does'nt have archive.php then according to the hierarchy wordpress ll look in index.php - in that case u have to edit index.php

    by the way, why not give a link to the theme so that i can download and have a look at it.

    ur site is the one in ur sig? i dont think it is using wordpress
     
    Nipon, Aug 6, 2007 IP
  12. Edynas

    Edynas Peon

    Messages:
    796
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #12
    you mean copy archive.php and rename it into catgory.php

    You might think of having a seperate home.php following the same idea or use the exerpt example that Nipon said
     
    Edynas, Aug 7, 2007 IP
  13. henryhavoc

    henryhavoc Banned

    Messages:
    252
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #13
    I changed my site and now I'm just using a template XD
    Thanks tho.
     
    henryhavoc, Aug 7, 2007 IP