BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 10,461 through 10,470 (of 15,332 total)
  • Author
    Posts
  • in reply to: customize single page directory #300601
    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.php file, 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.php file, 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!

    Steven 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.

    in reply to: uploading existing data #300580
    Steven Zahm
    Keymaster

    @ Doug

    There’s the CSV Import extension available that will allow you to import the your CSV file.

    Hope that helps!

    in reply to: Changing Title of 'Work Phone' #300579
    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/connections

    in reply to: Connections Form Questions #300578
    Steven 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/connections

    in reply to: Connections Form Questions #300498
    Steven 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.

    in reply to: Changing Title of 'Work Phone' #300497
    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.

    in reply to: Dynamic image sizes in templates #300496
    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.

    in reply to: Editing fields #300495
    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.

Viewing 10 posts - 10,461 through 10,470 (of 15,332 total)