Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'translation'

Viewing 25 results - 101 through 125 (of 1,070 total)
  • Author
    Search Results
  • #303153
    faris2022
    Participant

    I think yes it is still BuddyPress registration page because I am seeing the same texts for both registration page and BuddyPress backend loco translation setting.

    faris2022
    Participant

    WordPress 5.1
    BuddyPress version 4.2.0

    I created my WordPress website using a premier theme called WPLMS. I translated most of the website plugins by loco translation but I am facing issue with BuddyPress plugin, it is not translating the registration page and other related pages such as activating the account and so on… even though I manually translated the required texts into Arabic, I can see that it only works with the profile account page. And since it translating the login form which is part of BuddyPress plugin, I think there is an issue somewhere in BuddyPress. wish someone gets me to the right solution. thanks in advance

    #282853
    Mike Witt
    Participant

    Great. I didn’t realize that (about translations). That sounds very useful. Thanks!!!

    #282851
    Venutius
    Moderator

    There’s two options, you could either overload that file, by placing your edited file in the wp-content/themes/your-child-them/buddypress/members/single directory or the other option is to create your own translation of the BuddyPress text. This last option is preferred, in general overloading files adds to the admin burden as you will need to kepp track of changes in the master file.

    To do the translation you would need to download PoEdit and follow this:

    Languages and Translations

    You just set up a translation of your own language which removes the text.

    Also, to manage translations, use the WPT Custom Mo File.

    This is handy because as you develop your site you are bound to come across other instances in BuddyPress and other plugins where you would prefer to change the text.

    Prashant Singh
    Participant

    Let me show you the way to do it and maybe you are missing one important stuff and that is the theme translation. Please check the video I made for you to explain the working: https://screencast-o-matic.com/watch/cF6O0lY5iP

    #279252
    Prashant Singh
    Participant

    You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.

    You can remove this message easily. Just install the plugin loco translate and find this message there and in translation just hit a space or you can easily write ‘Account is held for moderation’

    Thanks

    #278940

    In reply to: BP and Polylang

    Prashant Singh
    Participant

    I have not tested it yet but after the translation please try to regenerate the mails.

    Go to wp-admin > Tools > BuddyPress and run the “Reinstall emails” tool.

    Reference: https://buddypress.org/support/topic/translation-email/

    #278607
    Prashant Singh
    Participant

    First replace the code for redirection with this code, remember that we have to just change the redirect code not the translation code.

    function ps_redirect_next_group() {
    	
       	if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) {
    		return;
    	}
    	
    	$group_id = bp_get_current_profile_group_id()+1;
    	if ( bp_get_current_profile_group_id()==6 ) { 
                   // 6 is the last group id, please change if it is anything else
    		bp_core_redirect(bp_displayed_user_domain()."profile/");
    	}else{
    		bp_core_redirect(bp_displayed_user_domain()."profile/edit/group/$group_id/");
    	}
    	
    }
    add_action( 'xprofile_updated_profile', 'ps_redirect_next_group' );

    And now to show the button:

    add_action( 'bp_after_profile_edit_content' , 'ps_show_button_after_step');
    
    function ps_show_button_after_step(){
       if ( bp_get_current_profile_group_id()==4 ) {
        ?>
          <input type="button" name="profile" id="profile" onClick="window.location.href='<?php echo 
          bp_displayed_user_domain()."profile/";?>'" value="Exit"/>
        <?php
       }
    }

    Thanks

    #278562
    Prashant Singh
    Participant

    For the activation and welcome messages you can find them in Email menu in dashboard. Find the one that you want to edit and add your text there and then test.

    If wants to do it with code then please check this https://websistent.com/custom-buddypress-activation-email/

    Same for the translation. You can change the content there in the Email menu.

    Please see: https://prnt.sc/l5n76g

    Thanks

    #278387

    In reply to: Translate the emails

    Prashant Singh
    Participant

    Hi,

    Please check this: https://buddypress.org/support/topic/translation-email/

    Just need to go to Dashboard > Emails and customize any email.

    Thanks

    #276716
    r-a-y
    Keymaster

    You should post on the bbPress forums:
    https://bbpress.org/forums

    bbPress handles the forum aspect of your site. It looks like Turkish should be supported based on the community’s translation efforts:
    https://translate.wordpress.org/projects/wp-plugins/bbpress

    #276310
    Prashant Singh
    Participant

    Hi,

    To change the email content please find the respective mail on emails tab(dashboard->emails). It will be ‘activate your account’ mail that you need to edit.

    To change the registration confirmation you can use any language translation plugin like loco translate and find the message there and translate it to your text.

    Thanks

    #276121
    akenach
    Participant

    @prashantvatsh It does not work, the variables that it puts in the header are not included in the translation document. The system takes the user name and prints it in the header, what I need is to know where it prints to be able to change it.

    Anyway thank you very much

    #275531
    r-a-y
    Keymaster

    I’m not sure. Perhaps there is something being lost in translation in your description.

    Can you take screenshots or a GIF to demonstrate your problem? Perhaps it’s browser-related? Could also potentially be a plugin conflict.

    Here’s a quick GIF I took:

    GIF of mention

    Pressing on “Public Message” takes me to the Site-wide Activity page with the user’s mention name. I click inside the textarea and write something. Hover over the “Post Update” button and it’s the hand cursor. I click on “Post Update” and wait for it to post. It successfully posts (you can’t see the post because I didn’t increase the height of the GIF.

    This is in Chrome.

    Venutius
    Moderator

    the line esc_html__( ‘%1$s started the topic %2$s in the forum %3$s’, ‘bbpress’ ) presents the phrse “started the topic in the forum” to WP translation as part of the bbpress translation component. This means that you can create you own translation (alternative text) for the bbpress string using poedit and maybe WPT Custom MO File in order to get your system to use your translation for your site.

    See https://codex.buddypress.org/translations/ and https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/ obviously these pages are for BuddyPress, not bbPress but it’s the same principle.

    techinfancy
    Participant

    can you please elaborate? have not heard of translation before.

    Venutius
    Moderator

    Couldn’t you just change that via translation?

    #275211
    Henry Wright
    Moderator
    #274749
    Venutius
    Moderator

    You can add fields via Users/Profile Fields, captcha would normally be added via a plugin. To change the text what I normally do is create a custom language translation file using Poedit.

    #274521

    In reply to: How to change language

    Varun Dubey
    Participant

    @filozof86 check inside theme translation string or contact with theme support.

    #274203

    In reply to: Description Groups

    edukedaventura
    Participant

    Another problem that I find in the Nouveau template is that “Group Administrators” is not translated into Spanish.
    In the Legacy template pack if the translation works but the size is very big and ugly.
    Please, if you can solve these problems I thank you

    #273790
    Paul Wong-Gibbs
    Keymaster

    We have this fixed for our next release, v3.1. This will be released next week (Wednesday) at the latest. The bug was addressed at https://buddypress.trac.wordpress.org/ticket/7869


    @alpokoskiniva
    “Repair email” deletes the emails from the “Emails” menu, then re-adds them. You don’t need to do this unless you’ve added a translation to your site after installing BuddyPress, and want the translated emails, or if you’ve made a code change to the email language in the BuddyPress files, which is what @filipponeri20 has done. We strongly recommend that no-one ever changes a core file of BuddyPress, because it will be overwritten when you update.

    #273511
    Venutius
    Moderator

    You should be able to change the wording using the translation file and poedit.

    Languages and Translations

    I also recommend using WPT Custom MO File to manage your translations.

    #272945
    Venutius
    Moderator

    To change the name of tabs etc you need to look into setting up a custom translation file. All the visible labels are able to be translated, so you can change them how you like.

    You can use poedit to create your translation file and WPT Custom Mo File to install the translation onto your site.

    Languages and Translations

    #272777

    In reply to: sitewide notice

    sugar7
    Participant

    The first file;
    <?php
    /**
    * @package Boss Child Theme
    * The parent theme functions are located at /boss/buddyboss-inc/theme-functions.php
    * Add your own functions in this file.
    */

    /**
    * Sets up theme defaults
    *
    * @since Boss Child Theme 1.0.0
    */
    function boss_child_theme_setup()
    {
    /**
    * Makes child theme available for translation.
    * Translations can be added into the /languages/ directory.
    * Read more at: http://www.buddyboss.com/tutorials/language-translations/
    */

    // Translate text from the PARENT theme.
    load_theme_textdomain( ‘boss’, get_stylesheet_directory() . ‘/languages’ );

    // Translate text from the CHILD theme only.
    // Change ‘boss’ instances in all child theme files to ‘boss_child_theme’.
    // load_theme_textdomain( ‘boss_child_theme’, get_stylesheet_directory() . ‘/languages’ );

    }
    add_action( ‘after_setup_theme’, ‘boss_child_theme_setup’ );

    /**
    * Enqueues scripts and styles for child theme front-end.
    *
    * @since Boss Child Theme 1.0.0
    */
    function boss_child_theme_scripts_styles()
    {
    /**
    * Scripts and Styles loaded by the parent theme can be unloaded if needed
    * using wp_deregister_script or wp_deregister_style.
    *
    * See the WordPress Codex for more information about those functions:
    * https://codex.wordpress.org/Function_Reference/wp_deregister_script
    * https://codex.wordpress.org/Function_Reference/wp_deregister_style
    **/

    /*
    * Styles
    */
    wp_enqueue_style( ‘boss-child-custom’, get_stylesheet_directory_uri().’/css/custom.css’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘boss_child_theme_scripts_styles’, 9999 );

    /****************************** CUSTOM FUNCTIONS ******************************/

    // Add your own custom functions here

    ?>

    The second contains:

    <?php

    if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
    define( ‘BP_AVATAR_THUMB_WIDTH’, 35 ); //change this with your desired thumb width

    if ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
    define( ‘BP_AVATAR_THUMB_HEIGHT’, 35 ); //change this with your desired thumb height

    ?>

Viewing 25 results - 101 through 125 (of 1,070 total)
Skip to toolbar