redkite
Forum Replies Created
-
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Can't add slidesGot it – it was Hana FLV Player. Thanks!
Done.
Working fine now, thanks for the quick fix!
Same here, just did the 1.2.1 upgrade and now saving the widget doesn’t help.
Forum: Plugins
In reply to: Looking for plugin to restrict pages, hide menu links for restricted pagesAs of version 1.3 Role Scoper filtered links in 3.0 menus based on the user’s permissions for the linked page.
Forum: Plugins
In reply to: Looking for plugin to restrict pages, hide menu links for restricted pagesSince that post I’ve used the following plugins to restrict content per user:
1) Members (http://wordpress.org/extend/plugins/members/). This one allows you to create specialized roles, where you could have a role named for a member, and restrict page access based on roles.
2) RoleScoper (http://wordpress.org/extend/plugins/role-scoper/) does allow quite a lot of control over who can see what. The menus do hide/reveal content by role, but there is a bit of setup involved – that goes for both of these plugins.
Forum: Fixing WordPress
In reply to: PHP help needed – echo HMTL based on Author IDThis is close to what I need to do too, I’ve modified it to this, but it’s not yet working:
<?php $company == get_the_author_meta('company'); $test == the_author_meta('industry'); if ($test=='Web/Interactive') { echo $company; } ?>Can someone point out what’s wrong here?
Forum: Fixing WordPress
In reply to: Only display list of authors with specific author metaFor the [do stuff] part – how do I print the meta_value for a certain meta_key for the selected industry?
I can use this to display the meta_key’s meta_value for a certain user_id:
<?php the_author_meta( company, 8 ); ?>But I don’t understand how to tie that to the selected industry… I tried this but doesn’t work:
<?php $industrycat = $wpdb->get_results("SELECT user_id FROM $wpdb->usermeta WHERE meta_value='Web/Interactive'"); foreach ($industrycat as $industrycat) { echo the_author_meta( 'company', '$industrycat' ); } ?>Forum: Plugins
In reply to: [Plugin: RB Internal Links] Insert link button not workingHaving a similar problem, my button works, but when the popup window appears it never loads, the loader graphic just spins. This was working fine less than 1 week ago, I haven’t made any WP upgrades since then (I’m on 2.8.4).