Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Cédric
You can do everything you want but even as flexible as Connections is with its large number of shortcode options for tweaking, there are limitation what can be done with those shortcode options.
To make the changes you want you need to edit eh
card-single.phpfile, so you would need to know some basic PHP and be comfortable making these changes. The file can be found here:
../wp-content/plugins/connections-tile-plus/For the image, you would change this:
<?php $entry->getImage( array( 'image' => $atts['image_single'] , 'height' => $atts['image_single_height'] , 'width' => $atts['image_single_width'] , 'fallback' => array( 'type' => $atts['image_single_fallback'] , 'string' => $atts['str_image'] ) ) ); ?>to this:
<?php $entry->getImage( array( 'image' => $atts['image_single'] , 'height' => $atts['image_single_height'] , 'width' => $atts['image_single_width'] , 'fallback' => array( 'type' => 'none', 'string' => $atts['str_image'] ) ) ); ?>To add the logo, you would add this where you want the logo to be displayed:
<?php $entry->getImage( array( 'image' => 'logo', 'height' => $atts['image_single_height'] , 'width' => $atts['image_single_width'] , 'fallback' => array( 'type' => 'none', 'string' => $atts['str_image'] ) ) ); ?>If you edit the
card-single.phpfile, I highly suggest you follow the method outlined in this QuickTip so your changes are update safe.For PDF upload, that is possible, but very complex. The best way to go would be to create a new extension to handle the PDF upload and store the filename and path to the entry meta.
I hope that helps!
08/12/2014 at 10:11 am in reply to: Export a list of people with \'dates\' for Membership recorded. #300600Steven Zahm
Keymaster@ Jeanne
Thanks for the suggestion, I’ve added it to my feature request list.
Steven Zahm
Keymaster@ Christian
Unfortunately this is a know bug, but I have not been able to replicate it which makes it impossible for me to track down and fix it. If you’re will to give me a temp admin account and FTP access to your site, I’ll gladly take a look and track that bug down and fix it.
Steven Zahm
Keymaster@ Doug
There’s the CSV Import extension available that will allow you to import the your CSV file.
Hope that helps!
Steven Zahm
Keymaster@ Casey
Great to hear! I’ve reported the issue to the Say What? plugin dev.
If you have a moment, I would truly appreciate a review as they really do make a difference. Many thank in advance.
http://wordpress.org/support/view/plugin-reviews/connectionsSteven Zahm
Keymaster@ karikirch
Great to hear! I’ve reported the issue to the Say What? plugin dev.
If you have a moment, I would truly appreciate a review as they really do make a difference. Many thank in advance.
http://wordpress.org/support/view/plugin-reviews/connectionsSteven Zahm
Keymaster@ karikirch
Are the options saving for you after you enter them? Another user is having trouble too and nothing they enter is actually being saved. Say What just released an update so maybe there is a bug in this version preventing the options from being saved correctly. Try the previous version instead.
Steven Zahm
Keymaster@ Casey
Ahhh, ok, I see. Yeah, if nothing is being saved, then there must be a bug/conflict preventing that.
They just released an update, try the previous version.
Steven Zahm
Keymaster@ Dani
Can you take a screenshot, annotate what the change is that you’re trying to make and attach it to a reply. Include a link to your directory in the reply … And I’ll take look.
Steven Zahm
Keymaster@ Dani
Sorry, but that shortcode will only work with the premium templates. It will not work with any of the default templates.
-
AuthorPosts
