joeco
Forum Replies Created
-
Hello Georgian,
Thanks for responding.
Which addon in the paid Member Subscriptions plugin package do I use to do what I described above?
How do I integrate a Profile Builder form to replace the form provided by the Member Subscriptions plugin?
Thanks again!
Just to be absolutely clear about what we need to do, I’ll re-phrase the question:
How can I enable the message restriction for all posts and pages (except the home page) by default?
Right now this has to be set separately on each post and page:
Type of restriction: Message
Display for: Logged in UsersThe posts where I manually added these settings work perfectly!
I have message restriction selected in the theme options panel, but I need this to be applied to all 1,924 existing posts without doing this one by one. Also, there is no checkbox for “Display for: Logged in Users” in the options panel.
Thank you, again!
update — we would like to use the “message” option to display teaser content on a default (global) basis as described above.
note — The March 26, and March 27 posts have the “Type of restriction” and “Display for” settings enabled.
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] bbpress/buddypressI disabled Rate my Posts’s and SSO’s structured data. Didn’t help. No clues in the Google Console.
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] bbpress/buddypressHi Blaz,
I tried disabling the SSO plugins that use structured data. Didn’t help. I added a rate-my-post folder in my child theme and copied the php docs into it. Didn’t help. Is there a command that is needed to have the plugin look for microdata?
Thanks again!
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] bbpress/buddypressplease re-open this topic. Maybe someone has a solution 😉
- This reply was modified 6 years, 2 months ago by joeco.
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] bbpress/buddypressHello again,
I installed Rate My Post on a bbpress/buddypress site. I can see the javascript script tag with the <!CDATA code and the custom css (that I set in the plugin options), in the source code on a forum or topic page but the widget doesn’t display. In the plugin options I added forum,topic,reply in the custom post types.
I reverted to a WP default theme and got the same results.
Please send me a private email so I can send you the URL to look at.
Thank you!
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] feedback notification emailHello again,
I found the solution in your documentation:
add_filter( 'rmp_mail_address', 'blazzdev_change_rmp_email' ); function blazzdev_change_rmp_email( $email ) { return 'test@test.com'; }Thanks!
Forum: Plugins
In reply to: [Pinterest Widgets] Is the tag nopin=”nopin” supported<div style="width:300px;margin:1em auto;"><a href="/forums"><img src="/wp-content/uploads/2019/07/forum-lnk.png" nopin="nopin" /></a></div>Forum: Plugins
In reply to: [bbPress - Moderation Tools] whitelist approved usersHello Digital Arm,
Issue resolved. Please close the ticket.
Thank you very much for your help and patience!
Cheers!
Forum: Plugins
In reply to: [bbPress - Moderation Tools] whitelist approved usersahhh, perfect!
Thank you very much! I’ll report back after I know it works and close the ticket then.
I really appreciate your support!
Forum: Plugins
In reply to: [bbPress - Moderation Tools] whitelist approved usersoops, try this:
`add_filter( ‘bbp_modtools_moderate_post’, ‘foo_whitelist_users’, 10, 2 );
function foo_whitelist_users( $pending, $post ) {
// Whitelist a user by ID
if ( 8 === get_current_user_id() ||
82 === get_current_user_id() ||
118 === get_current_user_id() ) {
$pending = false;
}
}’Forum: Plugins
In reply to: [bbPress - Moderation Tools] whitelist approved usersHello,
How would I add more users to the whitelist? Is the following correct?
function foo_whitelist_users( $pending, $post ) {
// Whitelist a user by ID
if ( 8 === get_current_user_id() ||
82 === get_current_user_id() ||
118 === get_current_user_id() ) {
$pending = false;
}
return $pending;
}