BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 14,291 through 14,300 (of 15,332 total)
  • Author
    Posts
  • in reply to: Photo Misbehavior #257507
    Steven Zahm
    Keymaster

    @ Gayle

    Yes, and I just received it.

    in reply to: CSV import question #257506
    Steven Zahm
    Keymaster

    @ Gizmo

    1) I’m not sure what you’re asking. Map what id?

    2) The connections_meta table is not used at all at the moment. So importing to it and displaying data from it, you would have to add all the necessary code. It is likely better to map to an unneeded field.

    3) I just confirmed, the link does not seem to be working. I’m not sure when or how that broke, no else has reported it. I’ll have to look into it. This however, will not affect the import.

    in reply to: text before title #257505
    Steven Zahm
    Keymaster

    @ peekaa

    I don;t think there are any templates that show a “Title” label. Or, is that what you’re asking, can one be added?

    in reply to: Import Category ID #257504
    Steven Zahm
    Keymaster

    @ Emily

    right, unfortunately, there is no logic to help define which category an entry should be assigned if there are multiple categories with the same name. Importing by ID would be the only option. I’ve been working diligently for the past few months on a complete rewrite. I’ve added this to the to feature list to implement.

    Now, I know you have a need for now. If you can make two minor changes to PHP you can change the import from name to ID.

    Open this file:
    ../wp-content/connections-csv-import/submenu/csv.php

    Go to line 804. It should be the following:

    $term = $connections->term->getTermBy('name', $category, 'category');
    

    Change it to this:

    $term = $connections->term->getTermBy('id', $category, 'category');
    

    Now got to line 806. It should be the following

    if ( $term->name == $category )
    

    Change it to this:

    if ( $term->term_id == $category )
    

    I think that should do it.

    in reply to: Submission with image fails #257503
    Steven Zahm
    Keymaster

    @ Josh

    Sure, use the contact link at the bottom of the page. But first test, try with an image where the image dimensions are not “huge”. You see, images are processed in an uncompressed state. So an image that is highly compressed to produce a smaller file size can easily be 4X or greater in size in the memory. This isn’t a limitation in Connections, this is just how image processing works.

    Right now, there is no logic in Form to pre-detect an image that is too large and stop the processing.

    in reply to: Uparrow next to Show Map #257497
    Steven Zahm
    Keymaster

    @ cliff

    This can only be done by editing the template file. This file can be found here:
    ../wp-content/plugins/cmap

    The file you need to edit is named card.php.

    Hope that point you in the right direction.

    in reply to: Link not Linking Directories #257495
    Steven Zahm
    Keymaster

    Stacey

    Have you logged out and back in? The link action only occurs on login. Also, if you did logout and log back in and then changed your email addresses to match, the link can not not happen because your user account was already checked for a match. This is done to prevent hijacking the ownership of an directory entry. Does this helps?

    in reply to: Category Widget – show_empty_categories? #257485
    Steven Zahm
    Keymaster

    @ Emily

    Not certain I understand completely, but I’ll try to answer.

    The show_empty_categories is a template specific shortcode option and it is only available to those that support that option. Using it for a template will not affect the widget.

    I hope that answers your question.

     

    in reply to: Chamber Directory #257483
    Steven Zahm
    Keymaster

    @ Luci

    They’re running a slightly older version of the cMap template. This template does come with a search and the category drop down, nothing else is required.

    Hope that helps.

    in reply to: Internal Server Error #257477
    Steven Zahm
    Keymaster

    @ Dennis

    This was resolved in version 0.7.6.4 released on 04/06/13.

Viewing 10 posts - 14,291 through 14,300 (of 15,332 total)