dtayl20
Forum Replies Created
-
Forum: Plugins
In reply to: [Football Pool] error after entering match scoresHi Antoine
I have another issue. I use the pickem style.
The game tonight was a draw. I added in match results. All users should get one point. But after calculation ALL are still zero.
Any ideas?
Forum: Plugins
In reply to: [Football Pool] error after entering match scoresHi Antoine
Thanks for the speedy reply. OK. I’ll search the the DB and find the duplicate. It was probably me during testing.
Forum: Plugins
In reply to: [Football Pool] error after entering match scoresAntoine
Deactivating Football Pool Ranking Score Breakdown fixed the issue… but its removed a custom column that was necessary for my users? Any idea how I might add in a custom column in the rankings table??
Forum: Plugins
In reply to: [Football Pool] Custom Column on Ranking pageAntoine
Awesome. Thanks. It took me a while… but I got there in the end.
I had to write a custom function to grab the user meta value from the db. I created a new param and then called the valued using the new function eg
$params[‘store’]= get_user_store($user_id); (on about line 217 ) of the store breakdown plugin. Added in some error checking for null values and all working nicely.
function get_user_store($user_id) {
global $wpdb;
$sql = "select meta_value from usermeta um where um.meta_key='store_location' and um.user_id = $user_id";
$row = $wpdb->get_row( $sql, object );
if ($row==null) {
$store='';
} else {
$store = $row->meta_value;
}
return $store;
}Thanks again
Forum: Plugins
In reply to: [Football Pool] Win/Loss Onlyooh very nice.
I added home and away selectors, added some styling and it all looked great. The flag div background would highlight but it won’t save. It will only save if the team name is clicked. Maybe I didn’t add the selectors in the right places.
I might wait until your new release.
Our national football seasons begin very soon.
Any idea when you will make the new release??
Thanks again!
Forum: Plugins
In reply to: [Football Pool] Win/Loss OnlyLOL. nice! Much better than the js I wrote!!
Feature request. It would be nice if users could click on the flag as well as the team name to pick a winner
Thanks again.
Forum: Plugins
In reply to: [Hide Admin Notices] Hidding plugin noticesIt appears an unsuccessful fix was applied 7 months ago and the last activity by support was 6 months ago. Just wondering if this is a dead plugin that is no longer supported?? The plugin update notices for admins would very handy.
Forum: Plugins
In reply to: [Yoast SEO] Invalid schema on Merchant listing reportIs it woocommerce generating the schema or yoast??
Forum: Plugins
In reply to: [Yoast SEO] Invalid schema on Merchant listing reportSame problem. all my products have been flagged as invalid in search console for Merchant listings because of a priceSpecification error. Advice on how to resolve this is appreciated. Rich results test here.
Why is this marked as resolved? It isn’t. It happens with all Custom Post Types and its painful trying to manage a large ecommerce site when bulk updating isn’t available. So… when is the next release??
Forum: Plugins
In reply to: [WP Store Locator] Store Location Not Showing on MapHi had an issue with data not appearing in inconito. It was a kinda “duh” moment. I had a bunch of network request blocking in chrome dev tools. I had turned off google maps script to test for speed. Forgot about it and then wasted an hour trying to figure out why it wasn’t working! It was user error rather than browser error.
Understood.
I use an external cron. No issue with the cron.
I use WP rocket and cloudflare for caching for quite some time… Are there any known issues with either of these??
Thanks
Hi Steve
Understood.
But if caching is the cause of the issue… the doco doesn’t provide any advice on how to solve it.
This isn’t resolved because there is still no fix. I have about 6 post types that I cannot bulk update without having to deactivate the plugin first! Causing major issues. Will there be an update or is this a dead plugin?
Thanks for your docs. I use caching… but your docs do not provide solutions? It simply says disable caching to determine cause. For expirations to work are you suggesting I disable caching??