Michal Jaworski
Forum Replies Created
-
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Brak statystyk@clinic podasz wi?cej szczegó?ów? Poka?esz jakie? zrzuty ekranu?
- This reply was modified 7 years, 1 month ago by Michal Jaworski.
Forum: Plugins
In reply to: [WP Tao One Time Offer] How to make it work with woocommerce product site?Hi @ajachocki,
You should try to modify fallowing code:
public function add_oto_meta_box() { add_meta_box( 'wptao-oto-meta-box', __( 'WP Tao OTO', WPTAO_ONETIMEOFFER_DOMAIN ), array( $this, 'oto_meta_box_markup' ), 'page', 'normal', 'high', null ); }
Just replace ‘page’ by null for example.
- This reply was modified 7 years, 2 months ago by Michal Jaworski.
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] IP Fingerprint IssueHi @melodies,
Currently you can only modify this part of code to obtain such effect. We can add the filter on the returned value in future versions.
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] IP Fingerprint IssueHi @melodies,
The IP is fetched in the following way:
function get_user_ip() { $ipaddress = ''; if ( isset( $_SERVER[ 'HTTP_CLIENT_IP' ] ) ) { $ipaddress = $_SERVER[ 'HTTP_CLIENT_IP' ]; } else if ( isset( $_SERVER[ 'HTTP_X_FORWARDED_FOR' ] ) ) { $ipaddress = $_SERVER[ 'HTTP_X_FORWARDED_FOR' ]; } else if ( isset( $_SERVER[ 'HTTP_X_FORWARDED' ] ) ) { $ipaddress = $_SERVER[ 'HTTP_X_FORWARDED' ]; } else if ( isset( $_SERVER[ 'HTTP_FORWARDED_FOR' ] ) ) { $ipaddress = $_SERVER[ 'HTTP_FORWARDED_FOR' ]; } else if ( isset( $_SERVER[ 'HTTP_FORWARDED' ] ) ) { $ipaddress = $_SERVER[ 'HTTP_FORWARDED' ]; } else if ( isset( $_SERVER[ 'REMOTE_ADDR' ] ) ) { $ipaddress = $_SERVER[ 'REMOTE_ADDR' ]; } return filter_var( $ipaddress, FILTER_VALIDATE_IP ); }
Regards
MichalForum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsUff… Thanks for the info ??
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsDon’t believe – check it ??
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsOK, the update is coming… I hope this time everything will be OK ??
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsIt looks like never ending story ??
Maybe WooCommerce version checking mechanism works wrong. We are checking…Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsOK, we’ve got it. 1.2.8 version is just coming.
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsHi @juraso,
Are you sure you have newest version of Tao?
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Duplicate queriesHi @jurasjo,
It’s currently optimised – you need to remember that we have to process large amount of data and we use PHP for that ??
And one more thing – we use transient for caching dashboard so only once per some time queries need more time.
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Duplicate queries–
- This reply was modified 7 years, 9 months ago by Michal Jaworski.
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsHi @jurasjo,
Yes, it is ??
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Duplicate queriesHi @jurasjo,
We’ve just released WP Tao 1.2.7 where duplicated queries are fixed.
Forum: Plugins
In reply to: [Track, Analyze & Optimize by WP Tao] Deprecated CallsHi @jurasjo,
We’ve just released WP Tao 1.2.7. It’s now fully compatible with new version of WooCommerce.