Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Shirley
Can you update to Link 1.0.3? You can download it from your purchase history.
Steven Zahm
Keymaster@ Shirley
What did you update?
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.
Steven Zahm
Keymaster@ Mike
If you open up the
slim-plus.jsfile 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.Steven Zahm
Keymaster@ Steve
Which template are you using? Can you share link to your directory page?
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.
Steven Zahm
Keymaster@ Mike
Close, The default image size is 100w x 120h px.
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.phpfile.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
zcoption and set the value to2. I think that is the setting which will yield the result you require. If not, valid options are0,1,2or3. Option1is the default and is what is being used.Hope that helps!
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?
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.
-
AuthorPosts
