pleonard
Forum Replies Created
-
Forum: Plugins
In reply to: [Zotpress] In-Text Shortcode breaking only sometimesI’m seeing this as well (ZotPress 7.0.3 on WP 5.1.1). Clearing the cache doesn’t seem to have made any difference… my inline references are spinning wheels with markup like this:
<span id="zp-InText-zp-ID-555715--SU5RN3PK--296-1" class="zp-InText-Citation loading" rel="{ 'api_user_id': '555715', 'pages': '', 'items': '{SU5RN3PK}', 'format': '(%a%, %d%, %p%)', 'brackets': '', 'etal': '', 'separator': '', 'and': '' }"></span>No errors or other info are thrown to the JS console.
Forum: Plugins
In reply to: [Zotpress] Version5.0.3 cannot import any items in wordpress 3.5Hi there — I also have a previously-working installation of ZotPress, and recently upgraded WP to 3.5 and ZP to 5.x (currently on 5.0.3). The import process in early versions of 5.0 just kind of ran forever without any results; 5.0.3 pops up a javascript alert saying “Sorry, but there was a problem importing items: ” (nothing after that, unfortunately…)
I’d be glad to send along any logs that might be helpful in the process…
thanks again for a great plugin!
Forum: Plugins
In reply to: [Zotpress] 3.1.2 working with WP 3.1.2?Just updated to 4, and it’s looking great so far!
Forum: Plugins
In reply to: [Zotpress] Zotpress 3 Reference Widget not showing tagsWorks great in Mac Safari now, thanks!
Forum: Plugins
In reply to: [Zotpress] [Plugin: Zotpress] Child items causing loading delays?Thanks for the info! So the way I’ve actually implemented Zotpress on my site is through (manual) unification of the WordPress basename and the Zotero tag namespaces. At the end of every post, I call a theme function which looks like this:
function showcites() { $postid = $wp_query->post->ID; $slug = basename(get_permalink($postid)); echo '<div class="citationheader">References:</div>'; echo '<div class="citations">'; echo do_shortcode ('[zotpress tag_name="' . $slug . '"]'); echo '</div>'; }This way one call to Zotpress retrieves all entries tagged with the basename of that particular article. (This essentially turns Zotpress into a per-article reference system, which is how I’m using it.)
So the three queries to Zotero in the page above (two articles and one child item) are actually coming from one shortcode call…
Thanks again for a great tool!
Forum: Plugins
In reply to: [Zotpress] Zotpress 3 Reference Widget not showing tagsMac OS X 10.6.7 — Looks like the problem is showing up in Safari 5.0.5, but not Chrome 11 nor Firefox 4. Odd that the problem is inconsistent between two WebKit browsers (Safari and Chrome). I don’t think that it’s a CSS rendering issue, but rather that something in how tagsSelect gets built out…
Forum: Plugins
In reply to: [Zotpress] Feature Suggestions for Zotpress?First, I wanted to say this is a fantastic plugin — thanks very much for the hard work!
Here are two things I can’t figure out how to do currently:1) Order by the last name of the author. I’m using chicago-author-date, but would also apply to MLA, etc. I understand this can get tricky in a mixed list of items, some of which don’t have explicit authors, but perhaps one could fail back to the name of the publication/work in that case? It would also be no problem for author-less items to sort to the very bottom.
2) Hyperlink the URL’s returned. Although inappropriate for print, wrapping them in a href makes a lot of sense for the web. I am guessing this a different issue than the “Download” option?