jonahcoyote
Forum Replies Created
-
Hi Tobias,
Thanks for your reply. Makes sense, I’ll try and figure something else out ??
Here’s the mod in case in anyone’s interested: https://gist.github.com/jonahcoyote/f6f4358097abc2559feca5ac8a5fcb1b
Just modify those two plugin files and then you’ll have two new fields in the plugin settings to input your own image sizes for both the main image and slider thumbs.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Calendar CSS Not Loading!Figured out what it was – I re-installed the plugin, and then toggled the calendar themes and now everything is loading fine.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Fatal ErrorHey Tobias,
Right on. I’ll make a report to them and see if they do anything.
Thanks,
JonahForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Fatal ErrorHey Tobias,
Sorry for the delay in getting back to this. I’ve got the same issue again and if I deactivate the Ajax Search Pro plugin from CodeCanyon I do not get this error. I’m running the latest version of both your plugin and Ajax Search Pro, and the latest version of WordPress.
Please let me know if you’d like a copy of the plugin to help test this.
Thanks!
– JonahForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Fatal ErrorI got around this by hard coding: TablePress::$model_options->get( ‘plugin_options_db_version’ )
I’m also seeing a bunch of other related errors where $model_options->get is trying to get values and I’ve hard coded those too to get around the errors for now without deactivating the plugin.
It’s weird though, because it looks like these values are set. It’s just that the plugin can’t get them… Do you think it’s permissions related?
I’ve got the same problem as well which pretty much makes the plugin unusable. My HEAD scripts are not added when 3rd party cookies are enabled… ??
Forum: Plugins
In reply to: [Gravity Forms Constant Contact] New Lists Missing on Feed Creation PageI too was running into this issue. After trying the same troubleshooting steps (uninstalled, deactivating, etc.) and nothing working, I went into the DB and discovered the plugin stores the lists in a transient. So I just deleted them. They are:
_transient_timeout_gf_ctct_lists_thebuddyprogram
_transient_gf_ctct_lists_thebuddyprogramYou can probably also find a transient cleaner plugin and do it that way vs. editing the DB.
Hope the plugin author can add some code to have this done automatically!
Thanks to Angelo’s help we finally got this worked out. Looks like the issue was our CPT slug changed, which changed the postmeta value needed for the media enclosures. A quick easy little db query cleared this up! You rock Angelo, thank so much for your help!
Hi Angelo,
I never said I didn’t want to work with you over Gotomeeting – in fact, over a week ago I replied saying I had emailed you at the email you provided and never heard anything back: https://cl.ly/oA2O
I’m open to whatever means you’d like to use to help resolve this. Please let me know how you’d like to proceed.
Thanks,
JonahHey guys,
Just checking in again on this. Any word? Can we pay for priority support? We really need to get this fixed.
Thanks,
– JonahFYI, I can add that bit of code above:
function addPodcastToFeed($qv) { if (isset($qv['feed'])) { $qv['post_type'] = array('podcasts'); } return $qv; } add_filter('request', 'addPodcastToFeed');
And get all podcasts to show, but then there are no media enclosures in the feed.
Please help guys, our feed has not been working for weeks now and we need a solution. We’d love to stay with Powerpress, but it’s really not turning out to be a solid and reliable solution.
Thanks,
JonahI spoke too soon. Now our feed @ https://infinitesmile.org/podcast/feed/infinite-smile-podcasts/ is incomplete. It’s showing the last episode published, which is good, but it’s only showing 5 podcasts (when our settings are set to show 300), and it’s skipping over episodes.
Please help!
Hey Angelo,
Quick follow up: I figured out what the issue was with the media files not showing up in the feed. I had this code in our functions.php file:
function addPodcastToFeed($qv) { if (isset($qv['feed'])) { $qv['post_type'] = array('podcasts'); } return $qv; } add_filter('request', 'addPodcastToFeed');
Removing that got the files back in the feed.
We do still have the original issue where the media file is blank on episodes even though the enclosure exists for the podcast in our feed. Can you please help with that now?
Thanks!
Hey Angelo,
Thanks for the reply! I checked all the CPT settings and everything looks ok: https://cl.ly/o6qT
We were running WP Super Cache, but I cleared everything and also deactivated the plugin, re-saved the most recent podcast with a media file, and it’s still not showing up in the feed (the item is, but not the media file).
Anything else we can check?