Search Results for 'wpml'
-
Search Results
-
I set up a basic site with WPML and when I have topics in the non default language and they have a parent forum, they wont show up in the Topic Archiv ( mydomain.de/languageslug/topics). If they have no parent forum they show up.
I have WP, bbPress, WPML up to date and in default language all topics show up in the topic archive but in translated languages Topics, that have a parent Forum don’t show up in there. They only appear if there is no forum set.
Hello, i am using this code Part to show latest Topics in certain Forums. It is giving the correct Topic ids but wont show them except of original Language even if i opened it in a different language first.
<section class=”topics”>
<div id=”bbpress-forums” class=”bbpress-wrapper”>
<h3><?php echo __(‘Recent Topics’, ‘WordPress’); ?></h3>
<?php
$topic_parents = array();
foreach ($match_parent_ids as $match_parent_id) {
$match_ids = get_children(array(
‘post_parent’ => $match_parent_id,
‘post_type’ => ‘forum’,
‘fields’ => ‘ids’,
));foreach ($match_ids as $match_id) {
$topic_ids = get_children(array(
‘post_parent’ => $match_id,
‘post_type’ => ‘topic’,
‘fields’ =>’ids’,
));foreach ($topic_ids as $topic_id) {
echo $topic_id;
}$topic_parents = array_merge($topic_parents, $topic_ids);
}
}
$args3 = array(
‘post__in’ => $topic_parents,
‘post_type’ => ‘topic’,
‘post_status’ => bbp_get_public_status_id(),
‘posts_per_page’ => 10,
‘orderby’ => ‘freshness’,
‘order’ => ‘DESC’,
);if (bbp_has_topics($args3)) :
bbp_get_template_part(‘loop’, ‘topics’);
else :
bbp_get_template_part( ‘feedback’, ‘no-topics’ );
endif;?>
</div>
</section>
Thanks for helping
Hi,
I’m using WPML for translating forums from Spanish to Korean.
Each time I translate a forum, a new forum with a new Forum ID is created. So, I have one forum in Spanish and another in Korean.
However, I would like to have Topics in both languages in the same Forum.
Does anybody know how to solve this?
Thank you in advance.
Hi everyone,
we’re currently using bbPress in conjunction with WPML and LearnPress. With that setup, I’m encountering a couple of problems:
1. With WPML, we want to enable users to switch between English and Spanish. I’ve run the string scan via WPML and most strings are already there in Spanish as well as get displayed correctly when the language is set to Spanish. However, there are certain strings that didn’t have translations and that we manually translated – but they don’t show up on the frontend, somehow they remain in English there.
Here’s an example of a such a string. and here’s a corresponding screenshot of the frontend.
2. We’d like to customize the date format so that it displays “Hace 2 Semanas” as “hace 2 semanas” in the last post column, for example. It seems like this would need to be changed in the php files, as with the string translations, that’s just a placeholder? But where exactly would this need to be changed?
3. Also, no breadcrumb is being displayed at all. Is there some setting I’m missing where this can be turned on?
(WP 5.6.1, bbPress 2.6.6)
Thanks in advance, I’d very much appreciate your help with these issues!
All the best,
ChristinaHi – I am new to BBP and this may be a really obvious question.
I am running Avada 7.02 on WP 5.5.1
I have set up the registration and lost password and forum pages – I have allowed anyone to register in settings – however when I test the registration page, it allows me to fill in the Username and email panels. But when I click the register button the page redirects to a 404 page and the registration does not complete. (If the solution is blindingly obvious, please be gentle! but still let me know)
Any ideas, solutions gratefully received.
The plugins live on the site are
ManageWP – Worker by GoDaddy
WPML Multilingual CMS by OnTheGoSystems
Yoast SEO Multilingual by OnTheGoSystems
bbPress by The bbPress Contributors
Contact Form 7 Multilingual by OnTheGoSystems
Cookie Notice by dFactory
Ditty News Ticker by Metaphor Creations
Ditty Twitter Ticker by Metaphor Creations
Easy Hide Login by Arshid
Feed Them Social – for Twitter feed, Youtube, Pinterest and more by SlickRemix
Avada Builder by ThemeFusion
Avada Core by ThemeFusion
Avada Custom Branding by ThemeFusion
LiteSpeed Cache by LiteSpeed Technologies
Mailchimp for WooCommerce by Mailchimp
MC4WP: Mailchimp for WordPress by ibericode
Wordfence Security by Wordfence
Yoast SEO by Team Yoast
WPForms Lite by WPForms
MailChimp for WordPress Multilingual by OnTheGoSystems
WPML Media by OnTheGoSystems
WPML String Translation by OnTheGoSystems
WPML Translation Management by OnTheGoSystemsThe site address is micro-oiseau.com
Many thanks in advance.Have a great weekend
Ned
Hello
I have a conflict with “Turning on UsersWP bbPress and bbpress breaks WPML and Elementor”
when I want to edit my homepage in elementor, i get a white page.
We updated the memory allocation, it does not help.
when i deactivate bbpress, then all is fine…
Help 🙂Hi
I use WordPress 4.9.8 and some plugins such as Woocommerce, WPML, WP Job Manager and BuddyPress at my website. Today I installed bbPress but I found a conflict with other plugins. When I try to access wp-admin page, it is not loaded correctly and loading is stopped by displaying white page. It is a bad problem, because I can not access to dashboard after login. Please guide me.Thanks
Topic: bbpress language resets
Hello.
I am have successfully setup bbpress using the “second” method.
My site is multi-language (en/he/ru) so I have a different page for each “forum” page so it has a different language. For example
site.com/en/forum <- English version.
site.com/he/forum <- Hebrew version.
Each of this pages has the “[bbp-forum-index]” tag, bbpress appears on the correct page language and I can see the translation is working.The problem is that as soon as I click any link inside the bbpress, the language immediately switches to English.
How can I configure bbpress to maintain the language ?
I am using Polylang as the translation plugin. (WPML compatible)
Thank you.
EN(English) and TC (Traditional Chinese) . Forum and topics seems to be working properly during the translation. But when it come to the replies section, I tried translating and it saves properly, but upon visiting the replies for the translated language TC the reply being translated cannot be seen. it says it is done translating to TC but the post reply cannot be seen. Is this a bug?
I was integrating the WPML for bbpress and it was going well until in the reply thread.
I have a multilingual site and I’m using wpml.
I have 2 forum topics in Hebrew and none in English (currently).
I’ve set up link to the forum pages
http://www.israelquilt.com/en/forums/
and http://www.israelquilt.com/forums/
but both pages are showing the 2 hebrew forums. I don’t want the hebrew forums to show on the english page, I only want the forums of that language to show.
How do I do this?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
Hello! On the forum i am trying to build it appears that Participants can only reply to a message and not edit their own messages, unless its a fresh reply and during the first minutes and in that case the edit link appears. But when the participant comes back on the forum after a longer period, only the “Reply” link appears, even on its own message.
On my previous question on your forum (https://bbpress.org/forums/topic/404-error-with-edit-on-a-wpml-multilingual-forum/) I experienced the same thing, but is it the normal function or should I see the “Edit” link ?
Is there a way for a participant to edit its own messages regardless of time ?