BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 12,231 through 12,240 (of 15,332 total)
  • Author
    Posts
  • in reply to: Link to entry failing #276525
    Steven Zahm
    Keymaster

    @ Shirley

    Can you update to Link 1.0.3? You can download it from your purchase history.

    in reply to: Link to entry failing #276522
    Steven Zahm
    Keymaster

    @ Shirley

    What did you update?

    in reply to: Need Alpha Version Please #276520
    Steven Zahm
    Keymaster

    @ Mike

    Which version do you have installed. What was the alpha has since been released [mid Nov]. You can download the update from your purchase history.

    in reply to: Reposition Category DropDown & Search? #276516
    Steven Zahm
    Keymaster

    @ Mike

    If you open up the slim-plus.js file and remove:
    $('select[name^=cn-cat]').chosen(); that’ll will disable the enhanced drop down completely. When on the mobile the native chooser will be used.

    in reply to: logo not displaying #276513
    Steven Zahm
    Keymaster

    @ Steve

    Which template are you using? Can you share link to your directory page?

    in reply to: CSV Import: Upating Data #276512
    Steven Zahm
    Keymaster

    @ Mike

    The upper limit per import is still server resource bound. I’ve only tested up 20,000 in a CSV import. The current CSV Import will import the import in lots of 100. If you have a beefier server, you could alter this value quite easily to import 1000 at a time. Imports are more efficient in larger chunks. I have to keep the value low so it doesn’t run into problems on the lower priced shared hosts.

    NOTE: Even though the imports happen in chunks the CSV library I use still parses the entire file, so that’s where the script will be server resource bound.

    Hope that helps.

    in reply to: Which Image is the Slim Plus Image? #276511
    Steven Zahm
    Keymaster

    @ Mike

    Close, The default image size is 100w x 120h px.

    in reply to: Image settings to keep logo uncropped #276495
    Steven Zahm
    Keymaster

    @ Timothy

    Because Excerpt Plus requires a specific image size so the layout does not break it is create on demand. With that said, you have to make this change by editing the template’s card.php file.

    You need to change this:

    $entry->getImage( array(
            'image'    => $atts['image'],
            'height'   => 120,
            'width'    => 100,
            'fallback' => array(
                    'type'     => $atts['image_fallback'],
                    'string'   => $atts['str_image']
                    )
            )
    );

    To this:

    $entry->getImage( array(
            'image'    => $atts['image'],
            'height'   => 120,
            'width'    => 100,
            'zc'       => 2,
            'fallback' => array(
                    'type'     => $atts['image_fallback'],
                    'string'   => $atts['str_image']
                    )
            )
    );

    Notice I added the zc option and set the value to 2. I think that is the setting which will yield the result you require. If not, valid options are 0, 1, 2 or 3. Option 1 is the default and is what is being used.

    Hope that helps!

    in reply to: Visual/Html Editor #276491
    Steven Zahm
    Keymaster

    @ Nancy

    Sorry, not sure I understand. In what context? When adding or editing an entry in the admin? Add an entry in the front end using Form?

    in reply to: Reposition Category DropDown & Search? #276490
    Steven Zahm
    Keymaster

    @ Mike

    Sorry, these type of changes can only be done by editing both the code for the template and the core Connections plugin code.

Viewing 10 posts - 12,231 through 12,240 (of 15,332 total)