in wp-content/plugins/revisionary/
find the file front_rvy.php
,
on line :126
change
if ( ! $template = rvy_get_post_meta($id, '_wp_page_template', true) ) {
if ( $revision = get_post( $id ) ) {
$template = rvy_get_post_meta($revision->post_parent, '_wp_page_template', true);
}
}
to this
if ( ! $template = get_post_meta($id, '_wp_page_template', true) ) {
if ( $revision = get_post( $id ) ) {
$template = get_post_meta($revision->post_parent, '_wp_page_template', true);
}
}
worked for me. ??