calsnoboarder
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Remove category pages titles that appear before posts?How to Remove Category Titles When Using An Artisteer-created Theme:
Don’t know if this was ever resolved, but here is a fix that isn’t a css fix (though I suggest you make a copy of original files so you can recover if something goes horribly awry).
Artisteer creates a php file called archive.php.
Open that file and scroll down until you find these line:
echo '<h4>'. single_cat_title( '', false ) . '</h4>'; echo category_description();Just comment them out like so:
//echo '<h4>'. single_cat_title( '', false ) . '</h4>'; //echo category_description();The category titles will no longer appear on the category pages.
Forum: Themes and Templates
In reply to: Moving all meta data on to one line?Nice! Thanks so much Gary… I had actually done something like this earlier, but i somehow copied the entire code from AFTER into the BEFORE (including the ‘footer’), which caused my template to break… I don’t know how I missed that! Thanks again for all your patience and help! Marking this as closed… you rock!
Forum: Themes and Templates
In reply to: Moving all meta data on to one line?They do have support, but it only deals with the application itself and not the actual WP files. I have looked for a php file with an html structure, thinking the same way you are about how to go about editing the files to accomplish this… but I can’t seem to get it…
I apologize for the wild goose chase, but if you have a moment and you want to look at my files as they are in the zip, here is a link to the download
Forum: Themes and Templates
In reply to: Moving all meta data on to one line?Content-single.php is:
<?php /** * * content*.php * * The post format template. You can change the structure of your posts or add/remove post elements here. * * 'id' - post id * 'class' - post class * 'thumbnail' - post icon * 'title' - post title * 'before' - post header metadata * 'content' - post content * 'after' - post footer metadata * * To create a new custom post format template you must create a file "content-YourTemplateName.php" * Then copy the contents of the existing content.php into your file and edit it the way you want. * * Change an existing get_template_part() function as follows: * get_template_part('content', 'YourTemplateName'); * */ global $post; theme_post_wrapper( array( 'id' => theme_get_post_id(), 'class' => theme_get_post_class(), 'title' => theme_get_meta_option($post->ID, 'theme_show_post_title') ? get_the_title() : '', 'heading' => theme_get_option('theme_single_article_title_tag'), 'before' => theme_get_metadata_icons('date,author', 'header'), 'content' => theme_get_content(), 'after' => theme_get_metadata_icons('category,tag', 'footer') ) ); ?>Forum: Themes and Templates
In reply to: Moving all meta data on to one line?content.php has:
<?php /** * * content*.php * * The post format template. You can change the structure of your posts or add/remove post elements here. * * 'id' - post id * 'class' - post class * 'thumbnail' - post icon * 'title' - post title * 'before' - post header metadata * 'content' - post content * 'after' - post footer metadata * * To create a new custom post format template you must create a file "content-YourTemplateName.php" * Then copy the contents of the existing content.php into your file and edit it the way you want. * * Change an existing get_template_part() function as follows: * get_template_part('content', 'YourTemplateName'); * */ global $post; theme_post_wrapper( array( 'id' => theme_get_post_id(), 'class' => theme_get_post_class(), 'thumbnail' => theme_get_post_thumbnail(), 'title' => '<a href="' . get_permalink( $post->ID ) . '" rel="bookmark" title="' . strip_tags(get_the_title()) . '">' . get_the_title() . '</a>', 'heading' => theme_get_option('theme_'.(is_single()?'single':'posts').'_article_title_tag'), 'before' => theme_get_metadata_icons( 'date,author', 'header' ), 'content' => theme_get_excerpt(), 'after' => theme_get_metadata_icons( 'category,tag,comments', 'footer' ).'<br><br><img class="aligncenter size-full wp-image-74" title="separator_img" src="http://wptest.gadgetwebdesign.com/wp-content/uploads/2012/03/separator_img.png" alt="" width="819" height="10" />' ) ); ?>Forum: Themes and Templates
In reply to: Moving all meta data on to one line?Sorry to be such a pain, but I must be missing something… nothing in the single.php code suggests that the metadata is called there…
<?php /** * * single.php * * The single post template. Used when a single post is queried. * */ get_header(); ?> <div class="art-layout-wrapper"> <div class="art-content-layout"> <div class="art-content-layout-row"> <div class="art-layout-cell art-content"> <?php get_sidebar('top'); ?> <?php if (have_posts()){ /* Display navigation to next/previous posts when applicable */ if (theme_get_option('theme_top_single_navigation')) { theme_page_navigation( array( 'next_link' => theme_get_previous_post_link('ยซ %link'), 'prev_link' => theme_get_next_post_link('%link ยป') ) ); } while (have_posts()) { the_post(); get_template_part('content', 'single'); /* Display comments */ if ( theme_get_option('theme_allow_comments')) { comments_template(); } } /* Display navigation to next/previous posts when applicable */ if (theme_get_option('theme_bottom_single_navigation')) { theme_page_navigation( array( 'next_link' => theme_get_previous_post_link('ยซ %link'), 'prev_link' => theme_get_next_post_link('%link ยป') ) ); } } else { theme_404_content(); } ?> <?php get_sidebar('bottom'); ?> <div class="cleared"></div> </div> </div> </div> </div> <div class="cleared"></div> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: Moving all meta data on to one line?The problem I am having is the client has no idea how big the images she’ll post will be… and she most definitely does not want any extra white space around the images if it can be avoided. Since she is now ok with the normal posting layout (post title with meta data underneath, then content) my only real issue now is trying to get ALL the meta data on one line… so it appears like this:
POST TITLE GOES HERE
Published March 10, 2012 | By Admin | Posted in Uncategorized | 1 Comment(with the normal css attributes applied to the text as shown in my current build).
Forum: Themes and Templates
In reply to: Moving the page elements aroundClosing this thread and opening a new one to ask about moving all the metadata into one line.
Forum: Themes and Templates
In reply to: Moving the page elements aroundWell, that didn’t work out and I convinced my client that since she’ll have different sized (height) images in her blog, it would be easier if she didn’t try to change the positioning so much…
But is it possible to move JUST the “Posted in Uncategorized | 1 Comment” line to sit right next to the “Published March 10, 2012 | By Admin” ?
So all the meta data is on one line?
Forum: Themes and Templates
In reply to: Moving the page elements aroundOops… maybe not ๐
I notice that now the placement of the post title, metadata, and post icon lines get all goofed up if the image is not the exact size. And on created pages, the title doesn’t show up (which is no biggie since that can be faked with H2 tags)
See: http://wptest.gadgetwebdesign.com/
The first post at the top is fine (with the image being 550px)… but subsequent posts where the image is NOT at least 550px high, the post title does not appear in the correct space.
Is there a way to automatically place the post title and other two lines (postheadericon, postfooter icons, etc) to fall automatically below the content area?
Forum: Themes and Templates
In reply to: Moving the page elements aroundWooot! Thanks so much… played around with Firebug for Chrome and I’m able to adjust all my elements. Thank you so much for all your help!
Forum: Themes and Templates
In reply to: Moving the page elements aroundSweet! Thanks… though I notice when I go to the post page (by clicking on the title) the comments rise too high and it gets crowded (i fixed that by adjusting the margin on art-postmetadatafooter) and the image rises all the way to the top of the sheet:
http://wptest.gadgetwebdesign.com/?p=23
What would I edit to make sure the image still has some white space above it on the single post page (http://wptest.gadgetwebdesign.com/?p=23) ?
Forum: Themes and Templates
In reply to: Moving the page elements aroundIn case even that wasn’t clear, this is what I am trying to accomplish:
http://wptest.gadgetwebdesign.com/wp-content/uploads/2012/03/fakescreen.gif
I did this in photoshop based on my current design.
Forum: Themes and Templates
In reply to: Moving the page elements aroundThanks Gary… I apologize if I wasn’t being clear… This is the development site:
http://wptest.gadgetwebdesign.com/
What I want to do is move the portion of each post above the image (the title and date/author lines) below the image. Moved right above the “Posted in Uncategorized | Leave a comment” line.
Is that possible, and what files would I edit (and what blocks of code would I move if any) to accomplish this?
Forum: Themes and Templates
In reply to: Moving the page elements aroundAny help with this layout problem? Any pointers by WP pros would be appreciated…