andywelch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to show archive of custom post typeFollowing the trail: this post adds some more information:
http://wordpress.org/support/topic/plugin-custom-content-type-manager-where-are-archive-pages?replies=6Forum: Fixing WordPress
In reply to: How to show archive of custom post typeIts a funny one this, because I was using a plugin called custom content type manager – a really cool plugin, http://code.google.com/p/wordpress-custom-content-type-manager/wiki/TemplateFunctions
but it was stopping the archive-product.php template from being used. Planning to have a dig in the plugin code, and do some more research.Thanks, I think that the cimy user extra fields plugin will solve this http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/documentation/
Forum: Fixing WordPress
In reply to: post thumbnail in 2.9.1What, not using…?
I was looking at the comments on Mark Jaquith’s blog and it looks like you can’t get images from urls with this, only from saved images in the media library. If so can you recommend any alternatives that could use url’ed images.
Andy
Forum: Plugins
In reply to: dynamic content gallery and poplarware language switcherFixed it (it’s in the documentation);
I’m using the manual custom field and pages setting for the gallery.
In the dcfg.gallery.constructors.php
find and change as below:
// Display the page title
$output .= “\t” . ‘<h3>’. apply_filters(‘the_title’, $page_found->post_title) .'</h3>’ . “\n”;// Get the description
if( $dfcg_options[‘desc-method’] == ‘manual’ ) {// Do we have a dfcg-desc?
if( get_post_meta($page_found->ID, “dfcg-desc”, true) ) {
$output .= “\t” . ‘<p>’ . apply_filters(‘the_title’,get_post_meta($page_found->ID, “dfcg-desc”, true)) . ‘</p>’ . “\n”;} elseif( $dfcg_options[‘defimagedesc’] !== ” ) {
// Show the default description
$output .= “\t” . ‘<p>’ . stripslashes( $dfcg_options[‘defimagedesc’] ) . ‘</p>’ . “\n”;