Todd Rob
Forum Replies Created
-
Forum: Plugins
In reply to: [Print-O-Matic] Print o matic printing blank page in IE 11I am having the same issue with all versions of IE. All the print pages open fine in all other browsers, but I am getting a page with only my logo appearing up top(from Print Page Top HTML) in IE. I am using WP version 3.5.2 and Printomatic 1.5.5a.
I am using the shortcode and have tried it as [print-me], [print-me do_not_print=”.noprint”], [print-me target=”#post-%ID%”] and [print-me target=”post-%ID%”] with no luck in IE.
An example can be found here: http://thebristal.com/benefits-of-volunteering/
Forum: Fixing WordPress
In reply to: need get posts() to only list 10 per pageThanks vtxyzzy. I used Query posts and I fixed my problem.
Forum: Themes and Templates
In reply to: Show Post from Subcategories on a Category PageThis code will display the title of your sub(child) pages. I hope this helps.
<?php
$mypages = get_pages(‘child_of=’.$post->ID.’&sort_column=post_date&sort_order=ASC’);foreach($mypages as $page)
{?>
<?php echo get_the_title($page->ID) ; ?><?php
}
?>Forum: Fixing WordPress
In reply to: Trouble with Image Rollovers on Child pagesI appreciate your help, Alchymyth. The value is an absolute path. Since it works on a parent page, I think I need to do something in the get_post_custom_values that would get the values from the “page” not the “post”.