Forum Replies Created
-
In reply to: 404 error on bbpress functions
and given ultimate member being present, are you sure this isn’t just a permission issue, ie the page doesn’t show because UM is protecting it?
In reply to: 404 error on bbpress functionsso can you give us the code surrounding this use please
In reply to: a link on the picturemight have been too complicated, maybe just try
add_action( 'bbp_theme_after_topic_freshness_author', 'rew_freshness_display_reply'); function rew_freshness_display_reply ($topic_id = 0) { $topic_id = bbp_get_topic_id( $topic_id ); $link_url = bbp_get_topic_last_reply_url( $topic_id ); $anchor = '<a class="rew_freshness_display_image" href="' . esc_url( $link_url ) . '" title="' . esc_attr( $title ) . '"><img class="plato" style="width: 29px; height: 20px;" src="https://webershoot.com/mesimages/transplato.png">' . '</a>'; echo '<p class="platopost">'.$anchor.'</p>'; }In reply to: bbpress Bad Words Error customizecan you give me the exact error please
In reply to: Urgent) Oops! That embed can’t be found.great – glad you are fixed
In reply to: Urgent) Oops! That embed can’t be found.‘Oops! That embed can’t be found’ is not a bbpress error, it’s a wordpress one.
but looking at the link below, I’d suggest it is related to your permalinks, and maybe the fact that you are using ID’s and a plugin for that
https://wordpress.org/support/topic/wp-document-revision-plugin-permalink-does-not-work-to-embed/
In reply to: bbpress Bad Words Error customizetry
function rew_change_text( $translated_text, $text, $domain ) { if ( $text == '<strong>Error</strong>: Your reply cannot be created at this time.') { $translated_text = '<strong>Error</strong>: New moderation message'; } return $translated_text; } add_filter( 'gettext', 'rew_change_text', 20, 3 );In reply to: Error in the Search Functionalitywhat theme are you using ?
In reply to: a link on the pictureTry
add_action( 'bbp_theme_after_topic_freshness_author', 'rew_freshness_display_reply'); function rew_freshness_display_reply ($forum_id = 0) { // Verify forum and get last active meta $forum_id = bbp_get_forum_id( $forum_id ); $active_id = bbp_get_forum_last_active_id( $forum_id ); $link_url = $title = ''; if ( empty( $active_id ) ) $active_id = bbp_get_forum_last_reply_id( $forum_id ); if ( empty( $active_id ) ) $active_id = bbp_get_forum_last_topic_id( $forum_id ); if ( bbp_is_topic( $active_id ) ) { //then reset forum_id to the forum of the active topic in case it is a sub forum //$forum_id = bbp_get_topic_forum_id($active_id); $link_url = bbp_get_forum_last_topic_permalink( $forum_id ); $title = bbp_get_forum_last_topic_title( $forum_id ); } elseif ( bbp_is_reply( $active_id ) ) { //then reset forum_id to the forum of the active topic in case it is a sub forum //$forum_id = bbp_get_reply_forum_id($active_id); $link_url = bbp_get_forum_last_reply_url( $forum_id ); $title = bbp_get_forum_last_reply_title( $forum_id ); } $anchor = '<a class="rew_freshness_display_image" href="' . esc_url( $link_url ) . '" title="' . esc_attr( $title ) . '"><img class="plato" style="width: 29px; height: 20px;" src="https://webershoot.com/mesimages/transplato.png">' . '</a>'; echo '<p class="platopost">'.$anchor.'</p>'; }In reply to: Set Forum Archive Parent Pagelooks like you have already solved this?
In reply to: Cant Customise BB Press using BBp style packif you are using copy/paste then paste as plain text
In reply to: a link on the picturewhat is your existing code?
In reply to: Private forumsgreat – glad you are fixed !
In reply to: Private forumsyes – that is no problem – just go into dashboard>users>edit and you can select which groups they belong to
In reply to: Private forumsnothing automatic, I’d suggest you just create a check list or drop down list in your contact form
In reply to: Private forumsset up a page and use a contact form plugin, then set the redirects in the private groups plugin forum visibility tab to that page
In reply to: Private forumsset forum to public and use private groups to protect it – ie set at least one group ! Then use forum visibility
In reply to: Private forumsIn reply to: Cant Customise BB Press using BBp style packyou seems to have an inline style which is overwriting any other styling eg
style="height: auto !important;">and<p style="height: auto !important;"from this code.
<div class="bbp-reply-content" style="height: auto !important;"> -ad-client="ca-pub-8895339382096709" data-adsbygoogle-status="done"><ins<p><strong>1. The Profession of Faith—The Shahada</strong></p> <p> </p> <p style="height: auto !important;">The Profession of Faith, the shahada, is the most fundamental expression of Islamic<br>It may be related to where you are importing the text from
In reply to: help me modifying the pluginGreat – glad you are fixed 🙂
In reply to: bbPress Topics for Posts commentsorry, I don’t understand the question?
In reply to: help me modifying the pluginthe one above should work – I changed
$forum_id = '12345'
to
$forum_id == '12345'In reply to: help me modifying the pluginoops sorry should read
$forum_id = bbp_get_topic_forum_id() if((!bee_catch_image() == '') && $forum_id == '12345'){== being compare
In reply to: help me modifying the pluginprobably
$forum_id = bbp_get_topic_forum_id() if((!bee_catch_image() == '') && $forum_id = '12345'){In reply to: Post a topic without admin approvalThe default is that they can do exactly this.
I’d suggest you check your settings in
dashboard>settings>discussion