Patrik

Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,063 total)
  • Author
    Posts
  • in reply to: Bug in General>Login #6422

    Patrik
    Moderator
    Post count: 1971

    We are trying to add an option to that setting “default redirect” which will allow redirecting the user by default by WordPress or if by any plugin. You can wait for this or you can do some customization and achieve the things as well.

    Regards,
    Patrik

    in reply to: Users List View? #6421

    Patrik
    Moderator
    Post count: 1971

    Hi,

    For bootstrap, it will use only a grid layout for now. We will look into the list layout if we can add but you can use legacy design if you want to use the list layout for now.

    Regards,
    Patrik

    in reply to: Woocommerce Issues #6420

    Patrik
    Moderator
    Post count: 1971

    Hi,

    It is possible using the hooks and filters and there is no doc containing all the hooks and filters yet so you have to look into the code to do that. For sending multiple emails to admin you may use “uwp_send_admin_email_to” filter.

    Regards,
    Patrik

    in reply to: Social Login – Exisiting Accounts #6410

    Patrik
    Moderator
    Post count: 1971

    Hi,

    It’s only to allow a user to login/register using a social profile. There is no functionality to link a social profile using social add on.

    Regards,
    Patrik

    in reply to: User Bio #6407

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can also use our Recaptcha add on to prevent spamming on the form. See: https://userswp.io/downloads/recaptcha/

    Regards,
    Patrik

    in reply to: User Bio #6394

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The content added to the bio text area field will not allow adding HTML tags but if the URL is written then it will be considered as a plain text and will be allowed to store. To allow it for admin and authors roles only, you have to do some customizations as it is not possible at the moment to restrict it. You can make it optional field and give some class which you can hide using CSS if the current user is author or admin but if you are displaying bio on registration then there will be no idea if the user is admin or author.

    Regards,
    Patrik

    in reply to: Bug in General>Login #6393

    Patrik
    Moderator
    Post count: 1971

    Hi,

    If you are using a login form from UsersWP, we have to redirect the user to somewhere at least and that’s why there is no option to deselect the option. But we are thinking to add the “default redirect” option so that it will work like default WP redirect or may be allowed to redirect using another plugin.

    Regards,
    Patrik

    in reply to: Listings on Profile Page #6392

    Patrik
    Moderator
    Post count: 1971

    Hi,

    To open other CPT as default tab you can try to put the following code in your theme’s functions.php file or using Code Snippets plugin:

    add_filter('uwp_default_listing_subtab', 'uwp_default_listing_subtab_cb', 10, 1);
    function uwp_default_listing_subtab_cb(){
        return 'business';
    }

    Let me know if it resolves your issue or not.

    Regards,
    Patrik

    in reply to: Adding location pages #6347

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The location fields currently showing are the default locations where the custom field will display. If you want to add more locations then you can add but you have to handle it using your own code using customization. The default options are as per the following:
    – Users page: The field will display on users listing page “/users”.
    – More info tab: The field will display in More info tab in the user’s profile page.
    – Profile side: The field will display in the left side of profile tabs but it is only available for non-bootstrap design which can be set from UsersWP->General->Developer->Default design style
    – Fieldset: The field will display in the fieldset field created above this field in the form builder.

    Regarding the apostrophe issue, we have fixed in code and will be available in the next release of the plugin.

    Regards,
    Patrik

    in reply to: Fatal Error upon activation of MU Creator 1.0.3 #6346

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The admin details provided above is not working for me. Can you please check and let me know the correct details?

    Regards,
    Patrik

    in reply to: Woocommerce Issues #6345

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can directly put HTML code in the templates at UsersWP->Emails. If you want to do it via code then you can use filters provided in our UsersWP but that is part of customization.

    Regards,
    Patrik

    in reply to: Fatal Error upon activation of MU Creator 1.0.3 #6336

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Can you make sure you are using the latest version of the UsersWP core and it’s add ons? If yes then provide admin details in private reply to look more into it.

    Regards,
    Patrik

    in reply to: Geodirectory listings item edit format #6328

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can put the code from Snippets->Add new and then give it a title and put the following code in the Code area:

    add_action('wp_footer', 'wp_footer_cb');
    function wp_footer_cb(){
        ?>
        <script type="text/javascript">
            jQuery( document ).ready(function() {
                var $root = jQuery('html, body');
    
                if ( window.location.hash ) {
                    var hash = window.location.hash,
                        $hash = jQuery(hash);
    
                    $root.animate({
                        scrollTop: $hash.offset().top - 120
                    }, 500, function () {
    
                    });
                }
            });
    
        </script>
        <?php
    }

    Let me know if this helps.

    Regards,
    Patrik

    in reply to: View Password and Refresh Captcha is not working. #6327

    Patrik
    Moderator
    Post count: 1971

    Hi,

    We have resolved the issue regarding the captcha not allowing to login to you and the password is not displayed on click of an eye icon on your site. Please check and let me know if there are any other issues.

    Regards,
    Patrik

    in reply to: Woocommerce Issues #6324

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can redirect for auto approve action only but you can try to put following code in your functions.php file of currently active theme or via Code Snippets plugin and let us know if it works for your site or not:

    
    
    add_action('uwp_after_process_register', 'uwp_after_process_register_cb', 10, 2);
    function uwp_after_process_register_cb($data, $user_id){
        if(!empty($user_id) && $user_id > 0){
    	    $reg_redirect_page_id = uwp_get_option('register_redirect_to', '');
    	    $redirect_to = uwp_get_redirect_url($reg_redirect_page_id, $data);
    	    $redirect = apply_filters('uwp_register_redirect', $redirect_to);
    	    if(!wp_doing_ajax()){
    		    wp_redirect($redirect);exit();
    	    }
        }
    }

    Regards,
    Patrik

Viewing 15 posts - 301 through 315 (of 1,063 total)