Damian
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Broken Access VulnerabilityWe are already in touch with patchstack so they can update the records. Sorry for the delay
That’s incorrectly flagged, the plugin latest version fixes it. Anyway that was a minor security issue that only another admin could exploit, so is nothing to worry really.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Broken Access VulnerabilityHi @jebeze the issue was fixed on the last update.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Plugin dont workI do see the popup now.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Plugin dont workCould you share a screenshot of the rules you are using?
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] close button in pop up?Could you please create a test page with the popup and closing button not working and closing class not working so we can check?
HI, Can you share you popup rules that is orinating that error ? I can’t reproduce it.
If you have multiple popups please deactivate them until you see which one is causing the error.
Thanks
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Editor not workingHi Oliver , no without access to admin. Please send login in https://wppopups.com/contact/
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Editor not workingHi Oliver,
Try deactivating other plugins, Some other plugin is probably creating a conflict. Also please if you a have a premium license continue support in https://wppopups.com/account/support/
You will have to play with it, but the code should be this and it’s using jquery $target.is() function so you need pass a selector
add_action('wp_footer', function(){
?><script>
window.wp.hooks.addFilter('wppopups_disable_click_out_classes', 'wppopups', function (classes) {
return classes + ',#your-selector';
});</script>
<?php });Hi Martin,
The issue is that the popup is built to detect clicks outside of it and if someone clicks outside of the popup it will close it.
That behaviour can be canceled in the premium version, so the popup always remains open unless the user clicks on a desired button inside the popup.
You could add some javascript code to instruct the popup not to close if the click is made on certain class. Do you know the class of the buttons or cookie box that shouldn’t close “our popup” ?Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Site broken when using latest versionExactly that. Mobile_Detect is a famous library and we use composer to load it, which prevents conflicts, but it seems other plugin is loading it directly which is creating conflicts. There is no much we can do about it other that find that plugin and tell the developer to load the library correctly
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Site broken when using latest versionIT seems another plugin on your site is using that library and is not loading it correctly like with composer or some other library helper that avoid these issues. Please try deactivating other plugins one by one to find which one is causing the issue.
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Button closeSimply add the class attribute “spu-close-popup” to any html button. For example:
<button class=”spu-close-popup button”>Close Popup</button>
That shouldn’t be the case. Have you tried deactivating other plugins to see if any is affecting?