Search Results for '"wordpress"'
-
Search Results
-
I’m sorry if it’s a rudimentary question.
For example,
In the forum: music, the topics “Rock”, “Pops” and “Classic” are posted.
In the forum: movie, the topics “Comedy”, “Action” and “Horror” are posted.
In this case, how can the conditional branch “display A for single topics belonging to forum: music (that is,”rock”,”pops”,”classic”pages) be realized?In other words, I want to do the same as “in_category” in wordpress.
I thought too hard and lost my mind! help!
Topic: Notifications
Wordpress Version – 5.3.2
bbPress Version – 2.6.3I’ve installed the forum on my site and set it up, it’s all working as expected. However if I post a topic, I have to log on to the site to check responses.
Is there a way to get notified by email when replies are added to posts?
Thanks
AlistairI have two questions:
1. Is there a general WordPress plugin that will search the entire site as well as within my discussion forum?
2. Is there a plugin that will search my bbpress discussions that will also search within attachments such as MSWord or PDFs?
Thanks.
Bob
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
WP 5.3.2
Buddypress 5.1.2
Website https://connect.commium.fr/
Theme : Woffice wordpressHi 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();
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,
SamP.S. I did post this to the plugin’s support forum, but I think they are between developers at the moment.
Topic: BBCode Plugins for BBPress ?
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.
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
Hi
If I disable comments completely on my wordpress site in the discussion settings will this affect bbPress or will bbPress function ok?
In the past I allowed comments but now I have bbPress I don’t want to allow comments anywhere except in bbPress topics/replies.
I ask because I know that bbPress takes moderation settings from Discussion settings.
Andrew
Hi, I would really like to give forum moderators access to the “Topics” and “Replies” section of the WordPress Dashboard. So they can easily see all replies and topics that need moderating in one place like I can as WP admin.
Is there a way to give moderators access to the WordPress Dashboard without giving them the full “Contributor” or “Editor” WP role capabilities?I have tried creating a custom role with the “User Role Editor” plugin, but can’t find a way to give them dashboard access, without also giving them the ability to edit non-forum posts on the website.
Or, does anyone know a way/plugin that shows moderators all the topics/replies that need moderating on the front end?
Thank you, Sam
WordPress 5.3.2
bbPress 2.6.3
bbPress – Moderation Tools plugin 1.2.4
User Role Editor plugin 4.52.2Topic: Import of data
We have exported our forum data using the wordpress menu – Tools – Export We have exported the Forums, Topics and Replies and then imported them to our new site. When looking at the WordPress menu it shows the 4 forums we have imported with the number of topics and replies but when you click on to view the forum we receive the following message
This forum has 963 topics, 2,570 replies
Oh, bother! No topics were found here.If I click on the Topics menu in the wordpress i can see all the topics and read them but does not show the replies but it has the replies cunt and voice replies
and if i click on the replies menu in WordPress i can see the replies
But not working all together – has any one got any suggestions
I have tried creating a new forum and this works fine so i know my theme etc works ok with forums we are using wordpress 5.3.2 and PHP 7
Thanks
David
WordPress 5.3.2 running Corvus theme.
BBPress Version 2.6.3
I have just updated BBPress and now my forum toolbar buttons are really hard to read.
How do I change the button text colour from white to black?(On the text tab, the visual tab is fine)
Here is a link to a topic:
Ive never understood why bbpress, wordpress or buddypress dont have option for random questions where Admin can setup a dozen or so questions and answers to registration form. Seems like a simple way to help fight spam registration and simple too! If answer is not correct then registration is not possible. Wangaurd plugin had this and never had spam registration when that was installed.
Must be a reason bbpress, wordpress or buddypress dont offer such a simple solution to at least help stop spam does anyone know why?