10/18/2017 at 9:58 am
#438205
Keymaster
@ Allan
RE: I would like the title of an entry in the directory to be a hyper link to that entry, however it doesn’t seem to work even when I have the option selected in the advanced settings
This is the design of Circled, it has the “View Profile” link to view the entry. The only way to change this would be to edit the core PHP template file for the template.
RE: I would like to add an option to links, at the moment the options are either blog or website, how would I add a third option for a link?
Install the Code Snippets plugin, copy paste the following example code, tweaking the type as desired. Save and Activate the snippet.
function cn_my_new_link_types( $options ) {
$options['billing'] = 'Billing Website';
$options['claims'] = 'Claims Website';
return $options;
}
add_filter( 'cn_link_options', 'cn_my_new_link_types' );
You can add as many new link options as you wish.
Hope this helps!
