markrwalker
Forum Replies Created
-
Nevermind, this was self-inflicted from an import from an old system. My apologies.
I think I realize what’s happening: GF+CPT is creating the checkbox postmeta values as one comma-separated postmeta entry, while GF Post Updates is creating a separate postmeta entry for each checkbox value. Any suggestions to reconcile this would be appreciated.
Sorry, I realized this issue is caused by the Post Updates plugin, not this one. My apologies.
Forum: Plugins
In reply to: [Video XML Sitemap Generator] Custom post types?Never mind, I found what I needed.
We’re seeing this too. I found in the plugin code (orgSeries-taxonomy.php) that the series parts are set for posts that aren’t draft, pending, or future (I guess they get set correctly when the posts are first created, even as a draft). If you then edit a post, its series part number gets set to the count of the posts in the series. I’ve found that if you set the posts to private, the series part numbers work like they used to, and then will be correct when you publish them.
To get this working, I had to change line 3 in inline-series.js from this:
$(document).on( 'click', 'a.editinline', function() {
to this:
$('a.editinline').on( 'click', function() {
Any idea as to why?