I noticed recently that my pages were showing 0 downloads when using plugin downloaded shortcode.
I’m using the latest version of the plugin and the latest version of WordPress on 7.0
Is there a way to fix this? The other shortcodes I use seem to work fine.
This also happens on my other site where I’m using the plugin.
]]>These shortcodes no longer work for me:
[plugin compatibility]
[plugin description]
[plugin faq]
[plugin screenshots]
[plugin other_notes]
[plugin latest_change]
I’m doing some development work and noticed a debug warning on line 108, line 107-110 is curretnly:
if ( is_array( $info['compatibility'] ) and !empty( $info['compatibility'][$GLOBALS['wp_version']] ) )
$info['compatibility'] = $info['compatibility'][$GLOBALS['wp_version']][$info['version']][0] . '%';
else
$info['compatibility'] = __( 'Unknown', 'plugin-info' );
The warning is generated because there is no $info[‘version’] key in the $info[‘compatibility’][$GLOBALS[‘wp_version’]] array.
A bit more checking has to be done in the if condition to make sure there’s a value to be assigned:
if ( is_array( $info['compatibility'] ) and !empty( $info['compatibility'][$GLOBALS['wp_version']] ) and !empty( $info['version'] ) and !empty( $info['compatibility'][$GLOBALS['wp_version']][$info['version']] ) and !empty( $info['compatibility'][$GLOBALS['wp_version']][$info['version']][0] ) )
$info['compatibility'] = $info['compatibility'][$GLOBALS['wp_version']][$info['version']][0] . '%';
else
$info['compatibility'] = __( 'Unknown', 'plugin-info' );
]]>
Hi,
Your plugin seems very usefull, but I’d like to retrieve and display info on multiple plugins in a single post. Is this in any way possible with your plugin?
Allthough there is only one plugin info box per post that accepts only a single slug,can the slug for a plugin be added to the shortcodes for instance?
My goal is to create a single overview of used plugins on multiple sites and show all sorts of usefull info on plugin compatibility to help me decide if these sites are ready to upgrade to a new WP version…
Thanks in advance
Peter
]]>Hi,
first of all thanks for this plugin! ??
There’s a problem with the screenshots: the URL to the image currently is:
https://www.ads-software.com/plugins/PLUGIN-SLUG//ps.w.org/PLUGIN-SLUG/assets/screenshot-1.png?rev=833720
I think it should be:
https://ps.w.org/PLUGIN-SLUG/assets/screenshot-1.png?rev=833720
Thanks.
]]>It would be nice to be able to list multiple plugins per page instead of adding a slug per page – allow the slug in the shortcode so we can add more than one per page ??
]]>Hi,
Since the link to the WordPress Plugin Repository has changed, your plugin is broken.
The original link was “www.ads-software.com/extend/plugins/”, however that has been changed recently to the plain “www.ads-software.com/plugins/”
To fix it you need to change the link on line 105:
$info['link_url'] = “https://www.ads-software.com/plugins/{$info['slug']}/”;
i.e. take “extend/” out of it.
Then the plugin works perfectly again ??
]]>I love this plugin and use it extensively on my site.
Are there any plans to add the ability to pull in the plugin image (SVN assets directory)? This would be really cool.
Also, it would be greta if the metabox list of shortcodes could be updated to include some hidden ones, such as [plugin installation] and [plugin faq]?
Finally, the Donate link would be great to have as a shortcode.
Keep up the good work – it’s a great plugin.
]]>Hi,
The Plugin Info plugin has been working great for years, however it unfortunately now conflicts with version 2 of the Video User Manuals plugin:
PHP Fatal error:
include_once(): Cannot redeclare class plugininfo in
wp-settings.php on line 198
Is it possible to update your plugin to use a more unique PHP class name than PluginInfo
?
Thanks very much.
James
]]>