Hi,
I am now struggling with a biblio old version.
Full Text field appears automatically, without any settings but I want to hide (disable) this field on my reference submission interface.
I checked almost all features but can't find the solution to turn off the Full Text field...

Could someone help me how to disable the Full Text field?
At the moment we can't use biblio version 6 because we have no time to upgrade our system...

thanks!, ken

CommentFileSizeAuthor
#14 fulltext.png16.88 KBsazevedo@ua.pt

Comments

rjerome’s picture

Have you checked the "view full text" setting on the "admin/user/access" page?

Ron.

kentamani’s picture

Hello Ron,

Thank you for you quick response!
Yes, I checked off the permission of "view full text" for all users in the access page.
But it seems not to be changed anything and the full text field appears again as it is...

Otherwise can we comment out some lines of source code relating to "full text"?

Ken.

rjerome’s picture

Perhaps I misunderstood, did you mean the full text field on the input form or the output? If you meant the input, then I guess your right, there is no way to turn it off (I never realized that before, but it's because the full text is stored in the "node" table rather than the "biblio" tables). I could add an option to turn the the full text input filed off, I don't think that would be a big problem.

Ron.

kentamani’s picture

Yes, I meant the full text field on the input form, where user normally fill in reference information. I want to disable it because of our copy rights matters.

It would be really great if you could provide an option of switch on/off the "Full Text" field.
I also think this option will be useful for many people who have to avoid some potential legal troubles.

Thanks, ken.

rjerome’s picture

Status: Active » Fixed

This option is now in the 5.x-dev version and will be carried into the upcoming 1.17 version.

Ron.

kentamani’s picture

Version: 5.x-1.16 » 5.x-1.x-dev
Status: Fixed » Active

Hi Ron,

Many thanks for the turn on/off function of the input full text field!

However it does not work well in my system...; I checked off the full text input field in the biblio settings but then an empty input field appears in the user input page... in my case below the title field.
It looks like a normal input full text field but without field title (i.e. Full Text:) and help text below (i.e. You may enter a full text or HTML version of the publication here).
The turn-on full text field works fine but something is happening when this function was turned off.

I can't figure out whether this occurrence is due to the code itself or due to my biblio configuration...
I am not sure whether you can trace my problem but can you check this?

Thanks, Ken

rjerome’s picture

I'll take a look, I have to admit that I didn't test that code prior to committing it, I just assumed it would be flawless :-)

rjerome’s picture

Status: Active » Fixed

It took me a while to find out what was going on there, but it's fixed now.

Turns out testing might be useful after all :-))

Ron.

kentamani’s picture

Many thanks, Ron!
The fulltext function now works very fine. It was really great help for us :-)).
Greetings, ken.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Aaron Rester’s picture

Version: 5.x-1.x-dev » 6.x-1.12

Does this functionality still exist in the latest build for D6? I can't seem to figure out where to go to hide the Full Text input.

rjerome’s picture

It would seem that I never added it to the 6.x branches. I presume you would like it?

physiotek’s picture

personnally yes i would like it.
it's a matter of copyright and to be the most user-friendly possible.
thanks!

sazevedo@ua.pt’s picture

Issue summary: View changes
StatusFileSize
new16.88 KB

Hi,
I'm having this problem in Drupal 7, How can I hide Full text?
The image of the setting is attached
fulltext

vegardjo’s picture

Version: 6.x-1.12 » 7.x-1.0-rc7

Same issue (and screenshot) as #14 for me in 7.x-10-rc7. Seems no way to disable this. Have also tried to disable the body field with Display Suite, but that isn't respected either. Any pointers to how to fix this?

vegardjo’s picture

Status: Closed (fixed) » Active

Forgot to open the issue again. Also a workaround for people searching for this. In you custom module or template.php file, use a hook_form_alter:

function yourmoduleortheme_form_alter(&$form, &$form_state, $form_id) {
  // unset the "full text" fieldset / tab option in biblio  
  if ($form_id == 'biblio_node_form') {
    unset($form['biblio_tabs']['biblio_full_text']);
  }
liam morland’s picture

Status: Active » Fixed

If you need further help, please re-open and provide details.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.