antoniop
Forum Replies Created
-
Forum: Your WordPress
In reply to: can I get feedback/criticism on my siteAhh its all better right now…Still kind of numb…going to eat with my girl and have drinks 🙂 Hopefully I don’t drool on myself.
Forum: Your WordPress
In reply to: can I get feedback/criticism on my siteThanks…Will do try to tackle the validation errors tonight. Might not be able to, going to get a root canal 0_o
Forum: Your WordPress
In reply to: can I get feedback/criticism on my siteI think its because I had some troubles with it. I was using fireftp to transfer the files to my theme directory when I noticed that it was deleting files, so I had to find my backups.
What? Can’t see any code?
Hey Moshu, thanks. I’m sure it can be done this way, as I’ve come across this guys blog at http://www.daimos.de that uses this same method for the actual blog entries. I’m trying to learn css right now, its just that I’ve got a full plate on my hands. Is there anyone that could show me the basic code for something like this? Can someone give me a quick rundown of the css styling that I wlll need, and the html that I’ll need to place into my singlesidebar.php
Thanks
These are the 3 images that I am working with.
http://www.atriskstoriesofhope.com/wordpress/wp-content/themes/default/images/cboxfeedtop.jpghttp://www.atriskstoriesofhope.com/wordpress/wp-content/themes/default/images/cboxfeedmiddle.jpg
http://www.atriskstoriesofhope.com/wordpress/wp-content/themes/default/images/cboxfeedbottom.jpg
Forum: Themes and Templates
In reply to: question about rss feedsAlso, can anyone give me ideas on how to structure the feeds visually, as to not create too much commotion on the posts?
Forum: Themes and Templates
In reply to: Custom sidebars for category templates?This is from category-3.php
<?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> </div> <?php include(TEMPLATEPATH."/podcastsidebar.php"); ?> <?php get_sidebar('podcastsidebar.php'); ?> <?php get_footer(); ?>You know what, maybe I did something pretty stupid…was I supposed to change TEMPLATEPATH to the actual directory?
oh and my podcastsidebar.php is an exact copy of sidebar.php if thats of any help.
Antonio
Forum: Themes and Templates
In reply to: Custom sidebars for category templates?ok, I tried this and I got double the sidebar in my podcast category page.
http://www.atriskstoriesofhope.com/wordpress/category/podcast
Forum: Fixing WordPress
In reply to: moving wp to root messing with the rest of site loading up properly?I want to have my wp installation at the root, as I’ve heard that its better for seo to have it up front, rather than in a subfolder. I’ve also heard that its easier for google to index.
Any people have a work around or suggestions on this?
Forum: Themes and Templates
In reply to: Putting posts on a page…above the loop…missing comments, etc.I was going about this all the wrong way. Alls I had to do was to save index.php as category3.php. Then when I loaded http://www.atriskstoriesofhope.com/category/podcast I got my category page with all of the podcasts post.
lesson to all, search for answers…it helps 🙂
Forum: Themes and Templates
In reply to: Putting posts on a page…above the loop…missing comments, etc.NOTE: I replaced the loop in page.php with the loop from index.php. Now it shows all of the comments, etc. and all of the formatting on the posts just like in the homepage. The only problem is when I try to click on one of the post titles, I get a blank page.
http://www.atriskstoriesofhope.com/wordpress/what-is-the-number-one-question-in-education
If I log into admin>manager>edit post>view post, I still get a blank page.
This is the two bits of code. The first one is from index.php and the second one is from page.php I’m kind of at a loss right here. Is it possible that I can take all of the code of the loop from index.php and replace the loop in page.php. I’m sure I will have to add some more code to only display the posts from my podcast category.
Thanks
<?php if (is_page(23) ) { query_posts("cat=3"); } ?> </small> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this page » '); ?> <?php wp_link_pages(array('before' => '<strong>Pages:</strong> ', 'after' => ' ', 'next_or_number' => 'number')); ?> </div> </div> <?php endwhile; endif; ?><?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <!-- <?php if(function_exists("wjt_diggThisPost" )) wjt_diggThisPost();?>--> <img src="../images/feed.png" />Subscribe via RSS <img src="../images/email.png" />Subscribe via Email <!-- ADDTHIS BUTTON BEGIN --> <script type="text/javascript"> addthis_pub = 'antoniop'; addthis_logo = 'http://www.addthis.com/images/yourlogo.png'; addthis_logo_background = 'EFEFFF'; addthis_logo_color = '666699'; addthis_brand = 'www.atriskstoriesofhope.com'; addthis_options = 'favorites, email, digg, delicious, myspace, facebook, google, live, more'; </script> <a href="http://www.addthis.com/bookmark.php" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s9.addthis.com/button1-share.gif" width="125" height="16" border="0" alt="" /></a> <script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script> <!-- ADDTHIS BUTTON END --> <?php if(function_exists('wp_email')) { email_link(); } ?> <?php if(function_exists('wp_print')) { print_link(); } ?> <img src="../images/comments.png" /><?php the_tags('Tags: ', ', ', ''); ?><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?><?php edit_post_link('Edit', '', ' '); ?> <hr size = 5/> </div> <?php endwhile; ?>Forum: Plugins
In reply to: Adding posts to a categoryWow, thank you so freaking much. This little bit of code was all that I needed. When you go to http://www.atriskstoriesofhope.com/wordpress/talk-story-podcast you can see the two posts that I have in the podcast category (category 3). The only problem is that it does not have the same fomatting as the normal blog posts, ie, not clickable links, no comments, etc. Any idea on the code that I need to add to get these back?
Forum: Themes and Templates
In reply to: Get posts based on page title?I’m trying to do the same exact thing. Let me know when you get this working by email me @ [email protected]
This might be of help (its a plugin) – you might also need a plugin called something like category inheritor – think its mentioned on the page below. My understanding with this plugin is that after you activate the plugin you have to name the template something like cat-#.php (where # is the category you want to display).
http://guff.szub.net/2005/07/21/post-templates-by-category/
I’ve been trying to do this for a couple of days.
Forum: Plugins
In reply to: Creating horizontal lines between posts?Where is the loop located? i.e. what file do I need to edit