Forum Replies Created
-
In reply to: Forum ID and user fourm creationIn reply to: Setting up pagination
hmm, can’t say why it isn’t working – it is code that I put together from a number of sources.
If I can find time, I’ll look through the code, but no promises
In reply to: Graphic issues with repliesneed a link to a live example
In reply to: Setting up paginationtry creating a couple more – just seeing if it is 12 you’ve set vs. 13 on the list
In reply to: Changing Discussion Sidebareither
or
and use the logic
is_bbpress()
In reply to: Forum ID and user fourm creationdoable but beyond free help I’m afraid
In reply to: Setting up paginationIn reply to: Setting up paginationare you running threaded replies
dashboard>settings>forums>Reply Threading
In reply to: bbPress + ElementorIn reply to: Error in the Search Functionalityok, I’ve found the issue, and I’m talking to elementor about it.
At the moment to fix you need to
1. create a child theme if you haven’t already got one
2. change a line in a fileso do you have a child theme and/or do you know how to do FTP?
Let me know and we’ll go from there
In reply to: 404 error on bbpress functionsit could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: 404 error on bbpress functionswhat theme are you using?
In reply to: a link on the picturegreat – glad you are fixed !
In reply to: Error in the Search Functionalityok, I’ve loaded that theme and can see the issue -let me try and work out a solution
In reply to: bbpress Bad Words Error customizeIn reply to: bbpress Bad Words Error customizeok, Can you show a few lines above and below where you put it in the functions file?
In reply to: 404 error on bbpress functionsand 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>'; }