Nikolay Nikolov
Forum Replies Created
-
Forum: Reviews
In reply to: [Make Tables Responsive] Beauty in simplicityGreat, thanks for the review.
Forum: Plugins
In reply to: [Simple Login Captcha] Disable for WooCommerceHi.
Use this code to disable it on any page that contains a certain string in the URL address. Edit the values inside the $disable_strings array to match your conditions. There are two values there now, but could be more separated by comma, or only one, without the comma then.
There is also another array $protect_strings which contains strings that if contained in the URL, the captcha will always work even if the disable strings are present. This is to make sure it works on wp-login.php even if we add some part at the end of the URL that contains disable strings.
add_action( 'plugins_loaded', 'disable_slc_on_some_pages' ); function disable_slc_on_some_pages() { $disable_strings = Array( '/my-account/', '/some-other-example/' ); $protect_strings = Array( 'wp-login.php' ); foreach ( $protect_strings as $protect_string ) { if ( strpos( $_SERVER['REQUEST_URI'], $protect_string ) !== false ) { return; } } foreach ( $disable_strings as $disable_string ) { if ( strpos( $_SERVER['REQUEST_URI'], $disable_string ) !== false ) { remove_filter( 'authenticate', 'slc_validate_login_form', 10, 3 ); remove_action( 'woocommerce_login_form', 'slc_woo_login_form_captcha', 9999999999 ); remove_action( 'login_form', 'slc_login_form_captcha', 9999999999 ); remove_filter( 'login_form_middle', 'slc_add_to_wp_login_form', 9999999999 ); break; } } }
Regards.
Forum: Reviews
In reply to: [Make Tables Responsive] ExcellentGreat, thanks ??
Forum: Reviews
In reply to: [Make Tables Responsive] Too easy to useThank you, great to hear it.
Forum: Plugins
In reply to: [WP Social Comments] Not working if logged out of FB and console errorAh, OK, thanks.
Forum: Plugins
In reply to: [WP Social Comments] This plugin is very dangerous@yourbttclub
Which lines of code in which file of this plugin do you think is the dangerous one? I want to see what do you mean. Thanks.Forum: Reviews
In reply to: [Make Tables Responsive] Works as expectedHi, thanks for the review.
Forum: Plugins
In reply to: [Make Tables Responsive] Not working on iPhonesGreat, happy to hear it ??
Forum: Plugins
In reply to: [Make Tables Responsive] Not working on iPhonesThe chrome dev tools simulator is just changing the screen size as far as I know. It does not simulate the iOS. I am trying on another simulator that does use iOS and it is fine there. And now you also proved that it is fine your iPhone too.
So the problem is not in my plugin by itself. It is only on your site that this happens, so there is some other CSS code there from a theme or a plugin that is conflicting. Try deactivating all plugins and switching to another theme temporarily, and it should be fine.
But I don’t know how to test it without having access to the site and ideally to an iPhone too. So I guess it has to be you that finds the exact CSS that causes the conflict and maybe it can be fixed by adding new CSS code. I could try some testing if you at least tell me which plugin is causing the conflicting CSS so I have a way to reproduce the problem on another testing site.
- This reply was modified 1 year, 3 months ago by Nikolay Nikolov.
Forum: Plugins
In reply to: [Make Tables Responsive] Not working on iPhonesI don’t have an Iphone to try, but it it looks fine on the iphone simulator that I use. Does this table work well on your iphone: https://homelessmoon.s4-tastewp.com/sample-page/ (it is a temporary site that will be deleted in 7 days).
Forum: Plugins
In reply to: [Make Tables Responsive] Not working on iPhonesHi.
Can you send me the HTML code of the table? You can view the code in the browser. Then put it in this site https://jsfiddle.net/ and click Save at the top (no need to login). The URL of the site in the address bar will change with a unique address that is public. Post the link here. Make sure there is no private information in the HTML code, since it is public.
Also what theme are you using?
Also you can try making a simple table with some testing data on a separate page on your site and try if that table is also affected by this or is it just this specific table.
Regards.
Forum: Plugins
In reply to: [Product Filter by WBW] Price filter to use discount priceThanks, I sent an email there.
Forum: Plugins
In reply to: [Dynamic Pricing and Discount Rules] Category hierarchy and add tagsThanks
Forum: Plugins
In reply to: [Make Tables Responsive] AutoptimizeThanks @optimizingmatters for helping out. I will mark it resolved then.
Forum: Plugins
In reply to: [Make Tables Responsive] TablePress IntegrationCool, no problem.