Search Results for '"wordpress"'
-
Search Results
-
Wordpress 4.7
bbPress 2.5.12Hi, I want to create different sections in my forum like on this picture
I’ve tried to make categories and then add forums to it but always the result is not like I want… Do anybody know how to do that?
It is probably very easy;)Hi,
WP 4.7, latest BBpress. I have a multisite: swissinformatic.org, magazine.swissinformatics.org, [other stuff]swissinformatics.org. My mail server is @swissinformatics.org and the plugin picks up$_SERVER['SERVER_NAME']
to create the no reply address.
COULD YOU HELP US with a setting box to supersede this value?
Meanwhile I replaced it with my site name in the functions.php code, but mind the next plugin update!
$sitename = strtolower( ‘swissinformatics.org );
Always beware of “Educated guess’ I’m not going to buy a mail server for each subdomain and with the present security of providers,…
I also created a no reply alias of my administrative e-mail address.
Everything is fine nowSubscriptions ***********************************************************/
/**
* Get the “Do Not Reply” email address to use when sending subscription emails.
*
* We make some educated guesses here based on the home URL. Filters are
* available to customize this address further. In the future, we may consider
* usingadmin_email
instead, though this is not normally publicized.
*
* We use$_SERVER['SERVER_NAME']
here to mimic similar functionality in
* WordPress core. Previously, we usedget_home_url()
to use already validated
* user input, but it was causing issues in some installations.
*
* @since bbPress (r5409)
*
* @see wp_mail
* @see wp_notify_postauthor
* @link https://bbpress.trac.wordpress.org/ticket/2618
*
* @return string
*/
function bbp_get_do_not_reply_address() {
$sitename = strtolower( $_SERVER[‘SERVER_NAME’] );
if ( substr( $sitename, 0, 4 ) === ‘www.’ ) {
$sitename = substr( $sitename, 4 );
}
return apply_filters( ‘bbp_get_do_not_reply_address’, ‘noreply@’ . $sitename );Hi guys, I will just say first that I do not know much about coding.
I just installed bbpress and now i have this error come up in my wordpress dashboard
Warning: preg_match(): Unknown modifier ‘0’ in /home2/eli/public_html/juniortactician.com/wp-includes/class-wp.php on line 231
Warning: preg_match(): Unknown modifier ‘0’ in /home2/eli/public_html/juniortactician.com/wp-includes/class-wp.php on line 232
the code on those lines are as follows:
if ( preg_match(“#^$match#”, $request_match, $matches) ||
preg_match(“#^$match#”, urldecode($request_match), $matches) ) {what does this mean and how can I get rid of it?
Thanks in advance.
Hello,
I have used Image Upload for BBPress to upload and attach image to forum.
my problem is image is not responsive. It will just shrink its width. I tried playing with firbug and remove image attributes and set max-width to 100%.
It works… Now my problem is which file to edit and how. Im not a coder. I just learned css and have little understanding on php…Topic: bbPress error
bbPress tell me error with the WordPress version (4.6.1), when I install crashes the site and view the error page. Why does this happen?
I am in the process of creating a bbpress forum.
How can I remove the admin toolbar and deny dashboard access to members? Is there a setting that I am missing? If not, are there any plugins that you recommend?
Is it possible to integrate wordpress, bbpress and buddypress so that a user’s profile shows
1. wordpress posts
2. wordpress comments
3. Forum topics
4. Forum replies
5. Buddypress status updates.How can I achieve this?
Thank you.I am having trouble importing from SimplePress to bbpress. I’m not sure what the table prefix is supposed to be. I tried wp_ and that didn’t import anything. I tried wp_sf (I think that is the beginning of tables for SimplePress but get this error
Repair any missing information: Continue
WordPress database error: [Specified key was too long; max key length is 1000 bytes]
CREATE TABLE wpzu_bbp_converter_translator ( meta_id mediumint(8) unsigned not null auto_increment, value_type varchar(25) null, value_id bigint(20) unsigned not null default ‘0’, meta_key varchar(255) null, meta_value varchar(255) null, PRIMARY KEY (meta_id), KEY value_id (value_id), KEY meta_join (meta_key(191), meta_value(191)) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;Is there anything I can do to get this import done?
Hi,
I want to use bbPress for a forum on a site running WordPress 4.7 with the 2016 theme. I have a problem with the space that is (not) used by the forums: there is unused white space to the left of anything created by bbPress.
It can be seen here: Forums
If you compare this to e.g. this page, you can see the unused space.This happens wether I use the sidebar or not. I don’t know what causes this, but maybe anyone can help?
Hello,
I’m moving to a new WordPress installation.
However, unfortunately I cannot just export my database. I’m on a host that has a very customized WordPress (I’m with Rainmaker, in case you’ve heard of them). I’m moving to a self-hosted WordPress where I have complete access to the database.
I cannot install any plugins on the old host.
I tried exporting the forums, topics, and replies. But, they are left without being associated to one another.
I’m not sure if it’ll change anything if I export it all at once. There’s a lot of other content, so I wanted to try to do it on its own.
What’s the best way to export my bbpress data so I can import it to my new WordPress installation?
Thanks for your help.
I am developing an android app for my wordpress forum. Please is there any way I can create new users and login old ones programmatically? Maybe a rest API or something.
Please you can show the code in php or any language of your choice.