Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-menu   php

Repository URL to install this package:

Version: 2.0.9 

/ plugins / woocommerce / functions.php

<?php
/**
 * Jet Woo compatibility
 */
/**
 * Fix for nonce user logged out
 */
add_action( 'init', function() {

	if ( ! is_user_logged_in() ) {
		add_filter( 'nonce_user_logged_out', function ( $uid , $action = -1 ) {

			if ( 'wp_rest' === $action ) {
				return get_current_user_id();
			}

			return $uid;

		}, 99, 2 );
	}
} ) ;