• Resolved moppety

    (@moppety)


    I love zotpress and it’s working great for me. Question: I am in a field (linguistics) where we give the talk at a conference *before* we write the paper associated with this talk. (Yes, we know this is weird.) Anyway, the presentations are therefore *not* papers. Is there any way to take out the “Paper presented at the” text for presentations?

    https://www.ads-software.com/plugins/zotpress/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Katie

    (@kseaborn)

    Not presently, as this is up to the style. But you could add a little bit of javascript to your theme javascript files to do this. Since I use jQuery, I would try something like this (not tested):

    jQuery(".zp-Zotpress .zp-Entry").each(function(){
       var $this = jQuery(this);
       jQuery(".csl-entry", $this).html( jQuery(".csl-entry", $this).html().replace("Paper presented at the", "") );
    });
    Thread Starter moppety

    (@moppety)

    Oh, styles, I forgot about styles. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Take out "Paper presented at the"’ is closed to new replies.