Liltiger
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] Plugin Not Compatible With Limit Posts PluginHi Vladimir,
Thanks for the prompt response and for investigating this. I REALLY appreciate your help!
I don’t fully understand $wp_roles, but with some help and your direction, we modified the code below to make it work with the user roles I created:
//filter out any rules not for a user role private function filterRulesForUserRole($inputRules, $userRole){ $filteredRules = array(); foreach($inputRules['rule'] as $rule){ $userOrRole = $this->getUserOrRole($rule); if($userOrRole != 'role'){ $filteredRules[] = $rule; } else{ <strong>if((strtoupper(str_replace('_', ' ', $rule['role'])) == strtoupper(str_replace('_', ' ', $userRole))) || $rule['role'] == 'ALL'){</strong> $filteredRules[] = $rule; } } } return $filteredRules; }
Forum: Networking WordPress
In reply to: How to make new user default role = subscriberThanks for the fast reply, Abolfazi. I have looked into that plugin as a solution before posting here, but it doesn’t seem to be supported anymore and there are some users saying it doesn’t work. I will also eventually have hundreds of subsites, so managing it all w/ that plugin seems unnecessary.
I just need a way to add all new users as a subscriber, or find out what this new user is called so I can write some functions to hide dashboard items from them.
if( !current_user_can('manage_options') )
doesn’t apply to them!Also, didn’t WP MS used to add new users as subscribers by default or am I crazy?
Good Afternoon!
I just submitted more info via the contact support link.
Thanks Soooooo Much Again!
Hi Jeremy,
You’re correct, these are custom post types and featured images. I’m also using featured images on default post types and the plugin works perfectly with those.
Thank You!
Thanks for the fast reply, Noor.
I have a brand new installation of WP and Jetpack. I’ve recently added a widget to show WP default posts and it works fine when pulling the featured image thumbnail. It just doesn’t work for my custom posts.
Any other ideas?
Forum: Plugins
In reply to: [Favorites] Display Favorite Button Shortcode Not WorkingOk I figured it out.
I have a multisite and all I had to do was take out the site id. The shortcode would be:
<?php echo do_shortcode( ‘[favorite_button post_id=””]’ ); ?>
Forum: Networking WordPress
In reply to: New Multisite Subdomain Install: This webpage is not availableThanks anon for the quick reply. You were right after all. I grew impatient after waiting 20+ hrs and thought something went wrong. All is well now. Thanks Again!
Forum: Plugins
In reply to: [Achievements for WordPress] How can one view their own achievements?Ok I got it figured out. I had to change my permalinks settings to %postname% to get the My Achievements link to work.
Forum: Plugins
In reply to: [WTI Like Post] Recently Liked & Most Liked Widgets Not Working?Okay, I did try different options and when I changed “Show excluded posts/pageson widget” from No -> Yes it worked.
I must have misunderstood how it functions since I haven’t excluded any pages or posts.
For the record, it works just fine if I’ve excluded a page and have “Show excluded posts/pageson widget” set to No.
Thanks for responding so quickly & for the great plugin!
Forum: Hacks
In reply to: Redirect Login for Non Admins to ProfileI tried to bold my changes to the original code, but that didn’t work so please ignore the
<strong></strong>
Forum: Plugins
In reply to: [WP Smart Wishlist] How to add items to wish listHi again, it’s by Elegant Themes – Boutique
Thanks!
Thanks for the reply!
Perhaps I’m confused about the function of enabling authors to view their own content.
I was wanting users to be able to see their own stats e.g. which pages they’ve clicked on/viewed. As an admin, I can see this in the real time view, but when I’m logged in as a non-admin, there’s no activity.
What I’m understanding is that the function allows the user to see how many other users have viewed their post. Is that correct?
Is there a function to do both?
Thanks Again
Hey Guys,
I’ve posted this question on the other support forum and there have been no replies. Will someone be able to assist me?
Thank You
Forum: Plugins
In reply to: [WP Smart Wishlist] How to add items to wish listHi,
Thanks so much for replying! I’m not sure what you mean by action hooks, but the “Add to Wishlist” button doesn’t show up at all like it should, so I deactivated the plugin for the time being.
Do I have to add the hooks into the theme files?
Best Regards
Forum: Plugins
In reply to: [WP eCommerce] Personalize Product & Upload Images to Personal LogsHey Edward,
I was able to get the ratings to show up. That was definitely a function related to the theme.
I did a fresh install of everything (completely unmodified) on a separate domain and the User Custom Fields still don’t show up.
How should I remedy this?
Thanks