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 4 replies, 3 voices, and was last updated 5 years, 7 months ago by
Steven Zahm.
-
AuthorPosts
-
11/03/2016 at 11:42 am #398474
Munk
GuestOne of the reasons we chose Connections and purchased the pro pack is because there is a LOGO field. But where does it display? The client needs the LOGO to display on every listing and even though I have added logos and selected display the logo is not visible. We’re using Names 1.0.1
11/03/2016 at 1:13 pm #398482Steven Zahm
Keymaster@ Munk
Well… Names does not show any images at all, only names, nothing else.
The logo is displayed depending on the template being used. For example the cMap and Market templates display it by default with the photo image displayed in the bio content tray.
All the other templates, since there focus in design is an individual, the photo image is displayed by default. With these you can choose to display the logo or photo.
So to better answer your question, I’ll need to know the exact template you are using since it can not be the Names template. If you share a link to your directory page, I can take a look too.
Look forward to hearing back so I can better assist.
11/07/2016 at 1:16 pm #398954K C
ParticipantMy bad – They are using Slim Plus 2.0.1. The demo listing with a logo is the second Cook at this link. I did try and look through to find a template that uses the logo but did not see it.
11/07/2016 at 1:30 pm #398955K C
ParticipantI understand the themes may appear exactly as the client like them – my question is if there is a theme which does display the image and logo. If there is not if I just know the nomenclature for the logo so I can request it from data and include it on the page. Thanks.
11/07/2016 at 1:41 pm #398957Steven Zahm
Keymaster@ K C
re: I did try and look through to find a template that uses the logo but did not see it.
Both the cMap and Market templates display both the logo and image. The logo is displayed by default on the card with the photo displayed in the bio area content tray.
re: nomenclature for the logo so I can request it from data and include it on the page
In all the templates, if you open the
card.php
andcard-single.php
files you’ll find code similar to this:$entry->getImage( array( 'image' => $atts['image'], 'width' => $atts['image_width'], 'height' => $atts['image_height'], 'zc' => $atts['image_crop_mode'], 'fallback' => array( 'type' => $atts['image_fallback'], 'string' => $atts['str_image'], ), ) );
This is the image code. You can use similar code to add the other image:
Display the logo:
$entry->getImage( array( 'image' => 'logo' ) );
Display the photo:
$entry->getImage( array( 'image' => 'photo' ) );
Hope that helps!
-
AuthorPosts
You must be logged in to reply to this topic.