• Hi team, we are facing problems in all our jobs publishing sites after last UM plugin update.

    The problem is that when we suspend accounts (ex: companies that do not comply with jobs publication terms and conditions), they can keep login and publishing. So they receive the email with account suspended, in wordpress users their account is suspended, but they can keep login and publishing jobs, so we need to urgently solve this situation, as there is no way from our side to fix that situation and really, we are running into problems.

    We don´t have any suspend account, Reject Membership or Deactivate plugins or so, we have being suspeding accounts for 7 years using your plugin and worked fine, as is your member plugin the one that works with this.

    The problem is that we had everything working fine since all this past time, untill this last update, so we really need help.

    Coiuld you plese help us?

    Thanks in advance for your time.

Viewing 15 replies - 61 through 75 (of 87 total)
  • @ibiza69

    Insert the shortcode to an UM page where you can monitor the rejected logins and the mistyped passwords. Many users request a new password without trying to login first and get a password error.

    Why don’t you try to turn off your email notifications?

    Thread Starter ibiza69

    (@ibiza69)

    We preffer not to have that option, with shortcode please.

    And, about email notifications are because we activate companies accounts manually to review they are honest and official, not frauds. We too check candidates registrations manually, to see if they are too scams. This is why we have email notifications activated…

    @ibiza69

    OK, I will make the code snippet updated without the shortcode option for you now.

    Thread Starter ibiza69

    (@ibiza69)

    Thank you, could be possible to inform me when you have it for download, no quick, but just for downloading and updating the code 🙂 Thank you!

    @ibiza69

    It’s available for download now from same link as before.

    Thread Starter ibiza69

    (@ibiza69)

    Thank you @missveronicatv

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ibiza69

    Sorry for the late response. Are you still having issues?

    Regards,

    Thread Starter ibiza69

    (@ibiza69)

    Hi @champsupertramp, @missveronicatv helped us with a code snippet, but we can’t really know if it works untill we face the problem again with another user. Thank you.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ibiza69

    Thanks for letting us know. Let us know if you encounter the issue again so we can help with the investigation.

    Regards,

    Thread Starter ibiza69

    (@ibiza69)

    Hi @champsupertramp & @missveronicatv, the snipped didn´t work, companies suspended can keep posting, should we take off the snipped as isn´t working? And any other way for solving the situation please, it’s a bit urgent, as anyone can access to site with their account suspended. Thank you for your time.

    @ibiza69

    Yes you can delete the code snippet as it didn’t catch the suspended company.

    Next attempt to stop posting jobs is to check the user account status at the “Job Manager” submittal.

    What do you think about a code snippet that will check the UM Account Status during the processing of the job submittal and if not Approved take action by logging out the user?

    I can make a shortcode to list a log when this logout happens.
    If you still dislike the shortcode idea let me know.

    • This reply was modified 2 years, 2 months ago by missveronica.
    Thread Starter ibiza69

    (@ibiza69)

    Thank you @missveronicatv for wrtting back. The point it’s that WP Job Manager only has the option to publish jobs, but not to administrate accounts, we left this option to UM, when we created the system (7 years ago). More, WPJM didn´t update the plugin since a lot of months ago, about 6 or 7 months ago aprox. I think and this that is happening started to happen after UM updates, so I don´t think has anything to do with WPJM.

    Creating an snipped only for companies that CAN login and access to our candidates directory, with thousands of members profiles with any problem, untill they post a job offer and then log them out, don´t think is a secure and stable solution, either as because the same thing happens with candidates with suspended accounts, that can too login, so we should see why users of all types can login with their accounts suspended at UM plugin if possible, as is what we expect, as per using the UM plugin for all this things and that worked well untill something happened and now it doesn´t provide that secure option of suspending users accounts correctly.

    Thanks once more @missveronicatv.

    Thread Starter ibiza69

    (@ibiza69)

    Sorry @missveronicatv I found this 2 snippets at child thing, but don´t think they can affect all this we are talking about. Those was Nikita from UM team that included for us thru FTP. Maybe you want to take a look at our site admin, plus site FTP, so can check internally and see our other personal code snippets, as we cen´t publish them to public:

    add_action( 'wp_footer', 'um_custom_unbind' );
    
    function um_custom_unbind() {
    	?>
    	<script type="text/javascript">
    		jQuery(function () {
    			jQuery('.um-form [placeholder], .um-directory [placeholder]').each(function (i, item) {
    				if (item.placeholder === item.value) {
    					item.value = '';
    				}
    				jQuery(item).unbind('focus').unbind('blur').focus().blur();
    
    				if ( i == jQuery('.um-form [placeholder], .um-directory [placeholder]').length - 1 ) {
    					jQuery("html, body").animate({
    						scrollTop: 0
    					}, 100);
    				}
    			});
    		});
    	</script>
    	<?php
    
    }
    
    // Ultimate Member Verify Email
    function um_custom_validate_useremail( $key, $array, $args ) {
    if ( isset( $args[$key] ) && $args[$key] !== ($args['user_email'])) {
    UM()->form()->add_error( $key, __( 'Verifique que ambos correos electrónicos coincidan.', 'ultimate-member' ) );
    }
    }
    add_action( 'um_custom_field_validation_confirm_email', 'um_custom_validate_useremail', 30, 3 );
    • This reply was modified 2 years, 2 months ago by ibiza69.
    Thread Starter ibiza69

    (@ibiza69)

    @missveronicatv I saw this other snippet, that belongs to All In One Seo, as was creating some errors in the past to UM and they included this one, maybe helps:

    //All In One Seo - Ultimate Member
    add_filter( 'aioseo_disable_shortcode_parsing', '__return_true' );

    @ibiza69

    What do you think about a code snippet that will check the UM Account Status

      during the processing of the job submittal

    and if not Approved take action by logging out the user?

    I must add to this quote: to log the User out before posting the job offer.

    You wrote:

    they post a job offer and then log them out

    • This reply was modified 2 years, 2 months ago by missveronica.
Viewing 15 replies - 61 through 75 (of 87 total)
  • The topic ‘Problems with last update’ is closed to new replies.