BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 9,291 through 9,300 (of 15,332 total)
  • Author
    Posts
  • in reply to: Change "Work Phone" to "Phone" in Bio Entry Card #315531
    Steven Zahm
    Keymaster

    @ Linda

    Sorry about the late reply!

    Yes, this can be done as well. First you need to install the Code Snippets plugin.

    Add a new snippet with the following code:

    function cn_change_address_types_order( $options ) {
    
        $options = array ( 'work' => $options['work'] ) + $options;
    
        return $options;
    }
    
    add_filter( 'cn_address_options', 'cn_change_address_types_order' );
    
    function cn_change_phone_types_order( $options ) {
    
        $options = array ( 'workphone' => $options['workphone'] ) + $options;
    
        return $options;
    }
    
    add_filter( 'cn_phone_options', 'cn_change_phone_types_order' );
    
    function cn_change_email_types_order( $options ) {
    
        $options = array ( 'work' => $options['work'] ) + $options;
    
        return $options;
    }
    
    add_filter( 'cn_email_options', 'cn_change_email_types_order' );
    

    Save and activate the new snippet.

    That should do the trick.

    in reply to: Exporting directory to a spreadsheet #315530
    Steven Zahm
    Keymaster

    @ Erin

    This feature is not yet part of Connections, it is on the roadmap. There is this script:
    https://github.com/shazahm1/Connections-Export

    It is not a plugin and has a pretty complex setup … it actually going to be the basis for the feature being built into Connections. I do not expect this to be added for many months though.

    Hope that helps!

    in reply to: Moderated edits show "not authorized" #315529
    Steven Zahm
    Keymaster

    @ Rick

    I am done testing. I’ll also have to add that feature to Link. I’ll work on both of these this week and try to complete them.

    in reply to: After import, can not add manual entries #315528
    Steven Zahm
    Keymaster

    @ Jason

    What is the exact shortcode you are using? Can you share a link to your directory and an entry slug for an entry which is not displaying?

    in reply to: Upgrade under WP v4 = prob;ems with imagick? #315527
    Steven Zahm
    Keymaster

    @ Alex

    I do have this fixed, I think. I do not access to a server with an old version of Imagick. I was actually trying to release 8.1.6 today, I didn’t quite make it, so probably tomorrow.

    in reply to: chosen.js options #315263
    Steven Zahm
    Keymaster

    @ David

    I emailed you directly to take this discussion out of the forums.

    in reply to: Category-Problem with Umlaut #315217
    Steven Zahm
    Keymaster

    @ Fabrice

    Sorry, I did not see that you posted a private reply with the text for me to test. Just so I’m testing the same thing you have an issue with… how are you trying to output all entries from within the category? By selected as an option in Slim Plus from the drop down?

    in reply to: Moderated edits show "not authorized" #315209
    Steven Zahm
    Keymaster

    @ Rick

    I was successfully able to make two edits without getting you are not authorized error message.

    One other usability issue remains though…

    This will have to be addressed in Link.

    Since the entry is in the mod queue, it is no longer visible which means there is no apparent way to edit the entry any longer until the entry is approved. The user can edit an entry as many times as they want but when they navigate away from the edit page, there are no links back to it because it is no longer shown in the results.

    What I’ll need to do is add a list action to Link for “Edit My Entry”, which was already on my to do.

    Any way the bug with the error message has been fixed. I’ll be attempting to release it today. If not today, definitely tomorrow.

    in reply to: custom fields in entry form #315199
    Steven Zahm
    Keymaster

    @ Maureen

    If I understand … you using the “Custom Fields” metabox on the Connections : Add Entry admin page, yes. If so, that is how it works. it is unique to the entry. The “Name” though, should be available in the drop down.

    Does that help?

    in reply to: I am looking to make a change in map #315198
    Steven Zahm
    Keymaster

    @ Royale

    The map can be turned of by using the enable_map cMap shortcode option. Add it to the shortcode like so:
    [connections enable_map='false']

    Showing the categories assigned to the entry is possible but it will require editing the card.php and card-single.php template files. See this forum reply for the instructions:
    http://connections-pro.com/support/topic/show-categories-under-the-phone/#post-297757

    Oh also, this will not make it occupy the “map area”, doing that would be quite a bit more complicated.

    I hope that helps!

Viewing 10 posts - 9,291 through 9,300 (of 15,332 total)