Philipp Speck
Forum Replies Created
-
In Accessibility Mode the widget is also called ‘Custom Sidebar’.
Forum: Plugins
In reply to: [WordPress Custom Sidebar] Active but menu item not showing in Admin?This screenshot doesn’t show my plugin. It’s also called ‘Custom Sidebar’ but it’s not from mine.
Forum: Plugins
In reply to: [WordPress Media Tags] Sort ouputForum: Plugins
In reply to: [WordPress Media Tags] Display orderUseful idea! I will think about this and how to add this function.
Forum: Plugins
In reply to: [WordPress Media Tags] Broken loop with MultiEdit PluginYou are right. I will fix this soon. Thanks!
Forum: Plugins
In reply to: [WordPress Meta Robots] No Interface After InstallationForum: Plugins
In reply to: [WordPress Meta Robots] No Interface After InstallationIt’s working with WordPress 3.6! When you edit a post/page you have to look at Visibilty Options.
Forum: Plugins
In reply to: [WordPress Custom Sidebar] Custom sidebar does not work anymore@weblazing1. Where you are adding code? Have you assinged the ‘WordPress Custom Sidebar’ widget?
Forum: Plugins
In reply to: [WordPress Custom Sidebar] QuickEdit in WordPress clears sidebar associationI have tested it on a fresh WordPress 3.5.2 installation. No, the plugin behaves normal. You can change even all entries and the association stays up. On huger sites I manage till 60 different sidebars and never had that problem. Please deactivate all plugins except ‘WordPress Custom Sidebars’ and try it again.
Forum: Plugins
In reply to: [WordPress Meta Robots] Custom Post Type SupportNot all Post Types are like a page or a post. If you use your own Post Types I don’t know for what. That means not every Post Type needs Meta Robots.
If you need this, for your special Post Type, simply add in my plugin (v2.0):
Behind line 29
add_meta_box('meta_robots', 'Meta Robots', array('wp_meta_robots_plugin','meta_robots_dropdown_box'), 'YOURPOSTTYPE', 'side', 'low');Forum: Plugins
In reply to: [WordPress Media Tags] Number of images and slideshowFor randomization add behind line 87 in ‘WordPress Media Tags 1.5’:
'orderby' => 'rand',Forum: Plugins
In reply to: [WordPress Media Tags] Number of images and slideshowYes, it will show always the same 5 posts. And yes, randomization would be a really useful feature. Will come soon…
Forum: Plugins
In reply to: [WordPress Media Tags] Display all tags of an imageWithout changing my plugin (WordPress Media Tags 1.5) you can always retrieve the tags on the attachment page (image.php) by adding the following in you template:
<?php print get_the_term_list( $post->ID, 'media_tag', '<p>Tags: ', ', ', '</p>' ) ?>Forum: Plugins
In reply to: [WordPress Media Tags] Display all tags of an imageIf you want to show up all tags assigned to an image replace line 105 in my plugin with:
$tags = get_the_term_list( $post->ID, 'media_tag', '', ', ', '' ); $output .= '<a title="'.get_the_title().'" href="'.$url.'">'.$image.'</a>'.$tags."\n";This is just an idea how to get what you want!
Forum: Plugins
In reply to: [WordPress Custom Sidebar] Sidebar on Blog page Not workingIt wasn’t made for this purpose. As you see you can’t assign tags or even change the content of the main index.php. This site just shows the latest posts by default. Yes, the page differs from post or pages.
The easiest way is to hard code your lines in conjunction with conditional tags.
http://codex.ww.wp.xz.cn/Conditional_Tags