BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,181 through 5,190 (of 15,332 total)
  • Author
    Posts
  • Steven Zahm
    Keymaster

    @ Debra

    I getting the incorrect user/pass error when attempting to login. Could you please confirm the login details?

    Steven Zahm
    Keymaster

    @ Debra

    Everything appears to be setup correctly as far as activation goes. I will need a temp admin account so I can log in and take a look. The login details can be posted here as a private reply.

    Steven Zahm
    Keymaster

    @ Carolin

    Yes, but not perfectly…

    You can hook into the cn_entry_output_category_item filter and check for a “permitted” category ID and if one is not found return an empty string. Something like this:

    add_filter( 'cn_entry_output_category_item', 'cn_remove_entry_output_category_item', 10, 6 );
    
    function cn_remove_entry_output_category_item( $html, $category, $count, $i, $atts, $entry ) {
    
        if ( in_array( $category->term_id, array( x, y ) ) ) {
            return $html;
        }
    
        return '';
    }
    

    Change x and y in the code snippet to the two category ID/s that you want to be displayed. Al other will be tossed.

    Now, I said this is not perfect… You’ll end up with “extra” commas where the categories should have been displayed — I think. If you do, the next update, I added extra logic, jujst now to make sure that will not happen.

    Hope this helps!

    Steven Zahm
    Keymaster

    @ Carolin

    Hmmm… good question actually. Let me look in the code real quick…

    in reply to: Shortcode to remove characters #386911
    Steven Zahm
    Keymaster

    @ raielene

    Oops, I pasted the wrong shortcode link for show_alphahead shortcode option. This is the correct link.

    All the core shortcode options can be found on this doc page.

    Hope that helps!

    Steven Zahm
    Keymaster

    @ Steffani

    I do have an advanced search solution available. You can see an example if it here on this site:

    https://sscit.org/

    It is the “Find A Therapist” section of the page. I you are interested I can provide a quote which includes installation and configuration. Please contact me using the contact link at the very bottom of the page.

    Thanks!

    in reply to: Manage Connections not showing #386867
    Steven Zahm
    Keymaster

    @ Robert

    The issue is that one or more images were uploaded which are too large for WP to process to create thumbnails.

    Using FTP, navigate to this folder:

    ../wp-content/uploads/connections-images/

    You will find a folder for each entry. Within that folder you will find the original image uploaded for the entry. Download that image, scale it down and then upload it again overwriting the image that was downloaded.

    After you do that, the page will load fine.

    Hope that helps, let me know.

    in reply to: Shortcode to remove characters #386865
    Steven Zahm
    Keymaster

    @ raielene

    I think you are looking for the show_alphahead shortcode option. The setting are for the character index. Hope that helps!

    • This reply was modified 10 years, 1 month ago by Steven Zahm.
    • This reply was modified 10 years ago by Steven Zahm. Reason: Correct link
    in reply to: Custom Export Options #386864
    Steven Zahm
    Keymaster

    @ Michael

    Honestly, I still do not entirely understand… I thin you want to change the strings coming from $corePhoneTypes = $instance->options->getDefaultPhoneNumberValues();. If that is the case, you can either hook into the filters and change the values or edit them directly. The function is found in the class.options.php file in this folder:
    ../includes/settings/class.options.php

    Does that help?

    in reply to: Clarification on license #386862
    Steven Zahm
    Keymaster
    This reply has been marked as private.
Viewing 10 posts - 5,181 through 5,190 (of 15,332 total)