BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 15,271 through 15,280 (of 15,332 total)
  • Author
    Posts
  • in reply to: Email block #249208
    Steven Zahm
    Keymaster

    Like so:

    <?php $entry->getEmailAddressBlock( array( 'format' => '%address%' ) ); ?>
    

    I hope that helps.

    in reply to: tray_image #249202
    Steven Zahm
    Keymaster

    Use this instead:

    [connections width=590 show_alphaindex='true' repeat_alphaindex='true' tray_image_fallback='block' str_bio_head='Volunteer' str_bio_show='Volunteer Detail' str_bio_hide='Close Volunteer Details' str_note_head='Organization' str_note_show='Organization Detail' str_note_hide='Close Organization' str_note_show='Organization']

    You do not need to declare default values, which is why I removed them. Also, several of the options were wrapped in fancy quotes. This happens when options are copied from the website. See this QuickTip on working for shortcode. I hope that helps.

    in reply to: Profile Entry Card 1.0 template image not showing #249201
    Steven Zahm
    Keymaster

    @Jason

    The likely cause is another plugin is causing a fatal JavaScript error which blocks any JavaScript after the error from running. If you share a link to your directory, I can take a look and offer more direct advise on a resolution.

    in reply to: error messages #249153
    Steven Zahm
    Keymaster

    I just visited the link, it seems Tile Plus is being used. So, I’m figured that out. However, you should take a look at this FAQ, specifically the section about the [raw] shortcode.

    As for the PHP warning. On a live site, it’s good practice to setup the PHP warnings to be logged rather than shown to the user. Look at the answer here:  http://stackoverflow.com/questions/1645661/turn-off-warnings-and-errors-on-php-mysql

    That answer explains how to make this change to the PHP config via the .htaccess file.

    in reply to: swap the title and date #249151
    Steven Zahm
    Keymaster

    @Martin

    Ok, I’m confused. The category widget doesn’t display a date. Are you asking about the anniversary or birthday widget?

    in reply to: Not showing "Dates" #249137
    Steven Zahm
    Keymaster

    @Michael Kelso

    Open the template.php file found here:
    ../wp-content/connections_templates/cmap

    Change lines 27 and 28 from this:

    //$entry->getDateBlock();
    //$entry->getLinkBlock();

    To this:

    $entry->getDateBlock();
    $entry->getLinkBlock();

    Save and upload overwriting the original version.

    To add the Deadline option to the dates, open the class.options.php file found here:
    ../wp-content/plugins/connections/includes

    Search for the getDateOptions() method, it’ll be towards the bottom. It’ll make sense on what to add when you see the rest of the date option.

    in reply to: Modifying families #249130
    Steven Zahm
    Keymaster

    Sorry, no, there isn’t. Actually none of the premium template have built in support for the family entry type. So you are likely better to stay with the template you’re currently using. If you looking for search, maybe the Widget Pack will better serve your needs.

    Steven Zahm
    Keymaster

    @Brian

    I’m not certain there is an easy solution. You would have to delete those columns again, deactivate Connections and edit the connections.php removing this line:

    if ( $wpdb->get_var( "SHOW TABLES LIKE '" . CN_ENTRY_TABLE . "'" ) != CN_ENTRY_TABLE ) {

    and the closing bracket “}”, no quotes right before this line:

    if ( $wpdb->get_var( "SHOW TABLES LIKE '" . CN_TERMS_TABLE . "'" ) != CN_TERMS_TABLE ) {

    Now reactivate Connections. This should create the missing columns in the primary table.

    You didn’t delete any other columns in any of the other tables for Connections did you?

    in reply to: error messages #249127
    Steven Zahm
    Keymaster

    @Kimberly O’Bannon

    This is fix in the next release of Connections. It just a warning, nothing to be concerned about. It doesn’t actually display on the front of the site does it?

    in reply to: Dates #249126
    Steven Zahm
    Keymaster

    @lorainelyria

    I can’t guarantee when the next bug fix release will be released, so it would be best that you can give a temp admin account and I’ll make the small change that is required to get it working again.

Viewing 10 posts - 15,271 through 15,280 (of 15,332 total)