05/25/2016 at 2:32 pm
#377570
Keymaster
@ Alison
Here’s a revised code snippet:
add_filter( 'cn_form_edit_entry_before', 'alison_form_before' );
function alison_form_before() {
$permalink = cnURL::permalink(
array(
'data' => 'url',
'type' => 'home',
'return' => true,
)
);
switch ( cnQuery::getVar('cn-process') ) {
case 'edit':
$string = 'Cancel';
break;
default:
$string = 'Back to directory';
break;
}
echo '<a href="' . $permalink . '" style="color: black !important;">' . $string . '</a>';
}
You should post the details here as a private reply. The hotmail account is my spam blackhole … I never see that email.
