melindacooper
Forum Replies Created
-
Forum: Plugins
In reply to: [Force Login] Cannot get bypass to workThank you, i did get it work using this:
//Bypass Force Login to allow for exceptions. function my_forcelogin_bypass( $bypass, $visited_url ) { // Allow these absolute URLs $allowed = array('https://**********/registration/'); if ( ! $bypass ) { $bypass = in_array( $visited_url, $allowed ); } return $bypass; } add_filter( 'v_forcelogin_bypass', 'my_forcelogin_bypass', 10, 2 );
The reason it was breaking my website was because i forgot to remove below when adding to the functions.php file, was a stupid mistake:
/** * Bypass Force Login to allow for exceptions. * * @param bool $bypass Whether to disable Force Login. Default false. * @param string $visited_url The visited URL. * @return bool */
- This reply was modified 2 years, 3 months ago by melindacooper.
Forum: Plugins
In reply to: [WP Image Zoom] Zoom in overlayHi Diana, I have purchased and installed the pro version. All is now working perfectly, thank you for your assistance!
Forum: Plugins
In reply to: [WP Image Zoom] Zoom in overlayThanks, but that does not remove. If I purchase the pro version, this will be fixed??
Forum: Plugins
In reply to: [WP Image Zoom] Zoom in overlayHere is the page: https://tracker.winnowhost.com/
Scroll down and mouseover “Compliance” button and then select view reports. Overlay (pop-up) will open. you will see that the zoom is working very well. If you close the overlay, and then mouse over the laptop image you will see that the zoom is still active. How do i destroy the zoom when closing the overlay?
Thank you for a great plugin!
Forum: Plugins
In reply to: [WP Image Zoom] Zoom in overlayCan I send you the link to the page in private?
Forum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] Using table within Group field typeThank you, that worked!!