dougcoxnc
Forum Replies Created
-
Forum: Plugins
In reply to: [Force Login] WooCommerce – Whitelist Password Reset linkKevin,
Thank you for the quick response! So I made you suggestions, and it fixed the error. But then the code did let me get to that page I needed.
So I switched to the your other code – Method 1
SUCCESS!! Thanks again!!
`/**
* Bypass Force Login to allow for exceptions.
*
* @param bool $bypass Whether to disable Force Login. Default false.
* @return bool
*/
function new_forcelogin_bypass( $bypass ) {
// Get visited URL without query string
$url_path = preg_replace(‘/\?.*/’, ”, $_SERVER[‘REQUEST_URI’]);// Allow URL
if ( ‘/my-account/lost-password/’ === $url_path ) {
$bypass = true;
}return $bypass;
}
add_filter( ‘v_forcelogin_bypass’, ‘new_forcelogin_bypass’ );Hi There,
Having the same problem as the folks above.
Try to create a new gallery it and it just does not show up in menu for adding pictures. I can see that the folder was created (when I view it, via FTP), but it does not show up in the backend Admin when I want to start uploading images:
What I’ve done so far
– turned off all plugins
– downloaded the new Beta 1.9.11
– currently have the beta running
– have not had Jetpack installed
– tried “activate permalinks”
– tried changing permalinks to postname
– running WP 3.5.1
– running a current Canvas theme 5.0.13All so far with no luck…. New galleries still not showing up in admin
Any more thoughts?
thanks