janvitos
Forum Replies Created
-
Forum: Plugins
In reply to: [Videopack] Set “WordPress Default” as default “Insert” value for videoI didn’t know you had a Github. Would’ve posted there instead ??
Forum: Plugins
In reply to: [Videopack] Set “WordPress Default” as default “Insert” value for videoHi,
I noticed you released a new version of the plugin. Did you have a chance to add this option to it? I don’t see it in the release notes.
If not, it’s no problem, I’ll update and add my code back for the time being.
Thanks!
Forum: Plugins
In reply to: [Videopack] Set “WordPress Default” as default “Insert” value for videoPlease don’t take my request as a dislike of your plugin. I find it very useful for other things like video thumbnail generation and customization. I just prefer to keep things as default as possible with my WordPress install.
Thanks for this great plugin! It really is one of a kind.Forum: Plugins
In reply to: [Videopack] Set “WordPress Default” as default “Insert” value for videoI found the line of code that handles this. It is line 321 and 322 in videopack-admin.php:
$meta_key_array = array( 'embed' => 'Single Video',
We can replace this with the following code to add a filter and choose the value we desire:
$embed_value = apply_filters( 'kgvid_default_embed_value', 'Single Video' ); $meta_key_array = array( 'embed' => $embed_value,
Or you could add an option in the plugin settings to make it more convenient for less technical users.
Cheers.
Issue is now resolved.
Ticket closed.
Awesome, thanks!
Issue resolved.
Everything looks good: https://imgur.com/a/oGycUba
This is some great support you provide there, something pretty rare nowadays unfortunately with lots of WordPress plugins.
I’m glad I could assist.
Thanks!
Great!
Hi Chris,
Here is my feed URL used in Publisher Center:
https://www.ipnoze.com/feed/gn
By using this link: https://pubsubhubbub.appspot.com/topic-details?hub.url=https://www.ipnoze.com/feed/gn
I can see that the feed is being pinged every time I update an article, so I think it’s probably a display bug.
Here is a screenshot: https://imgur.com/a/YU4tU1F
It’s useless that I share the URL because it’s in the admin interface and you don’t have access to that.
Update
I took a look at what get_option( ‘gnpub_feed_list’, array() ) was returning, and I noticed it returns the proper feed without /wordpress in the URL. So the plugin is indeed sending the proper feed URL to Pubsubhubbub.
But to prevent confusing people (like me), I believe you should show the same URL returned by gnpub_feed_list under Google News Feed Setup.
Here is a screenshot of the issue: https://imgur.com/a/k30GD0G
Forum: Plugins
In reply to: [Media Credit] Plugin breaks run_wptexturizeThanks for the quick response.
I will be awaiting the results of your investigation then.
Forum: Plugins
In reply to: [Media Credit] Plugin breaks run_wptexturizeSo I found the culprit.
This is what I found in the CHANGELOG.md file:
## 3.0.1 (Mar. 20, 2016) ## * Fixed run_wptexturize filter breakage caused by calling get_bloginfo too early.
So I went ahead and searched for get_bloginfo and found the only instance in the file /media-credit/includes/media-credit/class-settings.php
Here’s the line of code in question (line 294):
'default' => \get_bloginfo( 'name', 'display' ),
Changing this line to the following code fixes the issue:
'default' => '',
Obviously, this is a temporary fix.
Resolved.