Search Results for '+.+default+.+'
-
Search Results
-
Hi,
if I click on “reply” for a comment I would expect the form to appear below that comment. This currently does not work due to a bug in reply.js (bbpress/templates/default/js/reply.js) in line 19.
reply.parentNode.appendChild(respond);
If you change it to the following, everything works fine:
reply.parentNode.appendChild(respond, null);Best Daniel
PS: Would be great to see development happen on github… đ
Topic: Change default path / url
Hi,
I need to change path URL to load bbPress resources because default domain is not “real” domain for users. For example:
To admin bbPress I have to go to http://www.my-admin-domain.com/wp-admin/ but, for the users, website is http://www.users-domain.com. The problem is that bbPress want to load resources from admin domain instead of users domain and first one is not accesible to load them.
How can I change this and configure it with users domain??
Thanks!
Hi dear support,
we have installed your plugin on our website and apparently it’s not working properly.
If we use the shortcodes to place it on some page:
It shows list of forums but once you try accessing some forum it shows empty page:
Also, the default forum page is not working:
http://jadran.paprikart.rs/forums/We already tried disabling all the plugins to rest assured that plugin conflict is not making some conflict there and it’s still not working.
WP version 4.9.1.
Can you please take a look at it and advise?
Thanks in advance!
SMF to BBPress â error utf8mb4
I am getting the same error as this post identifies:
WordPress database error: [Specified key was too long; max key length is 1000 bytes] CREATE TABLE wp_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_ci;But for Vanilla. It looks like an update to the importer is all that it took to fix this,
Thoughts?
Thanks for your time!!
â sdeeds
WP Version 4.9.1
Vanilla Version 2.3.1
bbPress Version 2.5.14Topic: Forums page: where is it?
Hi All,
I have installed ppPress and so far so good… I have also installed “Ultimate Member” in order to manage membership and visibility of content…
every page will have an option to be visible or not by registered members or not…
I wanted to put a “membership restriction to the home page of the forums (by default /forums), but they I look in the pages I cannot find it(even if it is clearly there in the website: http://italiancrypto.it/forums/)
anyone can explain where ti find it and how to “restrict the view to only registers members?
many thanks
Regads
Topic: Two URLs for same page
First of all Happy New Year to the whole bbPress community!
Right now I can access my Forum start page on two different Urls.
– https://www.ps4source.de/archiv/
– https://www.ps4source.de/forum/How can I disable the default one (archiv)?
Hello,
I have a issue, I want to have a code who works like this:
If user registered on English version – redirect to custom English registered successfully page
If user registered on French version – redirect to custom French registered successfully pageSo far I have made this below:
function bp_redirect($user)
$redirect_url = “”;if (defined(‘ICL_LANGUAGE_CODE’)) {
switch (ICL_LANGUAGE_CODE) {case ‘fr’:
$redirect_url = “https://mysite.com/fr/enregistrement-avec-succes/”;
break;default:
$redirect_url = ‘https://mysite.com/registration-successful/”‘;
break;}
bp_core_redirect($redirect_url);
}
return $redirect_url;
}
add_action(‘bp_core_signup_user’, ‘bp_redirect’, 100, 1);Unfortunately it is not working and I do not know what do do more to make it work.
Language plugin is WPML the language pages are http://www.mysite.com/fr , http://www.mysite.com/es etc,Please help me, I really need this script to be working.
Thank you so much