jamieb7210
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Gallery – how to use Large instead of Full image size?I found (an) answer to this.
The Cleaner Gallery plugin allows you to set lots of gallery options:Default gallery settings
Display size images by ___.
Images should link to by ___.
Galleries should be ordered by by ___.
Display gallery images in order by ___.
(These settings may be overriden for individual galleries.)Image caption settings
Completely remove image captions (overrules other caption settings).
Use the image title as a caption if there is no caption available.
Link captions to the image attachment page.Script and style settings
Load the Cleaner Gallery stylesheet (used to format galleries).
Load the Thickbox JavaScript (included with WordPress).
Load the Thickbox stylesheet (included with WordPress).External image script
Select an image script to use with your galleries.
(dropdown of 17 popular jQuery image plugins, including PrettyPhoto ??Hopefully someday this control is included in core WP installs!
Forum: Fixing WordPress
In reply to: how to find wordpress version?Perfect! Thank you!
I figured it out. I called the fields individually then put in a conditional to check if the field is filled in. Here is the code below in case anybody needs it.
ok, what is the more complex way?
is there a way to write a new function that I can call, that excludes the title and meta perhaps?Forum: Themes and Templates
In reply to: Search Results page is outputting h1 tags for each listingthis is the search.php page.
Forum: Themes and Templates
In reply to: Search Results page is outputting h1 tags for each listingHere is the template information; can you tell me what exactly I need to edit to make the title of each search result display in an h2 tag?
<header class="page-header"> <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyeleven' ), '<span>' . get_search_query() . '</span>' ); ?></h1> </header> <?php twentyeleven_content_nav( 'nav-above' ); ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?>
Forum: Themes and Templates
In reply to: Search Results page is outputting h1 tags for each listingI’ve never used that before; can you tell me how I would change it so that it only affects the search results and not all of the pages?
Forum: Themes and Templates
In reply to: Search Results page is outputting h1 tags for each listingtwenty eleven
That’s basically what I have right now. But the_content is pulling in the title, so what I have now is the title, the thumbnail, then the title again, the body, the meta etc. Is there a way to just get the body out of a post and not have to call the_content at all? or is there a better way to do this? i apologise I dont have much experience doing this.
Forum: Plugins
In reply to: Display Excerpts with Thumbnails for Child Pages of Current PageHi Chris, can you doublecheck that code? Some of the syntax is wrong I believe in the echo?