Eric Mann
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Publication Archive] Move download to same line as titleI’m hesitant to recommend editing plugin files because your changes will be lost in an update. That’s why there are filters provided everywhere, and that’s why every element is loaded using a loop function (similar to how posts are loaded in the loop) so you can build your own shortcode rather than use the default one.
My first recommendation is to build your own shortcode. Use the one that ships with the plugin as an example and just build it to output whatever markup you feel is appropriate.
Take a look at the
shortcode_handler()function in/lib/class.wp-publication-archive.phpto see how I’m setting things up. It’s fairly straight-forward … each publication is just iterated through in a list and all of its properties are output to the screen.If you need to change the positioning of any element, I recommend doing so with custom CSS that you place separately in your theme.
The sorting is very rudimentary, but there will be some more advanced filters in a future version.
Forum: Plugins
In reply to: [WP Publication Archive] Tag cloudsNot at the moment. But I can look into something like that for a future version.
Forum: Plugins
In reply to: [WP Publication Archive] Cannot activate pluginCan you check your server error logs? Those would give me a better idea what the actual error is that you’re facing.
Forum: Plugins
In reply to: [JS Banner Rotate] removing the banner black box border?Yes, it’s possible. You just need to redefine the CSS.
In your theme’s stylesheet, add the following:
#banner-block .banner-container { border: none; }This will remove the border.
Forum: Plugins
In reply to: [WP Publication Archive] Cannot activate pluginFrom the looks of your posting, you’re using WordPress 3.1.1. The current version of WordPress is 3.4.2. Upgrading might fix your issue …
But just to figure things out, what server error are you seeing?
I read that it was going to be developed for future versions but that was 2 years ago so wasn’t sure if its been done.
No, it hasn’t been done yet because I haven’t had time.
Does anyone have any idea if it’s possible to get these two plugins working if both are active?
Possible … I’ll have to take a look at it and get back to you.
Forum: Plugins
In reply to: [Absolute Privacy] [Plugin: Absolute Privacy] Is this plugin save?I’ll take a look.
Is this something that will be fixed in future versions of this plugin?
Yes, it will be fixed in the next version.
Forum: Plugins
In reply to: [Absolute Privacy] [Plugin: Absolute Privacy] Is this plugin save?The security issue was patched, the repository is merely hiccuping on the updated date.
If you look at the right sidebar you see the last updated date claims to be back in 2010. But if you take a look instead at the actual revision log, you’ll see that the latest version (2.0.7) was updated in March of 2012.
Forum: Plugins
In reply to: [WP Publication Archive] [Plugin: WP Publication Archive] Link to downloadYes, the current version does not allow you to put externally-hosted files in your archive. This is for security purposes since the files are loaded by an external script.
From the plugin readme:
OK, will I be able to use remote files in the future?
Absolutely! A future version will better handle fully-qualified filenames and once again allow for remote URLs.
Not in this version, but that will be a feature of version 2.5, which is due out later this month.
That’s an interesting concept. It would be useful for archiving PDFs and keeping them available for download, but there isn’t any integration available (yet?) for handling purchases …
There’s nothing in the plugin setting the color of your links. The link color is 100% defined by your active theme. If you want to change just the widget’s link color, then add the following to your theme’s stylesheet:
.widget_core_contributions a { color: green; text-decoration: underline; }