Forum Replies Created
-
In reply to: Problèmes notifications: mails envoyés aux bloqués
they should not receive emails under bbpress.
Are you running another plugin supporting bbpress that is doing this?
eg bbp notify plugin
bbpress just puts the date and author under freshness.
Are you using bbp style pack plugin or last post plugin or another plugin to put the title into the freshness column?
In reply to: Two URLs for same pagehave you got ‘archiv’ set in the slugs in
dashboard>settings>forums
If so change that to ‘forum’
issue is with the plugin Paid Memberships Pro – bbPress Add On v 1.5.4 with Plugin Paid Memberships Pro 1.9.4.2 prevent Plugin Google Photos Version 1.0.1 embed from working.
from @mattdmcleod
I rolled it back to the previous version (1.5.3) on the staging site and it worked. Made that change on the production site and it also seems OK.
The PMPro plugin was the one updated in December, but the current BBPress (v1.5.4) connector hasn’t been updated for 5 months (and last tested with WP 4.8.4). I guess the PMPro update affected the BBPress connector in some way? Or maybe it doesn’t like WP 4.9x? I’ll post in their support forum to let them know.I hadn’t fully understood, yes I see your point now 🙂
I started with something very simple, so know the amount of work to publish a plugin and understand all the processes to that point – congratulations !!
you can fix the broken part by only executing if the user is logged in eg
change
function bbp_profile_link_shortcode() { $link = bbp_get_user_profile_url( bbp_get_current_user_id() ) ; return $link; }
to
function bbp_profile_link_shortcode() { if (!is_user_logged_in()) return ; $link = bbp_get_user_profile_url( bbp_get_current_user_id() ) ; return $link; }
This makes the function not display if the user isn’t logged in
In reply to: issue with Style Packfixed in version 3.7.4
In reply to: Post PreviewIn reply to: issue with Style Packcab you re-log this on the support page for my style pack plugin
https://wordpress.org/support/plugin/bbp-style-pack
and I’ll pick it up there and resolve it
ok, I can’t see the thread suggested – it says ‘Replies viewable by members only’.
If you have the problem on your staging site, then this is clearly the one to work a fix out in.
Can you contact me via my website, so that you can give me access to your staging site and help you work out the issue.
In reply to: Forum registration email from wordpresssorry just re-read your post.
Registration is a wordpress thing.
You just need to change the address is
dashboard>settings>general>email address
In reply to: Forum registration email from wordpressuse this in your functions file and change the address to what you want
add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email'); function no_reply_email(){ $email = 'noreply@yourdomain.com'; // any email you want return $email; }
you can change that default to email address as well with :
add_filter('bbp_subscription_to_email','my_bbp_subscription_to_email'); function my_bbp_subscription_to_email(){ $email = 'noreply@yourdomain.com'; // any email you want return $email; }
In reply to: separate registration for different forumshttps://wordpress.org/plugins/bbp-private-groups/ will let you set up different groups and have users with different access.
In reply to: Button to add attachments missingthanks for posting your solution – so many don’t !
This will help anyone else googling the issue later 🙂
just loaded that plugin to my test site, and with auto-embed on it works fine.
This
<p>https://photos.app.goo.gl/pOeSirvJb5oC7kFC2</p>
displays the embed just fine.
So all we now need to do is work out the difference between my test site and your staging site !!
When you’ve come back on the Q’s above, I’ll do some more digging.
Matt,
Great to have a detailed problem definition and steps so far – really useful.
Couple op quick questions
1. Is this happening to just new posts or have old posts stopped showing links?
2. if just new posts, can you try with both front end (user view) and back end (dashboard>topics>create new topic)
3. Can you just confirm that it is both topics and replies.
4. If old posts are still working, can you just try going into one (edit front end) and just click save – I want to see if this is something being added on save.Then we’ll see where to go from there
In reply to: Custom Topic Sortinguntested by this should work
//change topic order add_filter('bbp_before_has_topics_parse_args', 'rew_topic_order_by_meta'); function rew_topic_order_by_meta ($args) { $args['meta_key'] = 'put_meta_key_here' ; $args['orderby'] = 'meta_value' ; $args['order'] = 'DESC' ; //or ASC if needed return $args ; }
just put your meta_key where it says
In reply to: Size of box for listing sub forumsIn reply to: Size of box for listing sub forumssee my response above 🙂
In reply to: Post Previewlooks like either the version I see is different, or someone has ‘improved’ yours.
Contact me via my website
http://www.rewweb.co.uk and I’ll see if I can help you further
Regards
Robin
In reply to: Post Previewok, I’ve just had a play, and for me in firefox, chrome, edge, and IE, as you type a preview box appears below the content. There is no ‘preview’ button to hit.
Is it different for you ?
In reply to: Size of box for listing sub forumsgot other question is ther some plugin to migrate mybb to bbpress that works ?
as far as I know the convertor in bbpress works
dashboard>tools>forums>import forums
In reply to: Size of box for listing sub forumsyou have total height constrained by
#bbpress-forums li.bbp-body ul.forum { border-top: 0; height: 90px; }
so
#bbpress-forums li.bbp-body ul.forum { height: auto !important; }
In reply to: Size of box for listing sub forumsLine 4255 of your theme Pixiehuge has
#bbpress-forums li.bbp-body ul.forum li { height: 100%; display: flex; display: -webkit-flex; flex-direction: column; -webkit-flex-direction: column; justify-content: center; -webkit-justify-content: center; }
The height : 100% is the issue
You need to put
#bbpress-forums li.bbp-body ul.forum li { height: auto; }
or
#bbpress-forums li.bbp-body ul.forum li { height: auto !important; }
(Try without the !important first)
into your theme’s custom css, or the custom css part of my bbp style pack plugin
In reply to: Size of box for listing sub forumstheme related
You’ll need to supply a link to an example on the site