5$ Wordpress Theme Edit [NEEDED]

Discussion in 'HTML & Website Design' started by im_savage_rawr, Oct 11, 2008.

  1. #1
    Ok, I have a wordpress theme which has the following files

    comments.php
    footer.php
    functions.php
    header.php
    index.php
    sidebar.php
    style.php

    Ok, the post and category posts view is in the same "page" like if i want to click a category and only see the titles of the post i cant do that because if i take out the "the content" it will also take it out from the posts view and just leave the damn title..

    so what i basically need is you to create a seperate posts.php page for it and integrate it into the theme.

    Please only PM me only if your sure that you can do this and you actually know how to make wordpress themes and edit them properly
     
    im_savage_rawr, Oct 11, 2008 IP
  2. im_savage_rawr

    im_savage_rawr Peon

    Messages:
    529
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Upped to 7$
     
    im_savage_rawr, Oct 12, 2008 IP
  3. mysterylinks

    mysterylinks Banned

    Messages:
    316
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Maybe you should try and explain again in more detail / more precisely what you need. I am English, and great at wordpress coding... but I have no idea what you mean... so if you are looking for a cheap programmer that maybe doesnt have as good a grasp of english you will need to reclarify.
     
    mysterylinks, Oct 12, 2008 IP
  4. donghungx

    donghungx Banned

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    only 7$ not can do anymore, please upto 25$ and i will do it for you, i can design: one of my design attmp3.com
     
    donghungx, Oct 12, 2008 IP
  5. im_savage_rawr

    im_savage_rawr Peon

    Messages:
    529
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Okay, When you click a category I want only the titles of the posts to show.


    Problem:

    The when I take out "the content" it removes it from the post it self so when you click the post it self it only shows the title and not the content..

    So what I need now is someone to integrate into my theme to only view the titles in the archives and category view and not the content but view the content PER single post...

    Does that clarify it?
     
    im_savage_rawr, Oct 12, 2008 IP
  6. scoopy82

    scoopy82 Active Member

    Messages:
    838
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    70
    #6
    I copied some code used in the "archive.php" of one of my WP sites and modified it for your purpose. Try wrapping your current content code like so:
    
    <?php if (is_category()) { ?>
    
    	<h2 class="pagetitle">Archive for the '<?php echo single_cat_title(); ?>' Category</h2>
    
    	<h3 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
    
    <?php } else { ?>
    
    //  CURRENT CONTENT CODE 
    
    	<?php } ?>
    Code (markup):
    Note: Your current content code must be contained within its own set of PHP tags like so: <?php CURRENT CONTENT CODE ?> You may also edit the text in above to suit.
     
    scoopy82, Oct 12, 2008 IP
  7. im_savage_rawr

    im_savage_rawr Peon

    Messages:
    529
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    thanks, the problem has been fixed :)
     
    im_savage_rawr, Oct 16, 2008 IP