Oren Yomtov
Forum Replies Created
-
Forum: Plugins
In reply to: [Taxonomy Widget] [Plugin: Taxonomy Widget] Display Empty Taxonomy'sI’ve encountered the same problem.
Enjoy the snippet I made:
function oren_show_empty_taxonomies($args) { $args['hide_empty'] = 0; return $args; } add_action( 'mfields_taxonomy_widget_args_global', 'oren_show_empty_taxonomies' );Please give us back this option. I need this plugin just for that!
Forum: Themes and Templates
In reply to: Auto display first subpage content on parent pageI am looking for a way to implement this functionality myself.
Forum: Plugins
In reply to: [Plugin: Mass Custom Fields Manager] Doesn’t appear to workTry using v1.3.
Forum: Plugins
In reply to: How to get this tag to work?I’m the author of that plugin and I just released a new version that should work for you.
Forum: Plugins
In reply to: [Plugin: Vote It Up] Make Order of Posts = # of VotesI’m also looking for a solution.
Forum: Plugins
In reply to: [Plugin: Mass Custom Fields Manager] No thanksThere is no hidden/forced link. It’s all fully optional.
Anyway I have removed this feature.Forum: Fixing WordPress
In reply to: Metatags and keywordsUse “All in one seo pack” plugin, it will make it much easier for you.
Forum: Everything else WordPress
In reply to: Spam posts linking to my siteThe best thing you can do is contact them and ask them to stop copying your content.
When your publish your posts through RSS that means you give anyone permission to use your content.
Forum: Everything else WordPress
In reply to: admin sidebar widthBetween sections there is an arrow (->), click it.
[signature moderated Please read the Forum Rules]
Forum: Everything else WordPress
In reply to: forwarding domain to wordpress installCheck your host’s cPanel for forwarding options.
Forum: Everything else WordPress
In reply to: Google analytics plug in – not workingIt doesn’t work in my website either so I just edited the footer.php file in my theme and inserted the code.
Forum: Everything else WordPress
In reply to: Permalink Trouble1. Make sure you approved the comments.
2. Check the template files.If you need a hex editor contact me.
Forum: Fixing WordPress
In reply to: My website doesn’t display properlyOpen the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? If it is not the caching engine will not load.
Forum: Fixing WordPress
In reply to: Tags instead of Categories?you can change it to
<div class="spostinfo"> <div class="category"><?php the_tags('',', ',''); ?> </div> </div> </div>