Eric Mann
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Publication Archive] Not working on WP 3.5.2.If you need to revert to an older version:
- Deactivate the plugin
- Delete the plugin via FTP
- Install an older version from ZIP -> http://downloads.wordpress.org/plugin/wp-publication-archive.2.5.7.2.zip
Forum: Plugins
In reply to: [WP Publication Archive] Not working on WP 3.5.2.I’ve just released version 3.0. This version contains significant changes to the download system that will prevent broken permalinks and large files from triggering 500 server errors.
Forum: Plugins
In reply to: [WP Publication Archive] Error 404I’ve just released version 3.0 of the plugin that contains significant improvements to the download system. Please update, flush your permalinks, then let me know if anything else breaks.
Forum: Plugins
In reply to: [WP Publication Archive] Publication List in Admin Panel only shows latest 5The new version of the plugin – version 3.0 – is built specifically to allow you to use regular custom post type archives to list publications. The shortcode still works, but instead you should visit http://site.url/publication to see a list of your publications. Just like with regular WordPress posts, this will be a paginated display.
Forum: Plugins
In reply to: [WP Publication Archive] Nice plug in, but killing my superstore search bar!Can you describe exactly how it’s conflicting?
Forum: Plugins
In reply to: [WP Publication Archive] How to rename language .mo file?Your server won’t serve that file. It redirects and I can’t see anything.
Forum: Plugins
In reply to: [WP Publication Archive] How to rename language .mo file?Can you link to your .mo file so I can grab a copy for testing?
Forum: Plugins
In reply to: [WP Publication Archive] How to rename language .mo file?Your translation file should be named
wp_pubarch_translate-cs_CZ.moas well.Forum: Plugins
In reply to: [WP Session Manager] Fatal error: Class 'WP_Session' not found@itsazzad: Please open a new forum thread for your problem. But please also explain how you have things set up. Do you have WP Session Manager both installed and activated? What version? What version of WordPress?
Forum: Plugins
In reply to: [WP Publication Archive] How to rename language .mo file?Rename the *.mo file to wp_pubarch_translate.mo. This is a known issue with the current implementation, and will be fixed in version 3.0.
Forum: Plugins
In reply to: [WP Publication Archive] Not working on WP 3.5.2.The plugin does work with 3.5.2.
Please flush your permalinks.
Forum: Plugins
In reply to: [JS Banner Rotate] What code do I enter?Hoping I can answer both questions at once here.
Pipe-delimited list
You have to specify the full path of each image, separating the URLs with a | character. So, let’s say you have the following images you want to rotate:
The “pipe-delimited list” would be:
http://site.com/image1.jpg|http://site.com/image2.jpg|http://site.com/image3.jpgEach URL is separated (delimited) by a |.
Shortcodes and Template Tags
The plugin allows you to insert a rotating banner image in one of two ways – with a shortcode or with a template tag.
A shortcode is just a special block of text you insert in your regular post/page content in WordPress. It starts with a [ character, followed by a tag, followed by optional attributes, and is closed with a ] character.
For this plugin, the shortcode looks like:
[jsbrotate images="..." /]The … in the images parameter is the pipe-delimited list from above.
If you want to use the banner outside of regular post/page content, though, you need to use the template tag instead.
The template tag looks similar to the shortcode, only it’s real PHP code, not markup. The same shortcode above could be written as a template tag like:
<?php jsbrotate( 'images=...' ); ?>Again, the … in the images parameter is the pipe-delimited list from above.
Other Arguments
The plugin also allows you to specify how long images display for, how long they take to rotate, and the height/width of the banner. Each of these is specified in a different parameter:
- height
- width
- imgdisp
- imgfade
In the shortcode, just add a space and specify the new parameter. For example:
[jsbrotate images="..." height="100" width="1000" /]In the template tag, add a
&between parameters. For example:<?php jsbrotate( 'images=...&height=100&width=1000' ); ?>Where to find more detailed instruction
All of the documentation for the plugin is listed on the plugin’s FAQs page. Alternatively, you could take a look at the code itself. But asking here, in the support forums, is the best place to get your questions answered.
As always, if this plugin is of use to you, please consider donating to support continued development – both of the plugin and its documentation.
Forum: Plugins
In reply to: [JS Banner Rotate] Images not showingolliekidd You aren’t the only one on the thread. If you don’t have time that’s fine, feel free to use another solution. But don’t mark a bug report as “resolved” if it isn’t actually resolved.
Forum: Plugins
In reply to: [WP Publication Archive] List of parameters i can useNot at the moment, no. But I can add that to the list of potential future features.
Forum: Plugins
In reply to: [JS Banner Rotate] Images not showingolliekidd – you aren’t using the plugin any more so I can’t see the issue.
Rich99 – Link to your site or I can’t help you because I can’ts ee the issue.