Support has been upgraded!
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.
- This topic has 6 replies, 2 voices, and was last updated 3 years, 3 months ago by
Steven Zahm.
-
AuthorPosts
-
01/08/2019 at 8:12 am #481117
sebastien xtrem
ParticipantHi I test many option but I dont have solution
Is possible show category and note
Or only note ?
Thanks for your help
https://barreau-montpellier.com/annuaire-professionnel/
Sébastien
01/08/2019 at 9:52 am #481119Steven Zahm
Keymaster@ Sébastien
I’m sorry, I am not sure what you are asking. Give you give a little more detail?
01/08/2019 at 10:04 am #481120sebastien xtrem
Participant01/08/2019 at 10:42 am #481122sebastien xtrem
ParticipantI search and I fine this
<?php $entry->getCategoryBlock( array( ‘separator’ => ‘, ‘, ‘before’ => ‘‘, ‘after’ => ‘‘ ) ); ?>
Working but is possible change name Catégories by spécialité and the best is click linkThanks
01/08/2019 at 11:10 am #481124Steven Zahm
Keymaster@ Sébastien
Ok, I understand.
To add the note block:
$entry->getNotesBlock( array( 'before' => '<h4>' . esc_html__( 'Notes', 'connections' ) . '</h4>' . PHP_EOL, 'after' => '<div class="cn-clear"></div>', ) );
To add the categories:
$entry->getCategoryBlock( array( 'label' => 'Spécialité', 'separator' => ', ' ) );
Hope this helps!
02/01/2019 at 7:55 am #483329sebastien xtrem
ParticipantHi
Why the font is not same
https://barreau-montpellier.com/annuaire-professionnel/?cn-cat=&cn-s=billion
for note ex Date de prestation de serment : 20/01/1999<?php $entry->getNotesBlock( array(‘before’ => ‘‘ . esc_html__( ‘Infos:’, ‘connections’ ) . ‘‘ . PHP_EOL,
‘after’ => ‘<div class=”cn-clear”></div>’, ) );?>Thanks
02/01/2019 at 11:35 am #483339Steven Zahm
Keymaster@ Sébastien
Because the notes block is wrapped in a
p
tag and your theme applies styles to the thep
tag and that is inherited, like it should be. You’ll need to add you own CSS to the theme to style thep
with used within the template. Something like this:#cn-tile-plus .cn-entry p { font-weight: 500; line-height: normal; font-size: 13px; margin: 10px 0; }
Hope this helps!
-
AuthorPosts
You cannot reply to this support topic. Please open your own support topic.