Published on January 7th, 2020 by luciana26
Good afternoon!
I’m reaching out because I’ve checked the settings many times and updated WordPress version and BBpress plugin to the latest version as well and I can’t figure out why this functonalites stopped working. I’m not a programmer I do handle html, css and some basic php.
I’m having an issue with BBpress not nesting replies anymore and also as an admin I’ve stop receiving the notify emails everytime somebody post a new comment.
I’ve updated WordPress to version 5.3.2, BBpress to version 2.6.3 and BBpress Notify (No Spam) to version 2.8.
I’ve cheked the php version my host company is using and is 7.2.7 (beyond what the plugins require).
Could anyone point me to a solution or reason why is this happening? I’ve also emptied my cache.
Sorry I don’t post a link to my website is a private learning group.
Thank you so much! Luciana
Published on January 7th, 2020 by commium
WP 5.3.2
Buddypress 5.1.2
Website https://connect.commium.fr/
Theme : Woffice wordpress
Hi guys,
I’m beginner developper and i have a problem which i’m trying to solve on my website, i created a function to show groups website statistics on their group -> stats tab on group page, the thing work perfectly with an embedded public stats API, but i want to show theses tab on user dashboard too, not only on group -> stats tab, so i tried to copy past the function display() but it didn’t work, the $setting variable and $setting2 variable are NULL..
Someone can help me on this problem please, you can check the code below for more informations :
function stats() {
if ( bp_is_active( 'groups' ) ) :
class Entreprise_Statistiques extends BP_Group_Extension {
/**
* Your __construct() method will contain configuration options for
* your extension, and will pass them to parent::init()
*/
function __construct() {
$args = array(
'slug' => 'entreprise_statistiques',
'name' => 'Statistiques',
);
parent::init( $args );
}
/**
* display() contains the markup that will be displayed on the main
* plugin tab
*/
function display( $group_id = NULL ) {
$setting = groups_get_groupmeta( $group_id, 'entreprise_statistiques_setting' );
$setting2 = groups_get_groupmeta( $group_id, 'entreprise_statistiques_setting2' );
$group_id = bp_get_group_id();
?>
<script>
StatHatEmbed=new function(){function d(){var a=document.getElementsByTagName("script");return a[a.length-1]}function e(a,b){var d=document.createElement("script"),c="//www.stathat.com/embed/"+a+"/"+b.s1;b.dev&&(c="//localhost:8081/embed/"+a+"/"+b.s1);b.s2&&(c+="/"+b.s2);b.s3&&(c+="/"+b.s3);c+="?w="+b.w+"&h="+b.h+"&tf="+b.tf;b.style&&(c+="&style="+b.style);b.dev&&(c+="&dev=1");b.title&&(c+="&title="+b.title);d.src=c;d.type="text/javascript";document.getElementsByTagName("head")[0].appendChild(d)}function f(a){return[a.s1,
a.s2,a.s3,a.w,a.h,a.tf,a.style].join("_")}this.render_graph=function(a){DIV_ID="statd_embed_graph_"+f(a);d().insertAdjacentHTML("AfterEnd","<div id='"+DIV_ID+"' style='display:none'></div>");e("graph",a)};this.render_histogram=function(a){DIV_ID="statd_embed_histogram_"+f(a);d().insertAdjacentHTML("AfterEnd","<div id='"+DIV_ID+"' style='display:none'></div>");e("histogram",a)};this.render_data=function(a){DIV_ID="statd_embed_data_"+f(a);d().insertAdjacentHTML("AfterEnd","<div id='"+DIV_ID+"' style='display:none'></div>");
e("data",a)};this.render_table=function(a){DIV_ID="statd_embed_table_"+f(a);d().insertAdjacentHTML("AfterEnd","<div id='"+DIV_ID+"' style='display:none'></div>");e("table",a)};this.render_text=function(a){DIV_ID=["statd_embed_text",a.s1,a.u].join("_");d().insertAdjacentHTML("AfterEnd","<div id='"+DIV_ID+"' style='display:none'></div>");e("text",a)};this.render=function(a){a.tf||(a.tf="week_compare");a.kind||(a.kind="graph");switch(a.kind){case "graph":this.render_graph(a);break;case "histogram":this.render_histogram(a);
break;default:this.render_graph(a)}}};
</script>
<div id="stats">
<script>StatHatEmbed.render({s1: '<?php echo($setting); ?>', w: 760, h: 235, tf:'month_compare', style:'fill', title:'<?php echo($setting2); ?>'});</script>
</div>
<?php
if ($setting == NULL) {
echo ("Aucun site internet détecté, merci de contacter l'équipe COMMIUM.");
}
}
/**
* Création
*/
function settings_screen( $group_id = NULL ) {
$setting = groups_get_groupmeta( $group_id, 'entreprise_statistiques_setting' );
$setting2 = groups_get_groupmeta( $group_id, 'entreprise_statistiques_setting2' );
?>
<input type="text" name="entreprise_statistiques_setting2" id="entreprise_statistiques_setting2" placeholder="Nom d'entreprise"><?php echo esc_attr( $setting2 ) ?></input>
<input type="text" name="entreprise_statistiques_setting" id="entreprise_statistiques_setting"placeholder="Code suivi"><?php echo esc_attr( $setting ) ?></input>
<?php
$settingInfo = $_POST['entreprise_statistiques_setting'];
$settingInfo2 = $_POST['entreprise_statistiques_setting2'];
}
function settings_screen_save( $group_id = NULL ) {
$setting = '';
$setting2 = '';
if ( isset( $_POST['entreprise_statistiques_setting']) && isset($_POST['entreprise_statistiques_setting2'] ) ) {
$setting = $_POST['entreprise_statistiques_setting'];
$setting2 = $_POST['entreprise_statistiques_setting2'];
}
groups_update_groupmeta( $group_id, 'entreprise_statistiques_setting', $setting );
groups_update_groupmeta( $group_id, 'entreprise_statistiques_setting2', $setting2 );
}
}
bp_register_group_extension( 'Entreprise_Statistiques' );
endif; // if ( bp_is_active( 'groups' ) )
}
echo stats();
Published on January 7th, 2020 by planeo8
WP 5.3.2
bbPress 2.6.3
bbPress Moderation 1.8.3
Akismet 4.1.3
Website https://bcycracing.org/
All of a sudden, the site is getting bombarded with “spam” Topics coming from the bbPress Forum. The Forum has been active since 2018 and up till recently has been spam free. Now, we get 100+ a day. Akismet API is current.
I recently deleted all of the pre-2020 topics in the Forum (housekeeping). The Forum is empty now.
I would appreciate any help you can provide.
Published on January 7th, 2020 by devaraj227
Hi there,
I’m sure this has been asked before but I can’t find the answer. Is there a way to configure BBPress so that an admin is notified by email each time a new topic is started in a certain forum?
Thanks
Published on January 7th, 2020 by tkdgns1106
Hello I am a bbpress fan. Personally I think it’s a really cool plugin.
Nonetheless, I want to use the search form in the bbpress.org sidebar.
So I used search-form using the code in the sidebar through the bb-base theme answered in last topic.
However, I can’t search in Chinese, Japanese, etc. other than English and numbers.
I do not live in an English-speaking country. So I searched for 3 days to solve the problem but couldn’t find the answer.
What I want is to search for a topic in the forum or to find a reply in an answer.
Can you tell me how to modify bb-base (sidebar search) to search in other languages ..?
Or is there another alternative?
Help the esteemed bbpress developer ..
Published on January 7th, 2020 by dlwoalsgg
How can I change this to 2 or 3 columns
https://www.dropbox.com/s/y1axqydv5hq9lww/Screen%20Shot%202020-01-07%20at%203.23.26%20AM.png?dl=0
Looks like this
https://www.dropbox.com/s/dxu3nk2wtpb2ciw/Screen%20Shot%202020-01-07%20at%203.26.03%20AM.png?dl=0
In other words,
Current layout is
Columns 1
Columns 2
Columns 3
Columns 4
Columns 5
Columns 6
But how can I change to
Columns 1, Columns 2, Columns 3
Columns 4, Columns 5, Columns 6
Thanks
Published on January 7th, 2020 by samtime
Hi, I use the bbPress Moderation Tools plugin to send email notifications to moderators about new pending replies/topics.
However, the email sent out shows all moderator email address in the “To” section.
I would rather hide the email addresses for privacy.
Does anyone know a way to use BCC instead, or another system, so that moderator’s emails aren’t revealed to each other?
I think bbPress subscription emails are sent to noreply @ domain .com , with subscribers emails then BCC’d.
Thank you,
Sam
P.S. I did post this to the plugin’s support forum, but I think they are between developers at the moment.
Published on January 6th, 2020 by Voice4Vision
Good evening everyone,
I seriously wish I was not seeking assistance as I generally try to figure things out on my own. What I am attempting to do, I know I am out of my league…
I want to replace the topic/reply bbpress control bar text links with icons.
EDIT | MERGE | CLOSE | STICK (TO FRONT) | TRASH | SPAM | UNAPPROVE | REPLY | QUOTE
Could someone please assist me? Just one link to get me started, I am sure I can figure the rest from there.
Any and all assistance would be greatly appreciated!
Thank you,
Voice4Vision
Published on January 6th, 2020 by cr53
Hi,
I’d like to hide (or remove) the breadcrumbs only on my froum homepage.
E.g. hide breadcrumbs on ‘mysite/forum/’ but show them on ‘mysite/forum/a’ and ‘mysite/forum/b’ etc.
I have created a new page and added the
to it so I could change the heading of my forums.
I have Robin’s bbPress style pack installed, however that hasn’t helped with my specific issue (unless I’m missing something…)
Any help would be much appreciated!
Published on January 5th, 2020 by bigealien
Hello everyone.
I have bbpress as my forum plugin for my website and I’ve been wanting to implement BBCode for BBPress. I currently have the BBCode Deluxe plugin installed on my site which seemed to have great reviews and is updated. However I had an issue getting it to work. See my question I posted on Reddit – maybe one of you would be able to answer it.
reddit question
But I was thinking if BBCode Deluxe is not a good plugin for this purpose or there is a better / simpler one, then maybe someone will know about it here.
Thank you in advance for everything!
Link to my site : siliren.com