Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ plzit
If you give me a temp admin login I will take a look? Login details can be posted here as a private reply. FTP too in case I need to do deeper code debugging.
Steven Zahm
Keymaster@ Beverly
Add the following to the theme’s custom css area:
div#cn-clear-search { text-align: left; }That should do it.
Steven Zahm
Keymaster@ Tim
On the line that begins with in the
card.phpfile, not theslim-plus.phpfile.echo '<h3 class="cn-accordion-item" data-div-id="cn-detailHope that helps!
Steven Zahm
Keymaster@ Priscilla
There is no certain answer for this… it really depends on how you configured the template. By default, it use the size settings as set on the Connections : Settings admin page under the Images tab in the Logo section. If you changed these settings or used the Template Customizer to change the logo for the template, you would have to ask for the image to be at least of those dimensions.
Hope this helps! Let me know.
Steven Zahm
Keymaster@ Americas Alliance
But the interface is different than before and the custom fields are not displayed. How can I fix this?
How is is different? Is it possible the person prior to you customized the template? If they did, likely they did it in a way that those changes were lost when you delete it. Hard to know, I would need to be provided with more details.
Steven Zahm
Keymaster@ Hannah
I’m sorry, but I am not sure what you are asking? Padding can be added via CSS… I could give you that CSS but I would have to know how and where.
Steven Zahm
Keymaster@ Mieke
yes, it is only saved when you actually save the entry in which you are attaching the custom field data to. This works much like the same as the identical fields when adding it to WordPress Pages and Posts.
Steven Zahm
Keymaster@ Mitch
re: do you think you will also be creating a PRO version of the Profile template with the pagination setting in the future?
Sorry, no plans. The only reason the other exists because another user paid for me to develop it for them. I changed a very reasonable fee, knowing I could add it to the Template Pro Pack and the Pro Pack bundles to increase the value-add to those items.
Steven Zahm
Keymaster@ Mitch
Here’s the javascript for the Tile Plus template for the map. You’ll need to small mods it to work, but it is pretty much all that’s needed.
jQuery(document).ready(function ($) { $('#cn-tile-plus .cn-category-select.cn-enhanced-select').chosen(); // Render map on single entry page var cnSingleMap = $('#cn-gmap-single').length ? $('#cn-gmap-single') : false; if ( cnSingleMap != false ) { var fLatitude = 0; var fLongitude = 0; var uuid = cnSingleMap.attr('data-gmap-id'); var strAddress = $( '#map-' + uuid ).attr('data-address'); var strMapType = $( '#map-' + uuid ).attr('data-maptype'); var intZoom = parseInt( $( '#map-' + uuid ).attr('data-zoom') ); if ( $('#map-' + uuid ).attr('data-latitude') ) fLatitude = parseFloat( $( '#map-' + uuid ).attr('data-latitude' ) ); if ( $('#map-' + uuid ).attr('data-longitude') ) fLongitude = parseFloat( $( '#map-' + uuid ).attr('data-longitude') ); if ( fLatitude == 0 && fLatitude == 0 ) { $( '#map-' + uuid ).goMap({ markers: [ { address: '\'' + strAddress + '\'' } ] , zoom: intZoom, maptype: strMapType }); } else { $( '#map-' + uuid ).goMap({ markers: [ { latitude: fLatitude , longitude: fLongitude } ] , zoom: intZoom, maptype: strMapType }); } } });Steven Zahm
Keymaster@ Mieke
I just logged in added a test entry with a custom field meta “diploma’s”. When I view it after the entry, it was there. When I went to add a second test entry, “diploma’s” was in the custom field drop down. Seems to working fine.
-
AuthorPosts
