Posted by dde1gsu on November 12, 2011 at 8:04pm
Hi all,
I am from Atlanta, need a small help on Biblio module in drupal. I have added new publication entry (alongside the typical fields like title, author, year filled up) with note/custom1/research note field filled up. But the note/custom1/research note fields are not showing up in the biblio list or view. I'll really appreciate any suggestion.
Thanks!
- Debraj
Comments
@debraj: Any special reason
@debraj: Any special reason to have asked this question on g.d.o and in the kolkata group in particular. My suggestion would be to ask it on the common support forums where more people hangout. You could also ask this to the module committers.
Re: @debraj: Any special reason
Kolkata is my home city and I am a member of Kolkata drupal mailing list. So I thought of asking this here. Also in future I was having plan to communicate/collaborate with developers in Kolkata. Regarding my drupal problem, it has been solved. Thanks anyways.
Good to know your problem got
Good to know your problem got solved :-)
Go ahead and record how it got solved here. Somebody might find it handy in future. Drupal forums encourages folks to answer their own questions when they solve it themselves :-)
Re: Need small urgent help with Biblio module in Drupal
Archiving of solution to a drupal problem:
Problem: I have added new publication entry (alongside the typical fields like title, author, year filled up) with note/custom1/research note field filled up. But the note/custom1/research note fields are not showing up in the biblio list or view.
Solution: If you selected "classic" formatting in Biblio setting, you need to edit the php file: "biblio_style_classic.inc" and add corresponding, for example as follows:
if (isset ($node->biblio_year)) {
$output .= ', ' . check_plain($node->biblio_year) . ". \n" . "<br\/>" ;
}
if (isset ($node->biblio_custom1)) {
$output .= check_plain($node->biblio_custom1) . " \n";
}
if you can share some screen
if you can share some screen or url so we can understand your issue. But per you post it sounds that you have some cache issue .... so kindly clear you cache and then check. good luck :)