Active
Project:
Bibliography Module
Version:
7.x-1.0-rc7
Component:
Documentation
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 Sep 2012 at 18:02 UTC
Updated:
27 May 2017 at 10:38 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
boabjohn commentedSame here...I am trying to publish a type = Report, and my secondary authors are shown as "Series Editors".
Going to: ../admin/config/content/biblio/fields
and choosing type = Report, there does not appear to be any provision for setting the label for Authors (primary or secondary).
Thoughts?
Comment #2
boabjohn commentedSeems like this one should be a simple case of RTFM or look again at the obvious interface option...but I'm still adrift...showing Series Editor is really not good for my Report citation...I need Secondary Authors.
JB
Comment #3
hartcapl commentedI too am having this issue. I have users on our site who have edited a book, but the citation shows them as authors both in the listing, i.e. ..../ca/biblio and also when you click on the citation and are given the full tabular citation. however, if you then edit the citation, it shows that the "authors" are "primary" and "editors".
in the help text at the top of ...admin/config/content/biblio/fields, it reads:
"Finally, for each author field you can choose a set of author roles. Assigning different roles to authors within the same field, e.g. primary and secondary authors within the authors field, allows to theme them differently."
however, i can't find an "author field".
Comment #4
richlivi commentedI'm experiencing the same problem (i.e., I'd like to change secondary author label to "Editors"). It's been several years since this issue was opened, does anyone have any suggestions?
Comment #5
rupesh_jagtap commentedHi,
@richlivi can you please share more details about your issue. I can only see 'secondary author' option in roles dropdown under 'authors' tab in 'fields' section.
May be I can help you out to resolve the problem.
Comment #6
stephaniemoore commentedI second this issue. On the "Fields" admin page, I don't have an "Authors" tab at all.
Comment #7
brewerkr commentedI third the issue. There is no Authors tab and if you select a Category of "Secondary Author" on a "Conference Paper", it puts those secondary authors in a line with the incorrect label of "Editor".
I found in https://www.drupal.org/node/2305823 - "- It seems only the contributor category has an effect on the displayed values based on the field configuration for that publication type (in misc/biblio.field.type.data.csv)". When you look in the CSV I can see the incorrect label that I want to fix. I've tried updating it (under Conference Paper, making the secondary author say "Secondary Author") saving and flushing all caches, but the change doesn't take. Any ideas how to get it to go through?
Comment #8
thememorious commented@brewerkr I am having the same problem. Did you ever find a solution? I can't seem to make Biblio re-read the edited csv file.
Comment #9
alan d. commentedI couldn't see any code that done this and had to implement my own solution. It is a bit advanced, but in case anyone finds it useful.
Note there is no context to biblio_type from just using the theming function...
1) Add a form alter and append an after_build to the form.
An after build is required as D7 form has some fik'ed caching logic... long story for another day.
2) Implement the after build
Restricts the available roles for Journal Articles
Hides the category (confused many)
3) Re-theme the form
In my case, I removed the t('Category) header and appended this value form field to type.
The hook_theme() is because I'm changing the theming function in the afterbuild to ensure this works no matter what theme is active.