• Resolved joelee2024

    (@joelee2024)


    Hello can you guys help me with some editing please.

    1, How to remove dashboard tab in user account menu.

    2, How to add the option for users to delete account

    3, How to user roles for different account types with custom fields if possible.

    4, How to make all chat messages send emails for each message send online or offline please

    5, How to remove grid view in listing search if possible

    6, How to add option for search by Distance in listing search page

    7, How can I allow users to also send images and videos in the chat please

    8, How to country restriction in the maps to only show addresses from the country of choice.

    Thanks alot if you guys can help

Viewing 1 replies (of 1 total)
  • Plugin Support Ali Akbar Reyad

    (@alireyad)

    Hi,
    1. To remove dashboard menu item from myaccount add following code in child theme functions.php file

    add_filter('rtcl_account_menu_items', function($items){
    unset($items['dashboard']);
    return $items;
    });

    2. To add this functionalities you have to customize myaccount and have to add code for this action.

    3. We don’t have the feature, need customization registration form to add it.

    4. Right now, only first chat message email to listing owner. For all chat need to implement it.

    Need customization to implement rest of the point also. If you want to implement it as customization, you can create support ticket from our site.

    Thank you

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.