08/24/2014 at 8:48 pm
#301829
Keymaster
@ Dani
re: I thought the shortcode options only work with the premium templates?
Correct, they only work with the premium templates. You mentioned possibly upgrade which is why I mention the shortcode options as an option.
If you want to remove it from the PHP, there is a more complex option, using filters.
For example to remove the label from links you can do use this filter:
add_filter( 'cn_output_default_atts_link', 'cn_link_output_atts' );
function cn_link_output_atts( $atts ) {
$atts['format'] = '%title%';
return $atts;
}
re: Also, there is an extra space in front of Contact that I would like to get rid of.
That can be done by adjusting CSS. Add the following to your theme’s custom CSS area:
.cn-entry-info span:first-child {
display: block;
}
I hope that helps!