DownRightGamer
Forum Replies Created
-
+1 this!
We have to disable the plugin until Kraken gets a proper update.
I’m having the same problem… Many things changed I guess.
Forum: Plugins
In reply to: [Permalinks Customizer] Redirects Still Intact After DeletionI had a similar issue. It appears the plugin leaves some trail data even after deletion within the WordPress dashboard.
Search via PHPMyAdmin for this query:
SELECT * FROMwp_postmetaWHEREmeta_keyLIKE 'permalink_customizer'This returns several rows for me and upon deletion here as well, the links seem to work again. This seems like an oversight from the plugin developer so hopefully they fix it eventually.
Forum: Plugins
In reply to: [Contact Form 7] Recaptcha v3 and preventing Contact Form 7 from workingI’d also like to see a true update fix for this. Google ReCaptcha v3 is pretty much a standard on forms these days….
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 is not working after last updateI can confirm CF7 worked perfectly until version 5.2.1 — and it couldn’t have been at a worse time when we sent the form out to hundreds of people. I had to roll back to 5.2 to get it working again for now. I will not update until there’s confirmation of resolution.
@linam I was able to fix it on my end. For whatever reason 3 months ago I had event categories working perfectly, but I got back into the code today and PHP was having issues with the way I formatted my dates. I decided to abandon the strings that stored “Y-m-d” entirely and had my strings use the more reliable UNIX format of just time(), then you can format the strings afterwards with date(“Y-m-d”, $string);
The only way I figured this out is my dates were reverting back to 1970. It is odd, because as mentioned earlier, I had categories working not long ago. I’ve not upgraded PHP.
Best of luck on your end.
You’re not the only one…. Mine’s stopped working too. I’m using version 5.9.7.3. Everything works great except for my category pages. Not sure why…
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Zoom integration ?For whatever reason, the link you’ve supplied for the Zoom integration plugin is not working:
https://www.dropbox.com/s/fqeepp1pvq5tjmj/events-manager-zoom.1.0.zip?dl=1
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Zoom integration ?Dang! This will be a game changer. Great job to the team and @johniswellace ! 😀
That worked! Thank you.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Zoom integration ?With the popularity of Zoom right now, this would be a very cool feature.
*upvote*
Forum: Reviews
In reply to: [Live Simple Clock] Clock does exactly as it saysI have since grown quite used to the seconds and prefer it, to be honest. Funny how things change over time. Your clock is awesome!
Forum: Plugins
In reply to: [WP Basic Crud] function column_phoneI don’t fully understand it either but the function column_phone($item) is dependent on whatever you put in place of “phone” must relate to data in the plugin. You can use this to manipulate all kinds of columns.
For example, i’ve set one up for a start date format:
function column_start_date($item) { if (!empty($item['start_date']) && $item['start_date'] != '0000-00-00') { return date("M j, Y", strtotime($item['start_date'])); } else { ''; } }Forum: Plugins
In reply to: [Participants Database] Chosen Multi Dropdown with populated dataClosing. Thank you.
Forum: Plugins
In reply to: [Participants Database] Chosen Multi Dropdown with populated dataApologies. My code actually did not originally have tags in it, but had the marks in there that make it think i’m starting and ending code, when I in fact did not. I posted a continuation of my problem here because your website has limitations. I realized bringing it here I could better explain my issue.
Now…. my struggle is trying to figure out your plugin. I realized even before yesterday I need to get values into the inputs. But it is proving to be quite complicated. I was just hoping you had a similar situation come up and could offer more advice. At this particular juncture, i’m running out of time and can’t fiddle with this for much longer. Unfortunately, that means i’ll have to resort to a less convenient way of adding team members, but at least it will work for the time being.
If you have no further advice, i’ll close this thread. Thanks for your help.