• Resolved icopydoc

    (@icopydoc)


    Thanks for the previous solution.
    I find new problem.

    “WP CRM” – “Settings” – “Select user roles that tasks, projects, and opportunities can be assigned to.”
    I marked all the checkboxes, but on page:
    “Tasks” – “New Task” – “Assigned to” I see only administrators of my website. Other users not in the list!

    PS. I want to translate your plugin to Russian language. It will be possible to send you the translation files? To include them in the plugin.

    https://www.ads-software.com/plugins/wp-crm-system/

Viewing 5 replies - 1 through 5 (of 5 total)
  • What are some of the user roles that are:

    1. Checked in the WP-CRM System Settings
    2. Have users assigned to those roles
    3. Are not showing up in the dropdown menu

    Also, to submit a translation, please visit https://www.wp-crm.com/contact/ and select “I would like to submit a translation” from the menu.

    Thread Starter icopydoc

    (@icopydoc)

    1. All users
    2. Subscriber, administrator
    3. all but the administrator

    See screenshot https://pixs.ru/showimage/12345jpg_9753939_19876140.jpg

    Thread Starter icopydoc

    (@icopydoc)

    PS not all the phrases ready to translate wp-crm-system.php

    “Attach to organization”
    “Assigned To”

    and so on not ready to translate
    please add __() in next versions of plugin

    Thread Starter icopydoc

    (@icopydoc)

    ADD.
    My function.php have this code:

    /* rename userr */
    function wps_change_role_name() {
        global $wp_roles;
        if ( ! isset( $wp_roles ) )
            $wp_roles = new WP_Roles();
    	$wp_roles->roles['editor']['name'] = 'Контролер';
    	$wp_roles->role_names['editor'] = 'Контролер';
    	$wp_roles->roles['author']['name'] = 'Реелтор';
    	$wp_roles->role_names['author'] = 'Реелтор';
    	$wp_roles->roles['contributor']['name'] = 'Пользователь';
    	$wp_roles->role_names['contributor'] = 'Пользователь';
    }
    add_action('init', 'wps_change_role_name');

    and this roles not showing in the dropdown menu ((
    but they showing in the settings page!

    Thread Starter icopydoc

    (@icopydoc)

    I know how to fix

    We need to database “wp_options”
    option_name “wpcrm_system_select_user_role”

    were written in the original role, and not their new names…

    example: Editor,Administrator,Author
    we now have: Контролер,Реелтор,CustomName

    need:
    $wp_roles->role_names[‘editor‘] = ‘Контролер’;
    $wp_roles->roles[‘author‘][‘name’] = ‘Реелтор’;

    You understand me?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Wrong settings’ is closed to new replies.