BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 14,991 through 15,000 (of 15,332 total)
  • Author
    Posts
  • in reply to: Index #251291
    Steven Zahm
    Keymaster

    @ Kevin Free

    Take a look at this doc page: show_alphahead

    Search, that is enabled in several of the premium templates such as cMap, Market and Tile Plus. Another option is the Widget Pack which includes a search widget that be added to the theme’s side bar.

    Hope that helps!

    in reply to: CSV Import Question #251290
    Steven Zahm
    Keymaster

    @ professionalmojo

    Make “Organization” in the “Entry Type” column all lowercase, same for the “Visibility” column.

    in reply to: Bilingual Connections #251287
    Steven Zahm
    Keymaster

    @ Ann-Marie

    Maybe you can create two root parent categories [not a child of another category]. One as English and the other as the other language and create entries putting them in the correct categories.

    in reply to: searching by zip-code #251286
    Steven Zahm
    Keymaster

    @ Andreas Meyer

    Sorry, no, not at this time. I should have something out later this year that can do this.

    in reply to: Attendance tracking #251284
    Steven Zahm
    Keymaster

    @ Lisa Dennis

    interesting idea, I’ve added it to my list.

    in reply to: Avoid duplicate entries or overwrite existing ones #251281
    Steven Zahm
    Keymaster

    @ roy

    Currently there is not a way because the import is one way, it can not determine if there is an entry to update. I am planning a revamp. I could add an id column so you could add the entry id to the CSV and instead of adding it’ll update, but it’ll be brute force updating. For example, let’s say you have two addresses in an entry but the CSV only has one … both addresses would be removed and the new one inserted. Would that work?

    in reply to: CSV Import Question #251278
    Steven Zahm
    Keymaster

    professionalmojo

    Can you private reply with a sample of the CSV you’re importing so I can take a look?

    in reply to: Moved Servers, now not writeable #251277
    Steven Zahm
    Keymaster

    @ Marodesign

    Good to hear you have it sorted out.

    in reply to: Tutorial Request #251205
    Steven Zahm
    Keymaster

    @ Kevin Free

    All the frequently asked questions for each product can be found in the top nav. For example, the CSV Import found under Pro Add-ons, if you hover over it with your mouse you’ll see a link for FAQs. In this that list of FAQ it explains how to assign categories in the CSV.

    Another option where you can see all the FAQs, about a hundred of them, go to the FAQs page under the support menu. That page shows the general FAQ for Connections only, but on the right sidebar there are links to every FAQ for every product.

    Oh, you might want to checkout the QuickTips too.

    I hope that helps!

    in reply to: Custom Theme … Image question #251203
    Steven Zahm
    Keymaster

    @ Chris Mower

    Actually, it’s the other way around. When a user supplied a size via the shortcode, it overrides the user defined settings in the admin. The purpose is to allow the user to configure the template for multiple purposes. For example, many users use more than one template on their site and having the same image size forced upon each template doesn’t make sense so I built in the a method into the premium template to change this on demand.

    Try these to force a size:

    $entry->getImage( array( 'image' => 'photo', 'preset' = 'thumbnail' ) );
    $entry->getImage( array( 'image' => 'photo', 'preset' = 'entry' ) );
    $entry->getImage( array( 'image' => 'photo', 'preset' = 'profile' ) );
    $entry->getImage( array( 'image' => 'logo' ) );
    

    The preset option explained:
    thumbnail = the small image settings
    entry = the medium image settings
    profile = the large image settings

    The image size will be that of the settings applied to the image at the time of upload. The preset names don’t match the actual naming in the settings because I decided after writing the function that it made more sense to present the users as the choices small, medium and large.

Viewing 10 posts - 14,991 through 15,000 (of 15,332 total)