Forum Replies Created
-
forums are set to closed ?
if so, then that is what I would expect
In reply to: How to display stats and feed info?🙂
In reply to: How to display stats and feed info?In reply to: Login/register forms full widthhey no problem, glad to have helped 🙂
In reply to: Login/register forms full widthrelated to your ultimate member plugin, but put this code in your themes additional css
@media only screen and (max-width: 600px) { .um.um-login, .um.um-register { width : 70% !important; } }
you can change the 70% to alter the width to what you want
In reply to: Login/register forms full widthlink to your site please
In reply to: Change from name on subscription emails?is this new, or has it always done that?
In reply to: How to Set Email Sender Name for Notificationhmmm…. I’m trying to do less not more !!
I’ve just taken a quick look, and reckon several days work to even understand the plugin and correct current errors it throws.
So no not at the moment – sorry !!
In reply to: How to Set Email Sender Name for NotificationI’ve just released version 6.0.8 of style pack that has that option in subscription emails tab item 1
In reply to: Does bbPress have hooks?you can use
add_action ('bbp_template_after_single_forum' .... add_action ('bbp_template_after_single_topic' ....
In reply to: How to Set Email Sender Name for Notificationyes, I can see the issue – I’ll look at that.
you can use the ‘assign groups to roles’ tab to assign WordPress roles such as subscriber to a group on login
In reply to: How to Set Email Sender Name for Notificationinstall
then see
dashboard>settings>bbp private groups>help
for how to set it up
and
dashboard>settings>bbp private groups>topic permissions
in essence set up a group called say ‘fred’
assign the forum to the group ‘fred’
assign your users to the group ‘fred’
Then enable topic permissions
set the forum topic permissions for users to only be able to reply
Admins can then post topics but users only reply
In reply to: Is BBPress compatible with the Shortlinks jetpack?No idea of it is compatible, but bbpress has custom post types of reply, topic and forum, use these calls and see if they work
add_post_type_support( bbp_get_reply_post_type(), 'shortlinks' ); add_post_type_support( bbp_get_topic_post_type(), 'shortlinks' ); add_post_type_support( bbp_get_forum_post_type(), 'shortlinks' );
In reply to: Issue with Twenty Twenty Fourlink to a live example please
In reply to: Regarding bbpress admin-ajax accessbbpress just uses wordpress authentication, so probably the answer is no
In reply to: Limiting access based on custom WP rolesand for different forum access look at
In reply to: Limiting access based on custom WP rolesIn reply to: Stickies ban doesn’t work in shortcodeno problem, glad you are fixed !
In reply to: Stickies ban doesn’t work in shortcodeok, so before the shortcode block, add a custom html block saying
<div class="my-block-name">
then your block with the shortcode you dont want the sticky to show in
then another custom html block with
</div>
then use
.my-block-name sticky { display : none ; }
In reply to: Stickies ban doesn’t work in shortcodeso are you saying that ‘stickies’ are always showing for you, they are never showing for me!
In reply to: 404 error when trying to edit postOk, this is an individual site issue – ie an issue with your site.
I am suspecting that this might be related to roles and capabilities, especially if you are using custom roles, but it could equally be something else.
Not sure I can help further
In reply to: Stickies ban doesn’t work in shortcodeI’ve just taken a look, and yes I cannot get it to do what it should.
I’ll have a further look
In reply to: PrivateContentbbpress just uses WordPress users so if your plugin is not using wordpress users,the answer is probably no.
Maybe ask the private content plugin authors.