jaymenyc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WordPress CMS HELP!@stvwlf: thx 4 the help ill take a look it seems like exactly what im looking for.. just gotta figure out how to get the images
@songdogtech: Shut the fuck up. How’s my grammar now?
Forum: Themes and Templates
In reply to: More than 1 Editible Area in a Page?Ill post the code below..
<div id="content" class="span-24 clearfix"> <div id="aboutleft" class="span-16"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php edit_post_link('Edit This.', '<span>', '</span>'); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php endwhile; endif; ?> </div> <div id="aboutright" class="span-8 last" </div>
This is everything between my header and footer..
the “aboutleft” div has a small description thats where the content is so so its editable.. the “aboutright” div is where i would like to add a picture but I would want it to be editable with new pictures.. thats y I would want 2 places to edit linksForum: Fixing WordPress
In reply to: 3 Questions about Posts and PagesI’ve thought of categories, but it adds “/category/projects” instead of “/projects”.. What I’m trying to do is use wordpress as a CMS so the projects page would be posts, and then when the post is clicked it goes into the subpage “site.com/projects/project01” When I goto Settings -> Reading and set the “Posts Page” to “Projects” it just displays my homepage with some extra stuff..
Forum: Plugins
In reply to: Best/Easiest way to upload images?whata an Add Media option?
Forum: Themes and Templates
In reply to: More than 1 Editible Area in a Page?u have to be logged in to see the “Edit” links so whats posting the url going to do? on a page there is 1 “Edit” link.. is there a way I can add another “Edit” link to the other column of text..
Forum: Fixing WordPress
In reply to: WordPress or WordPress MU?thx!
Forum: Plugins
In reply to: Release Date PluginThx Dgold! myTreasures seems the closest to what I’m looking for so I’ll have to test it out when I have more time.
You also solved another problem I had which was implementing an external countdown timer into wordpress but the first link you listed is exactly what I was tryin to do ??
thx agn
Forum: Themes and Templates
In reply to: Hiding div comments appear in if there are 0 commentsThx!
I replaced
<div class="commentcontainer floatfix"> <?php if ($comments) : ?>
with
<?php if($comments || 'open' == $post->comment_status || 'open' == $post->ping_status) echo '<div id="commentcontainer floatfix">'; ?>
and I got this
Parse error: syntax error, unexpected T_ELSE in /home2/gamer/public_html/wp-content/themes/xu/comments.php on line 44
Forum: Fixing WordPress
In reply to: “Home” in menu page linking to www.site.comAfter testing this some more it actually removes the posts from the page. Is there another way to do this and keep the latest posts on the front page? It’s for a blog, but I just need the “Home” link at the top where I have Home, About, Contact to actually link to https://www.site.com instead of https://www.site.com/home
Forum: Fixing WordPress
In reply to: “Home” in menu page linking to www.site.comthx!
Forum: Fixing WordPress
In reply to: “Home” in menu page linking to www.site.comcan any1 help?