Forum Replies Created
-
if avada came with a bbpress.css file already in try to follow the same file hiearchy.
other than that it should be wp-content>avada-childtheme>css>bbpress.css
i dont know of a plugin that could do that kind of functionality.
i suggest you post a job at http://jobs.wordpress.net/
clear your cache , and remove the CSS you posted from your website.
see if that fixes it
if it doesnt
post an image just so i know what you are talking about.
try to do a screenshot.
In reply to: Searching for a membership pluginsearch google for invitation only registration for WordPress plugin
there is a couple plugins that offer this kind of functionality
if thats not what your looking for i suggest going to this site and post a job.
Where can I find a plugin like http://jobs.wordpress.net?
you might be able to do it with bbPress , i suggest you post a job over there at the site to get that kind of custom development.
I max my cell it needs
what?
In reply to: default bbp_topic_subscriptionIn reply to: Editing the "Freshness" column contentsdid it work??
ill add it to the docs in a minute if it did
listing this kind of code and putting examples like this is a whole lot easier than talking about spam/security/seo in a doc article.
In reply to: Avatar padding issuetry this CSS
#bbpress-forums div.bbp-forum-author img.avatar, #bbpress-forums div.bbp-topic-author img.avatar, #bbpress-forums div.bbp-reply-author img.avatar { border: none; max-width: 130px; padding: 0 0 10px 0; margin: 12px auto 0 auto; float: none; }
In reply to: Users Cannot View Own Replieswell i guess you pinpointed the issue was your theme.
contact theme author for support for this issue.
because i think this is a paid theme.
In reply to: Editing the "Freshness" column contentsi had this kind of layout one day messing around with bbPress templates in my child theme.
i think its close to this but i havent tested it to make sure.
its without the permalinks though , i had permalinks before but right now i just breezing through the templates and trying to find them.
for the forum loop
<a href"<?php bbp_forum_last_topic_permalink(); ?>"><?php bbp_forum_last_topic_title(); ?></a>
for the topic loop
<a href"<?php bbp_topic_last_reply_permalink(); ?>"><?php bbp_topic_last_reply_title(); ?></a>
EDIT: added permalinks
In reply to: Help for rolesthen maybe BuddyPress is more for your needs its not forum software but more of a social hub plugin. it does work with bbPress flawlessly though.
there are tons of plugins for BuddyPress that allow users to upload media such as pictures, videos, music, and maybe slideshows too.
the uploading of other types of media can only be achieved in bbPress usally if you have
the url of the media, well except images from that gd bbpress attachments plugin, but in BuddyPress you could upload it right in the site.i would go to BuddyPress support if that might be where you will sway to .
In reply to: Avatar padding issuepost a link to your website.
In reply to: email needed to postyou just want to keep track of who is posting
why not just try this https://wordpress.org/plugins/bbpressmoderation/
then moderate everything in the back-end of WordPress
unless your trying to gain the email and name for email marketing??
In reply to: No spacing in posts.send me the login details to robkk17 (at) gmail (dot) com
In reply to: No spacing in posts.try adding !important to the end.
like this
#bbpress-forums .bbp-topic-content p, #bbpress-forums .bbp-reply-content p { margin-bottom:10px!important;
if it still doesnt work post a link to a topic or reply post that should have line breaks.
In reply to: Help for rolesallowing users to upload .mp4 video clips and slideshows would need some custom development.
your users can post youtube/vimeo videos and such in forum posts
and also post slideshare links
and images from flickr/instagram/imgur
all the users have have to do is post a link to their source and it will automatically embed using oembed.
and also if you have embed media automatically in settings>forums
yes you can.
its used on bbpress.org , its not in button format but yeah
first you create a new page called New Topic
put the shortcode
[bbp-topic-form]
into that page.now to create a button , im just going to show you how to create a link with a background so it basically is a button.
put the text widget in your sidebar
and put this html in it.
<a class="bbp-new-topic-button" href="http://yoursite.com/new-topic" "title="Create A New Topic">Create A New Topic</a>
and put this CSS wherever you can put custom CSS
a custom css plugin
jetpack custom css module
in the bbpress.css file that you could copy to your child theme.
in your child themes CSS stylesheeta.bbp-new-topic-button { color: #fff; font-size: 24px; background: #222; padding: 10px 20px; border: solid #222 2px; text-decoration: none; } a.bbp-new-topic-button:hover { color: #222; background: #fff; }
In reply to: Looking for a bot for my own forumi think you can put that sample code in your functions.php in a child theme or functionality plugin.
In reply to: layout problem with bbpresshaha 🙂
only thing i can think of is when i try WAMP i have to activate an apache module to be able to use pretty permalinks with WordPress and bbPress.
i cant think of any other issues though.
In reply to: email needed to postwell you dont have to login for anonymous posting, it should allow the user to type their email and username and post off of that.
do you have a plugin like private groups or some other restricted area plugin??
you didnt add an additional plugin to add this type of behavior??
i dont think bbPress does this by default , i think it would need a plugin like this to achive this type of thing.
In reply to: Help for rolesuse the gd bbpress attachments plugin to allow users to upload images.
the users use html when they are using the visual editor too if you activated that it just outputs the html tags in an iframe in real time.
there being two tabs is not really a big deal, but create me a subscriber account and i can see if i can hide it with some CSS.
i need a subscriber account because i cant see the topic/reply form unless i login to your site.
ok role see if this article helps
https://codex.bbpress.org/bbpress-user-roles-and-capabilities/
In reply to: Edit reply pagesee if creating a bbpress.php file could fix it.
In reply to: email needed to postenable anonymous posting in settings>forums
wait i get your question now…
if that plugin i posted above doesnt add it to the edit page.
ill try to see if theres a filter i can find so that you could show the tinymce toolbar on the edit reply/topic page.