Forum Replies Created
-
AuthorPosts
-
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!
Steven Zahm
KeymasterMake “Organization” in the “Entry Type” column all lowercase, same for the “Visibility” column.
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.
Steven Zahm
KeymasterSorry, no, not at this time. I should have something out later this year that can do this.
Steven Zahm
Keymaster@ Lisa Dennis
interesting idea, I’ve added it to my list.
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?
Steven Zahm
KeymasterCan you private reply with a sample of the CSV you’re importing so I can take a look?
Steven Zahm
Keymaster@ Marodesign
Good to hear you have it sorted out.
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!
Steven Zahm
KeymasterActually, 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 settingsThe 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.
-
AuthorPosts
