Forum Replies Created
-
In reply to: Users unable to turn of email notifications
is this topic still live ?
In reply to: Users unable to turn of email notificationsand if you set yourself up as a new user, subscribe and then unsubscribe, do emails stop?
In reply to: Users unable to turn of email notificationsAre you running any other bbpress related plugins?
In reply to: CSS on Index Pagestyling root page us
#bbpress-forums
eg
#bbpress-forums ul.odd { background-color:blue ; }
or use
In reply to: Styling IssueIt looks like the theme authors have got a .min.css file loading.
I’d reach out to the theme authors and see if they can help.
Otherwise come back and I’ll try to help further
In reply to: Styling Issueyour theme is loading a styling sheet
https://www.jeremybassetti.com/wp-content/themes/soledad/css/buddypress-bbpress.min.css?ver=7.9.6
which is loading after my plugin, so takes precedence.
In reply to: Forums index vs custom page shorturlok let us know what they say !
In reply to: Forums index vs custom page shorturlgo save me re-reading all of a 5 year old thread, could you please state what shortcode, what pge url and what forum slugk you have
In reply to: Styling IssueI’d need a link to your site to see what is being downloaded to the browser
In reply to: Register custom view with extra_fieldsdo keep this updated – so many threads have the problem but authors don’t post their final solution – you are a star!!
In reply to: Is it possible to change a Forum author?🙂
In reply to: Is it possible to change a Forum author?forum author is in the wp_posts table, under post_author – just change it to the ID of the user you want to be the author
In reply to: Catering for when users simply reply to emailsAtleast one that says it officially supports the latest wordpress version that is out.
I thought it now did – certainly here
In reply to: Catering for when users simply reply to emailsI did look at some thoughts on this, but my knowledge of linking email to WordPress is too weak to work a solution out 🙂
it would be nice to achieve
In reply to: Is it possible to change a Forum author?interesting – yes that is not there in the front end
If you have skills with accessing the database then you can easily change it there, let me know and I’ll give you some help.
Otherwise come back with the numbers of the forums you want to change (you can see this in the url of the page when you edit a forum – eg
https://www.mysite.com/wp-admin/post.php?post=2927&action=edit
is shown for forum number 2927
so give me a list, and the user ID of the author you want to change them to, and I’ll give some some code
In reply to: Register custom view with extra_fieldsthanks for posting your solution.
you could do
add_action('bbp_theme_before_topic_title', 'show_true_title'); function show_true_title() { $topic_id = bbp_get_topic_id(); $true_title = '<li class="specstanza-title"><a href="' . get_permalink() . '">' . get_post_meta( $topic_id, 'bbp_extra_field1', true); '</a></li>'; echo $true_title ;
and then in css do
li.specstanza-title { color: blue; }
or
.specstanza-title { color: blue; }
or
.specstanza-title li { color: blue; }
one of those should let you style the title
In reply to: Catering for when users simply reply to emailsThe problems with this are multiple. Emails to site go into a mailbox – emails and web are separate – eg you can host you email with a totally different supplier, so in essence there is no ‘web software’ to catch an incoming email. So firstly the mailbox would need to exist on a mail server somewhere.
Next you’d need software on the email to look at all incoming, read the mail, work out if this is a reply, and to what message, check the sender’s mailbox to work out which user it is, and then get this software to send to another programme within the website, which can then create the reply.
The ability for spam and people pretending to be a user are numerous.
Github is created by very clever people, who have I presume done all this, but there would be a lot of code in many languages to achieve.
If it is an issue, then I’d suggest you amend your sending email to omit the actual content – so something like – ‘a new reply has been received, click here to read’ so that people have to click the link and are on the site to see content to reply to.
In reply to: Unsubscribe Members from Forumsdashboard>users>edit user and you will find forum role near the bottom – set to ‘blocked’ to prevent access
In reply to: What happens after approval?if you unapprove then they will be in ‘pending’ in the backend
great – can you post your solution to help others
In reply to: Close own forum topicsonce activated go to
dashboard>settings>bbp style pack>Topic/Reply Display>item 17 and 18
dashboard>settings>bbp style pack>buttons
In reply to: What happens after approval?so do you see the topic if you are not logged in, or not logged in as moderator/keymaster?
Usually you would just/only see ‘unapprove’ if topics automatically publish (so you would not see ‘approve’)
To see ‘approve’ usually you would have something set in
dashboard>settings>discussion that holds topics to await approval
or you mught have an additional bbpress related plugin that does this
In reply to: How to set approval feature for new topicseither use the settings in
dashboard>settings>discussion
which lets you set say ‘before a comment appears’
or use
which though old still works fine
In reply to: Tag cloud on search result pageok so is this JUST on the search result page?