Forum Replies Created
-
In reply to: Sending messages to forum group members
Will posting a message in a forum automatically send that message to all current group members of that forum?
Your answer was very unclear about this.I thought it was quite clear 🙂 No,
members need to subscribe to forums to be informed of new topics
Each member needs to actively go to each forum and subscribe to that forum, presuming you have switched subscription on in dashboard>setting>forums>subscriptions
In reply to: Show last 3 recent topicsthe topic link is to a specific topic, not an array, so should be something as simple as
<?php bbp_topic_freshness_link( $post_id) ; ?>
where $post_id is the topic number
In reply to: Displaying User Location Below Avatarjust before we go down that road, is this in user profile or in bbpress profile? the first you get to from dashboard (and is horrible) – the second you get to by clicking any username
In reply to: Sending messages to forum group membersmembers need to subscribe to forums to be informed of new topics, and to subscribe to topics to be informed of new replies.
That way they can decide what level of email they receive
In reply to: Change background color (after 1st forum page)great – glad you’re fixed
In reply to: Displaying User Location Below Avatarare you also using buddypress?
In reply to: widget of recent topicsgreat – glad you’re fixed !
In reply to: widget of recent topicspresume you’ve tried it ?
If it doesn’t work, then the latest activity widget in my style pack plugin does exactly that
In reply to: Can’t change background color of forumif your theme has a css area, put this in it
#main-content { background-color: #000; }In reply to: Show last 3 recent topicsthee problem is that the code would take me time to work out, and I just don’t have any time free at the moment.
In reply to: Change site name in breadcrumbsgreat – glad you’re fixed, and yes thanks for posting the solution to help others
In reply to: Show last 3 recent topicsif you are happy with code, download my style pack plugin
if you look in includes/shortcodes
you’ll find a shortcode for bsp_display_topic_index
around line 40 you’ll find the output that you could modify and then style.
In reply to: Changing forum root path ?great – glad you’re fixed !
In reply to: Changing forum root path ?dashboard>settings>forums and change the slug
In reply to: Category forumsdashboard>forums<edit a forum and on the right hand side you’ll see the ability to create as a forum or a category
In reply to: Displaying User Location Below Avatarsorry for delay is response.
I don’t know of anything that will find your location
In reply to: Forum issues. Wishlist protection?Great – glad you are fixed at last !
bbpress uses wordpress registration.
wordpress assumes that you will need a role, so requires all users to have one.
The wordpress toolbar is frankly horrible.
so simplest solution is to hide the toolbar for all but non admins
there are several plugins available to do this
eg https://wordpress.org/plugins/hide-admin-bar-from-non-admins/
In reply to: content filterok, so I’m struggling to understand the problem
if users ppst an http to an http site, then this doesn’t break the cert, so what are they doing that is not working?
In reply to: content filterbut if you do want to change it throughout your site use
and change the http to https
In reply to: content filterWordPress doesn’t seem to like it when you do that and wont show any image.
wordpress will quite happily show images with no domain name just the directory & file
eg
change
http://www.mysite.com/uploads/2017/march/pic.jpgto
/uploads/2017/march/pic.jpgIn reply to: No toolbar available@casiepa sorry forgot you had it in there
In reply to: No toolbar availablethe code
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );in most themes should work fine. the wp-footer part was specific to the other poster.
The code goes in your child theme’s functions file
In reply to: Already a forum at Forums pageforum would be fine, but the ‘slug’ in dashboard>settings should match what you want to use.
In reply to: how to link to profile pagesorry, I can’t write bespoke code for everyone, so it’s in the pack.