BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 11,281 through 11,290 (of 15,332 total)
  • Author
    Posts
  • in reply to: Force SSL and Connections_form #290701
    Steven Zahm
    Keymaster

    Hmmm, check this page out, under the Notes section.

    I wonder if you are facing a similar issue, that your site behind some type of load balancer or proxy server….

    in reply to: Enter Images gallery ! #290674
    Steven Zahm
    Keymaster

    @ Gates

    I recently answered a similar question and I think the answer will help you too. Here the link.

    I hope that helps, if not, please let me know.

    in reply to: Default Category #290673
    Steven Zahm
    Keymaster

    @ Tracy

    I think this might work:
    [connections category=X]

    X would equal the category ID of your featured category.

    If I recall correctly, the downside is that the Select All Categories option will now default to category X rather than all categories. I can’t think of any other issues this might cause off the top of my head.

    I hope this helps. Let me know if that works for you.

    in reply to: Category specific search widget #290668
    Steven Zahm
    Keymaster

    @ Christopher

    Honestly, I can not think of a way to do this without editing the core Connections code… maybe.

    That custom query is the killer…

    A solution might be to register a custom shortcode. Grab your query vars, do your custom query, but only select the id column. make sure the results is an indexed array.

    Then you could call the method that drives the Connections shortcode:

    $atts = array( id => $custom_query_results );
    return cnShortcode::view( $atts );

    Or, maybe even easier…

    Hook into the cn_list_atts filter, do your custom query like I mentioned and set $atts['id'] to an array of ids from the query results and pass back the moadified $atts variable back from the filter.

    Will either of these work?

    in reply to: Category specific search widget #290655
    Steven Zahm
    Keymaster

    @ Mitch

    Yes, both those options are on the list for the category widget.

    in reply to: Show/Search Category Hierarchy #290637
    Steven Zahm
    Keymaster

    @ Kim

    Coincidentally I just answered a very similar question right here.

    I think the answer very much applies to you question. If it does not, please let me know.

    I hope that helps!

    in reply to: More about a categories page ??? #290636
    Steven Zahm
    Keymaster

    @ Rex

    I’m sorry! I did read the other post but I didn’t think you were looking for a response…

    I think you might have misunderstood my answer… Many of the templates include a user searchable category drop drop such as cMap rather than a list of categories. A list of categories simply takes up too much space, especially if you have a lot of them, which many users do. By putting in a searchable drop down that brings the actual important content closer to the top of the page, the entries.

    If you prefer a list of categories, the Market template outputs a list beside the entries, take a look the demo.

    Alternatively, the Widget Pack includes a widget that can be placed in the theme’s sidebar. This outputs a list as well and by being in the sidebar, the list can be quickly available to the user site wide.

    These design choices were made to ensure the important content is front and center by being as close to the top of the page as possible while requiring one less click for the user.

    I hope this better clarifies my previous answer.

    in reply to: Force SSL and Connections_form #290624
    Steven Zahm
    Keymaster

    @ Mario

    Thanks for reporting this with a solution!

    Quick question, can you try this solution?

    Comment out this line, like you’ve done:

    $protocol = isset( $_SERVER['HTTPS'] ) ? 'https://' : 'http://';
    

    So it becomes:

    //$protocol = isset( $_SERVER['HTTPS'] ) ? 'https://' : 'http://';
    

    Now, change this line from:

    'ajaxurl' => admin_url( 'admin-ajax.php', $protocol ),
    

    To this:

    'ajaxurl' => admin_url( 'admin-ajax.php', ( is_ssl() ? 'https' : 'http' ) ),
    

    That should do it so you do not have to do the string replace. Let me know. And thanks again!

    in reply to: Images in the Notes area? #290618
    Steven Zahm
    Keymaster

    @ cynthia

    No problem!

    If you have a moment I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    http://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Nested Organizations and Members of Organizations #290580
    Steven Zahm
    Keymaster

    @ Chris

    Sorry, but this is not possible since no relationship is created between entries that have the same department. However…

    You could setup the shortcode to filter by organization and then use multiple shortcodes on a page to list the various organizations.

    Another option is…

    Go to the Connections : Settings admin page, click the Advanced tab. In the Links section you can enable the Organization and Department link options. After they are enable, the organization and department link when clicked will filter the results by the org/dept that was click. One exception to the rule is… if the entry is an org, it will not filter by that org.

    I hope that helps!

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