Overriding plugin views in Omeka 2

I tried following the instructions found here as I couldn't find the corresponding instructions in the Omeka 2 docs:

http://omeka.org/codex/Theming_Plugin_Pages

But it doesn't work. How do I override the view of, say, the SimplePages public view? I copied the directory (preserving structure) into my theme, but changes do not show. Thanks.

Resolved. Typo in plugin path. :/

To override a Simple Page view, copy

plugins/SimplePages/views/public/page/show.php

to

yourtheme/simple-pages/page/show.php

and modify however you'd like.

The guide you linked to should still be accurate. Maybe you copied too much of the directory from SimplePages. When overriding for the theme, you only use files from the views/public directory, so the structure in your theme should be

simple-pages
    page
        show.php

not

simple-pages
    public
        page
            show.php

Clearly, sheepeeh and I need to type our responses faster, or reload the screen more often!

Glad it's fixed!