Rentringer
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Bug Strings translations time format not updateThe author has already fixed the bug :
https://github.com/polylang/polylang/issues/94
You can edit the plugin file until the release of the next version :
https://github.com/polylang/polylang/commit/a8de1fb94d828985e097d3465ff4c9f37cc80f2d
Regards,
RobertoForum: Plugins
In reply to: [Magic Fields 2] PHP Notice: Undefined index: div_classResolved:
Edit mf_posttype.php on line 92 and add key “div_class” in array “quantity”
‘quantity’ => array(
‘id’ => ‘posttype-quantity’,
‘type’ => ‘checkbox’,
‘label’ => __( ‘Quantity’, $mf_domain ),
‘name’ => ‘mf_posttype[core][quantity]’,
‘value’ => 0,
‘description’ => __( ‘mark true if you want your post type only has one element.’, $mf_domain ),
‘div_class’ => ”
)Forum: Fixing WordPress
In reply to: Single post template for custom taxonomies?Hi! look this…
add_filter('single_template', 'single_template_terms'); function single_template_terms($template) { foreach( (array) wp_get_object_terms(get_the_ID(), get_taxonomies(array('public' => true, '_builtin' => false))) as $term ) { if ( file_exists(TEMPLATEPATH . "/single-{$term->slug}.php") ) return TEMPLATEPATH . "/single-{$term->slug}.php"; } return $template; }Hello, thanks for the new solution.
I hope to use your plugin in my next multilangue sites.Congratulations for the excellent plugin!
Forum: Plugins
In reply to: Uploading Images in Widget FormUse this…
Plugin Name: Image Widget
Plugin URI: http://ww.wp.xz.cn/extend/plugins/image-widget/
Description: Simple image widget that uses native WordPress upload thickbox to add image widgets to your site.