Forum Replies Created
-
In reply to: how to block editting published post
as I said
WP dashboard>settings>forums>editing
In reply to: how to nominate forum’s managers levelsIn reply to: Blank Page on “forum” directorylink to the forum page of your site please
In reply to: Viewing My Profileok, that link in the top right is not native bbpress – might be BP or your theme?
In reply to: Text of the subforumsIf I understand the question then
once activated go to
dashboard>settings>bbp style pack>Forum Display item 6
In reply to: Trying to remove bbPress causes Critical errorsorry, since Divi is a paid product, and bbpress is a free one, suggest you refer to Divi and how to get the two working – Divi claim they integrate viz ‘bbPress should work seamlessly with all the best WordPress themes including Divi and Extra. As thereโs no need to change themes to use it, bbPress is ideal for anyone starting a new website as well as those with an existing site theyโd like to enhance with a discussion area.’
hmm.. looks more wp and php related – have you discussed with your host provider?
In reply to: Cannot link new course to existing forumyou probably need to query this with learnpress which is a paid plugin which uses this free plugin.
In reply to: how to block editting published postpresuming you are talking about bbpress, then
dashboard>settings>forums>editing
In reply to: Trying to remove bbPress causes Critical errorIn reply to: Viewing My Profileon this site it takes you to a profile page with an edit option – if you see differently post an image please
In reply to: Remove @Username from profilesPut this in the custom css part of your theme
#bbpress-forums #bbp-user-wrapper h2.entry-title { display: none; }
In reply to: Problem running PHPBB to BBPress importersorry, was a long day and me being stupid – I hadn’t spotted that the list was running 17-1 – apologies.
But yes connections and naming are usually the issues when imports fail. is forum prefix correct?
In reply to: Problem running PHPBB to BBPress importerok, so what did 1-16 say ?
In reply to: Reply delete then restore doesn’t work anymoregreat – glad you are fixed ๐
In reply to: Reply delete then restore doesn’t work anymoreI’ve just taken a look.
bbpress uses the wordpress ‘untrash’ function to restore topics and replies.
That wordpress function includes a note saying
* By default posts that are restored will be assigned a status of 'draft'. * Prior to WordPress 5.6.0, restored posts were always assigned their original status.
so this was a change in WordPress 5.6
However WordPress helpfully includes a hook we can link to to restore the previous status automatically
add_filter ('wp_untrash_post_status', 'wp_untrash_post_set_previous_status' , 10 , 3) ;
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: topics held repeatedly for moderation@spanky11 – found it and unspammed
In reply to: Reply delete then restore doesn’t work anymoreok I’ll take a look when I get a mo
In reply to: style pack not working with generatepressgreat – can you post your final solution to help others who might find this post ๐
In reply to: Reply delete then restore doesn’t work anymoreOn my test site – it goes into being draft
If you look at
dashboard>replies>all replies
you should see it as draft in there – I did an approve to get it back.
Can you test that you get the same.
If you are getting that as well, then I’ll take a look to see what the bug is, as agree it should work on the front end.
In reply to: Empty Text toolbar?great ๐
In reply to: Like button for forum๐
In reply to: style pack not working with generatepressok so something like
add_filter ('generate_get_the_title_parameters' , 'rew_community', 10 , 1) ; function rew_community ($params) { if (is_page ('community')) { $params = array( 'before' => sprintf( '<h2 class="entry-title"%2$s><a href="%1$s" rel="bookmark">', esc_url( get_page_by_title( 'community' ) ) ), 'microdata' === generate_get_schema_type() ? ' itemprop="headline"' : '' ), 'after' => '</a></h2>', ); } return $params ; }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: Spectator same Capabilitys as Participantmy guess would be that you have pasted this twice into the snippet or created 2 snippets in error