Eric Mann
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Publication Archive] Open docs in new window@web1 And next time, please open a new thread. Once these are marked as “resolved” I don’t always see them to drop back by to help.
Forum: Plugins
In reply to: [WP Publication Archive] Sorting a listI don’t have alphabetical sorting set up yet, but will add that to the to-do list for a future release.
https://github.com/ericmann/WP-Publication-Archive/issues/22
Forum: Plugins
In reply to: [WP Publication Archive] WP-Publication Archive Activation ErrorShipping version 2.5.7.2 with this fix now.
Forum: Plugins
In reply to: [WP Publication Archive] Error activating pluginYes, this is a known issue and will be fixed in the next release.
Forum: Plugins
In reply to: [WP Publication Archive] WP-Publication Archive Activation ErrorWow … I really messed that up.
<?is what’s known as a PHP shorttag, it’s a developer shortcut so we can be lazy and don’t have to write<?phpevery time.I never use shorttags and have my system set up to yell at me if I do (because some servers disallow them). But I turned off my warnings to debug someone else’s code and apparently forgot to turn it back on.
Changing
<?to<?phpwon’t break anything, and is the exact fix I’ll ship with the next update. Thanks!Forum: Plugins
In reply to: [WP Publication Archive] "Next >>" page link not functioningTim,
I think direct access so I can debug will help. Please contact me offline. There’s an email form on the bottom of my website at http://eamann.com
Yep, you have indeed found a bug. It’s a sad consequence of using post meta to perform a search.
Version 2.5.7.1 should fix it.
Forum: Plugins
In reply to: [WP Publication Archive] "Next >>" page link not functioningI’ve tried debugging this, but I can’t reproduce the issue. What other plugins are you running on your site (there might be a conflict somewhere)?
Also, what is the exact shortcode you’re using to display the publications?
Forum: Plugins
In reply to: [WP Publication Archive] Cannot activate plugin@szymcio2001 Please update to version 2.5.7, which fixes this issue.
Forum: Plugins
In reply to: [WP Publication Archive] WP-Publication Archive Activation ErrorI’ve taken a much closer look at the code and did find an extra space after a closing
?>tag.When you can, please update to version 2.5.7 as it contains the fix. I’ve removed closing
?>tags in general from files where they’re not needed in hopes that we can prevent this problem in the future.Forum: Plugins
In reply to: [JS Banner Rotate] Confused? Banner rotation lengthThis has nothing to do with your webpage dashboard. To add the banner to your site at all, you used a shortcode that looked something like
[jsbrotate ... /].To adjust the default options, you need to add parameters to this. To set the length of time (in seconds) you want each banner to display, you use the
imgdispparameter:[jsbrotate imgdisp=12 /]will display each image for 12 seconds (rather than the default of 8 seconds.This parameter is in addition to the
images=parameter you use to list your image URLs.You can read more about shortcodes and how they work in the Codex, but this is really all the help I can give you at this point.
Forum: Plugins
In reply to: [JS Banner Rotate] Confused? Banner rotation lengthLengthening the time between banners has nothing to do with HTML, it’s a setting you pass directly in to the shortcode (or in to the template tag if you’re using that function).
Set the
imgdispparameter to be the number of seconds you want each banner to display. Set theimgfadeparameter to the number of seconds you want the fade animation to take between images.Forum: Plugins
In reply to: [WP Publication Archive] Upgraded plugin and links to PDF now result in 404I updated the other thread with the resolution:
When you upgrade the plugin rather than do a fresh install, its not flushing your permalinks. To do this manually, you need to:
- Log in to your site.
- Navigate to Setting » Permalinks
That’s it. Just viewing the permalinks page will flush your settings and fix the 404.
If not, please start a new discussion topic because that means you’re facing a different issue. This is the same process we used to resolve the problem above.
Forum: Plugins
In reply to: [WP Publication Archive] "Next >>" page link not functioningI will take a look as soon as I can.
Forum: Plugins
In reply to: [JS Banner Rotate] Multiple imagaes1. Please open a new thread rather than adding comments to an existing (resolved) thread.
2. The shortcode @AndresWP2k posted won’t work. The image URIs must be absolute URIs (including thehttp://). If your shortcode is the same, that’s why it won’t work. If your shortcode is different, please explain exactly what code you’re trying to use in your new thread,