BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 3,281 through 3,290 (of 15,332 total)
  • Author
    Posts
  • in reply to: Duplicate Birthdates Won’t Delete #423959
    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.

    in reply to: Can I move "clear search" button #423914
    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.

    in reply to: add logo? #423907
    Steven Zahm
    Keymaster

    @ Tim

    On the line that begins with in the card.php file, not the slim-plus.php file.

    echo '<h3 class="cn-accordion-item" data-div-id="cn-detail

    Hope that helps!

    in reply to: Need Resolution/Sizes for Logo #423903
    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.

    in reply to: Add custom fields to the templates #423887
    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.

    in reply to: In entry Padding #423886
    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.

    in reply to: several questions #423872
    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.

    in reply to: Pagination not working #423865
    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.

    in reply to: Google Map for card-single.php template #423864
    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
                });
    
            }
    
        }
    
    });
    
    in reply to: several questions #423861
    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.

Viewing 10 posts - 3,281 through 3,290 (of 15,332 total)