webinvaders
Forum Replies Created
-
2.3.9 je vratio sajt u zivot (dobijao sam 503), ostaje jos ovaj notice kad se ukljuci debug
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for theserbian-transliterationdomain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at theinitaction or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/fiziokul/public_html/wp-includes/functions.php on line 6121Forum: Plugins
In reply to: [Order Attachments for WooCommerce] Missing attachment link in emailThank you soooo much for this fix.
It saved me the trouble since I am not that happy with alternative plugins with similar function.Forum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] Redirection Not OcurringNew version (v1.3) is now available
Forum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] Country is not detected!Issue was due to “LightSpeed Cache” plugin and it has been resolved with a .htaccess modification by adding “Rewrite Rule”.
More about the solution for this case:
https://wordpress.org/support/topic/wp_redirect-not-working-with-litespeed-cache-on/#post-14280090Thanks @surname for the access and resources and LightSpeed Cache plugin team for quickly responding and providing the solution.
New http header value is added to the plugin with few more fixes in version 1.3 but if you are experiencing some issues first try to disable caching plugin that you are using and if redirection still don’t work contact me.
Forum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] redirect URLHi,
you are suggesting page specific redirects?I did think about that use case, but haven’t had a time to develop the concept when making this plugin for a specific project (and then made it publicly available).
It would not be that hard to add this logic to the plugin but I’m more concern about UI/UX implementation (I haven’t work with “cmb2” that much).
How soon do you need this?
Forum: Plugins
In reply to: [LiteSpeed Cache] wp_redirect() not working with LiteSpeed Cache onI can confirm the solution, After checking thoroughly it seems that works perfectly.
Thanks again @qtwrkForum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] Redirection Not OcurringThanks @gammafx I’ve fixed the code and added few things so that plugin will work with some caching plugins.
Forum: Plugins
In reply to: [LiteSpeed Cache] wp_redirect() not working with LiteSpeed Cache onIT WORKS!
I was trying to figure out why it’s not working for days… Thank you so much.Forum: Plugins
In reply to: [LiteSpeed Cache] wp_redirect() not working with LiteSpeed Cache onHi,
this is scr.shot of headers https://nimb.ws/GLt9uqSite owner was setting up LiteSpeed cache plugin so i don’t really know what options are enabled.
Forum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] Country is not detected!Plugin works by using $_SERVER[“HTTP_CF_IPCOUNTRY”] which is variable sent by Cloud Flare. Haven’t had a chance to test plugin in multi-site environment so it could be something regarding how CF works with WP multi-site.
Contact me directly dev@webinvade.rs maybe we can resolve this issue.Forum: Reviews
In reply to: [WP Cloudflare GeoIP Redirect] Doesn’t workThis issue was fixed in new version of the plugin, by switching to WordPress redirect function instead of PHP header that was used initially.
Forum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] Country is not detected!Do you have active ClouldFlare DNS service for your domains and did you turned on GeoIP service for those CF accounts?
Forum: Plugins
In reply to: [WP Cloudflare GeoIP Redirect] Country is not detected!Hi,
have you manage to setup Cloudflare GeoIP?Thanks, I’ve purchased the licence. It works as it should.
Forum: Plugins
In reply to: [Pricing Table - Responsive & Easy] Option for “no currency”I’ve created workaround by using jQuery in wp admin to add “No currency” option to plugins list of currency, but this is not ideal since every time we need to change something in pricing table currency is set back to default (USD) so it is tedious to set it back to “No currency” every time (and have to think about it).
This is how i’ve done it:
jQuery(document).ready(function () {
if(jQuery(‘#currency_icon’).length) {
jQuery(‘#currency_icon’).prepend(‘<option value=””>No Currency</option>’);
}
});