You can now achieve this using WordPress filters … add the following to your theme’s functions.php
:
function custom_ccchildpage_inner_template($template) {
$template = '<div class="ccchildpage {{page_class}}">{{thumbnail}}<h3{{title_class}}>{{title}}</h3>{{excerpt}}{{more}}</div>';
return $template;
}
add_filter( 'ccchildpages_inner_template' ,'custom_ccchildpage_inner_template' );
This will change the output of the plugin on all pages.
I intend to create full documentation for the available filters soon, and at a later stage will implement ways of accessing some of them via the WordPress dashboard.
I hope that this helps.
[ Signature moderated ]