• Resolved justano

    (@justano)


    Hello.
    Thanks for the wonderful plugin.
    Is it possible to not show thumbnail in posts on user’s profile?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    The easiest way is to hide it with the CSS or you can override the template in the theme and modify it accordingly. Can you try the following code by putting it into the Appearance->Customise->Additional CSS and let me know if it works for you or not?

    .bsui .uwp-profile-content .embed-responsive {
        display: none !important;
    }

    Regards,
    Patrik

    Thread Starter justano

    (@justano)

    Hello.
    Thank you so much,it worked.

    Thread Starter justano

    (@justano)

    Also,in “notifications” tab in user’s account page,it shows “You will see options to disable the active notifications for UsersWp and it’s add ons”.
    Is it possible to hide the “notifications” tab?

    Hi,

    You can use the following code in your functions.php file of the currently active theme or using the Code Snippet plugin:

    add_filter('uwp_account_available_tabs', 'uwp_account_available_tabs_cb');
    function uwp_account_available_tabs_cb($tabs){
        unset($tabs['notifications']);
        return $tabs;
    }

    Let me know if this works for you or not.

    Regards,
    Patrik

    Thread Starter justano

    (@justano)

    Hello.
    The code worked.
    Thank you very much.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to not show thumbail’ is closed to new replies.