SandyRig
Forum Replies Created
-
Thank you for the very quick and detailed reply Jose.
This has fixed it for me.
define( 'EOS_DP_ALLOW_POST', true );
We have Elementor installed on the site just to create 1 landing page but Elementor was loading resources everywhere slowing the site down. We used this plugin to disable it every where but that one landing page and it worked great.
This is an awesome plugin!
Thank you
Forum: Plugins
In reply to: [WooCommerce] WC()->cart->get_cart() function returns empty arrayI contacted WPEngine. They were clueless. We spent 2 hours and 2 different agents but they didn’t know what was going on. We tried excluding the cart and it didn’t help as well.
They said this function is being cached. I asked if it’s being cached why is it not showing cached data and they had no idea. They suggested turning off the cache. How is that a solution.
It’s not making any sense why a core function of woocommerce stops working/returning data when the cache is turned on.
Forum: Plugins
In reply to: [WooCommerce] How to get woocommerce product vendor information by product idWooCommerce support is hopeless.
This is how you get vendor information in case anyone else needs it.$post_terms = get_the_terms($product_id, 'wcpv_product_vendors');
$vendor = $post_terms[0]->name;Forum: Reviews
In reply to: [SRS Simple Hits Counter] NO Support, Issues and ErrorsOk, That issue was fixed a while back. When did you last test it.
I’ll take a look again and update if there is an issue.
Thanks
Forum: Plugins
In reply to: [SRS Simple Hits Counter] Hit counterNo, there is no such feature. It counts hits to all the pages.
Forum: Reviews
In reply to: [SRS Simple Hits Counter] NO Support, Issues and ErrorsHello,
What sort of issues and error did you experience.
I don’t get any emails from wordpress for support tickets here.
You can get in touch here https://atif.rocks/srs-simple-hits-counter/
Forum: Reviews
In reply to: [SRS Simple Hits Counter] Counts are wrong – WAY wrongHey,
Sorry about the bad experience. Could you please create a support ticket and give us some more details. We have this plugin working in many of our own sites with hits in millions and none have this issue.
Forum: Plugins
In reply to: [SRS Simple Hits Counter] session_start() setting PHPSESSID for every pageI have removed the php session and added cookie based tracking. Let me know how that works for you.
Forum: Plugins
In reply to: [SRS Simple Hits Counter] session_start() setting PHPSESSID for every page“might not fix”
Forum: Plugins
In reply to: [SRS Simple Hits Counter] Increase counter column to big integerThanks for highlighting this issue. I will increase the limit in next update.
Forum: Plugins
In reply to: [SRS Simple Hits Counter] session_start() setting PHPSESSID for every pageThank you for highlighting this issue. Creating cookies with PHP also generates PHPSESSID so that might fix the caching issue, so I will try using javascript cookies with ajax.
PS. Sorry about the late reply, not sure why I don’t get messages for any new topics created here.
Forum: Plugins
In reply to: [SRS Simple Hits Counter] Undefined offsetHey, sorry about not responding. I’ll get back to you on this soon.
Forum: Plugins
In reply to: [SRS Simple Hits Counter] 1.01 UpdateWhat sort of error please share screenhot
Forum: Plugins
In reply to: [SRS Simple Hits Counter] 1.01 UpdateOk, now have you tried reactivating the plugin
Forum: Plugins
In reply to: [SRS Simple Hits Counter] 1.01 UpdateOk, try replacing this function ‘count_total_visitors_views’ near that line with the below code.
function count_total_visitors_views($return){ global $wpdb; $table_name = $wpdb->prefix . 'srs_simple_hits_counter'; if ($return == 'views') { $srs_views = $wpdb->get_results("SELECT SUM(srs_views_count) as total FROM $table_name "); return $srs_views[0]; } else { $srs_visitors = $wpdb->get_results("SELECT SUM(srs_visitors_count) as total FROM $table_name "); return $srs_visitors[0]; } }
- This reply was modified 7 years, 3 months ago by SandyRig.