Contributor's name in citation

Hi,

We are currently testing a site we have set up. the plan is to have people contributing content through the 'contribute an item' tab. This all works fine but contributed items seem to have the contributor's name in the citation instead of the creator - see this example http://omeka.okfn.org/items/show/107

Any ideas how I can get rid of this?

Thanks

Marieke

The default citations use Creator.

Do you possibly have a custom plugin installed that changes the citation?

We have the following plugins running:

COinS

Commenting

Contribution

CSV Import

Derivative Images

Digital Object Linker Plugin

Embed Codes

Exhibit Builder

Geolocation

Guest User

Search By Metadata

Simple Pages

Simple Vocab

The Contribution plugin makes that change to the citation. To remove it, you can go into the ContributionPlugin.php file and comment out the filter that makes that happen. Around lines 46-56, comment out 'item_citation' with // so it looks like:

protected $_filters = array(
        'admin_navigation_main',
        'public_navigation_main',
        'simple_vocab_routes',
//        'item_citation',
        'item_search_filters',
        'guest_user_links',
        'guest_user_widgets',
        'api_resources',
        'api_import_omeka_adapters'
    );

Thanks - will try it!