ksks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Appreciate It script/CodeI too would like to know how you resolved this. I’m looking to do the very same thing and I can’t find a script anywhere.
Forum: Themes and Templates
In reply to: help me figure out which text class I’m editing?oh esmi. yes yes yes thank you!
Forum: Fixing WordPress
In reply to: “single” page showing up blankTurns out all I needed was a permalink reset.
Forum: Fixing WordPress
In reply to: Blank pages appear when clicking sidebar linksCould you share which article this was? I’m having the same problem!
Forum: Fixing WordPress
In reply to: “single” page showing up blankAlso I just figured out that all links in the blog area are linking to this blank page and links to anything outside the blog work. (aka twitter)
Forum: Fixing WordPress
In reply to: “single” page showing up blankWell if it helps any…I figured out its somehow linking to the index page of my website. How? Heres the loop code:
‘<?php comments_popup_link(‘No Comments ยป’, ‘1 Comment ยป’, ‘% Comments ยป’); ?></p>’
Forum: Fixing WordPress
In reply to: “single” page showing up blankWell hello again esmi. Glad to see youre the one whos helping me. ๐
But yeah, I switched to default and it links to a blank page. So is there a problem with my loop code?
Forum: Fixing WordPress
In reply to: Appreciate It script/CodeI’d like to know how you figured it out because I too would like this feature. Thanks!
Forum: Fixing WordPress
In reply to: Help integrating website with blogawesome awesome awesome. alright. I think this may be the last question I have. For my sidebar-two.php, I just copied and pasted the contents of the “default” theme’s sidebar.php. I was able to reclassify the headings (Archive, Categories..etc) so that I could manipulate the font, size etc with css. BUT I cant find the code where “Blogroll” is, so I cant manipulate it…I don’t even understand how it even knows its there.
here’s the site: http://www.kicksnarekicksnare.com/blog
<div id="sidebar"> <ul> <?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <li> <?php get_search_form(); ?> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2>Author</h2> <p>A little something about you, the author. Nothing lengthy, just an overview.</p> </li> --> <?php if ( is_404() || is_category() || is_day() || is_month() || is_year() || is_search() || is_paged() ) { ?> <li> <?php /* If this is a 404 page */ if (is_404()) { ?> <?php /* If this is a category archive */ } elseif (is_category()) { ?> <p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p> <?php /* If this is a yearly archive */ } elseif (is_day()) { ?> <p>You are currently browsing the <a>/"><?php echo bloginfo('name'); ?></a> blog archives for the day <?php the_time('l, F jS, Y'); ?>.</p> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <p>You are currently browsing the <a>/"><?php echo bloginfo('name'); ?></a> blog archives for <?php the_time('F, Y'); ?>.</p> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <p>You are currently browsing the <a>/"><?php echo bloginfo('name'); ?></a> blog archives for the year <?php the_time('Y'); ?>.</p> <?php /* If this is a monthly archive */ } elseif (is_search()) { ?> <p>You have searched the <a>/"><?php echo bloginfo('name'); ?></a> blog archives for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p> <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <p>You are currently browsing the <a>/"><?php echo bloginfo('name'); ?></a> blog archives.</p> <?php } ?> </li> <?php }?> </ul> <ul role="navigation"> <li><h3>Archives</h3> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php wp_list_categories('show_count=1&title_li=<h3>Categories</h3>'); ?> <ul> <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <li><h3>Meta</h3> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li> <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php wp_meta(); ?> </ul> </li> <?php } ?> <?php endif; ?> </ul> </div>Forum: Fixing WordPress
In reply to: Help integrating website with blogalright cool, well you knew I’d be back with a question. I want my nav links above the maincontent like they are, but I also want an actual sidebar with the archive and list of categrories and whatnot to the right. My sidebar.php file is already used with the nav links. What do I do??
Forum: Fixing WordPress
In reply to: Help integrating website with blogawesome. thank you so much esmi. except my images aren’t showing up. Even after I made an “images” folder in my theme and referenced them.
Forum: Fixing WordPress
In reply to: Help integrating website with blogAlright, so how would I begin transforming this skeleton layout into a theme? It’s in html format, not php. This tutorial just assumes your file is in php format.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="Shortcut Icon" href="favicon.ico"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> <title> kicksnarekicksnare.com - a melting pot. </title> </head> <body> <div id="wrapper"> <div id="header"><a href="index.html"><img src="ksksbannerwhite.png" border="0"></a></div> <div id="links"><center> <a href="index.htm">music</a> // <a href="index.htm">film</a> // <a href="index.htm">art</a> // <a href="index.htm">photography</a> // <span class="current">blog</span> // <a href="index.htm">about</a> </center></div> <div id="maincontent"> Here's where the posts would go. </div></div> </body> </html>Forum: Fixing WordPress
In reply to: Help integrating website with blogWell I want the posts to show up in the body of my website, I want to give the visitors the ability to make comments on the posts, and I want my sidebar to the right so that they can navigate to older posts. I don’t need a header or a footer. Should I use option A?
Forum: Fixing WordPress
In reply to: Help integrating website with blogI went to both of those websites before I posed this thread. If I knew which of these would work with what I want, or even how to begin trying them, I would’ve tried them already.
Can anyone try to address my questions directly instead of just directing me to other tutorials? I explained my entire situation already hoping someone could tell me what I need to do. I obviously have no idea what I’m doing, so a little bit of patience would be awesome.
Forum: Fixing WordPress
In reply to: Help integrating website with blogAlright cool. So if I take an existing HTML page with my divs, add that code to the top and paste those codes inside the divs, and rename the file index.php everything will be good?