This topic is: resolved
- This topic has 10 replies, 3 voices, and was last updated 11 years, 12 months ago by .
You cannot reply to this support topic. Please open your own support topic.
The Support Forum is closed. Not to worry! Providing the top quality support you expect and we're known for will continue! We're not ending support, just changing where you submit requests. This will provide you with the best experience possible.
Premium Support
Have you purchased an addon for Connections such as one of our premium templates or extensions with a valid license and you need help?
Please open a Support Ticket in your user account.
Free Support
Are you using the free Connections plugin? Don't worry, you are still very important to us! We are still providing you with the same high quality support that we're known for.
Please open a new support topic in the WordPress support forums for Connections.
Tagged: 0.8.13, cMap, link_format, say what, shortcode, shortcode options
@ 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!
You cannot reply to this support topic. Please open your own support topic.
