BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 9,071 through 9,080 (of 15,332 total)
  • Author
    Posts
  • in reply to: cnTerm::get #319943
    Steven Zahm
    Keymaster

    @ Fabrice

    Apologies The latest versions finalized the cnTerm class and that method actually does something else now. What you want to use instead now is cnTerm::getTaxonomyTerms('category', array('child_of' => 2 ) );.

    cnTerm::get() now retrieves a specific term by ID and taxonomy.

    in reply to: Map view #319925
    Steven Zahm
    Keymaster

    @ josh901

    This is actively being work on, as in everyday for at least several hours a day. A very, very, early prototype can be found here. My goal is to release before the end of the first quarter. It took me longer than anticipated to get to this point.

    in reply to: Google Analytics for CMAP? #319921
    Steven Zahm
    Keymaster

    @ josh901

    I’m not all that familiar with Google Analytics … I use it to look at the pretty charts, but that is about it.

    Can a filter or something be setup to track URL endpoints? If there is, you could setup up for the entry name permalink slug.

    in reply to: Can not display in Chrome or Safari #319920
    Steven Zahm
    Keymaster

    @ Rough & Ready Media

    Also, you should setup the caching plugin so it does not cache pages with query vars.

    in reply to: Can not display in Chrome or Safari #319919
    Steven Zahm
    Keymaster

    @ Rough & Ready Media

    I see you’re using page caching … purge your cache. That should do it.

    in reply to: Can not display in Chrome or Safari #319917
    Steven Zahm
    Keymaster

    @ Rough & Ready Media

    Are you entries set to private and are you logged into your site with Firefox but not Chrome and Safari?

    in reply to: Link attributing to image #319913
    Steven Zahm
    Keymaster

    @ Iain

    re: when a listing is clicked and it expands then a person could click a link in the biographical info text to take them to the listing website without having to go the profile page. Presently a hyperlink doesn’t allow clicking.
    If you disable this excerpt feature, that should allow links to be clickable. The excerpting function removes HTML such as links when making the excerpt. The full bio text does not remove the HTML so the links should remove clickable.

    re: Can i have the image display on the profile page as well?
    In the shortcode you have image_single=logo image_single_fallback=none This tells Gridder to display the logo rather than the image. If you remove image_single=logo, Gridder will display the image which is what it does by default so there will be no need to upload the image to both the image and logo.

    Hope that helps!

    in reply to: is there a way to show just names and birthdays #319906
    Steven Zahm
    Keymaster

    re: larry

    You have two options.

    The first is to use the upcoming_list shortcode or the Widget Pack extension which has widgets available to list the birthdays and anniversaries.

    Hope that helps!

    in reply to: Orderby Shortcode not funcioning #319900
    Steven Zahm
    Keymaster

    @ Marshall

    Edit the page with the shortcode, switch the page editor to the Text tab. Remove any HTML or other text from around and within the shortcode and then update the page.

    Also, make sure you have a space in between category='5' and order_by='first_name|SORT_ASC'. The code pasted above was missing the space.

    [connections category='5' order_by='first_name|SORT_ASC']

    Hope that helps, let me know.

    in reply to: license inactive #319899
    Steven Zahm
    Keymaster

    @ Mario

    re: using template cercled the logo isn’t shown. Not in the personal template and not in the organisation template. How can i make this work?
    The Circled template is designed to only show the image, not the logo. If you want to show the logo you’ll need to edit the template files card.php and card-single.php found here:
    ../wp-content/plugins/connections-circled/

    You’ll need to add the following code to those files where you wish the logo to be displayed:

    <?php
    $entry->getImage(
        array(
            'image'    => 'logo',
            'height'   => 100,
            'width'    => 100,
        )
    );
    ?>
    

    If you decide to do this, then I recommend reading this QuickTip on how to edit a template in an update safe way.

    re: I want to extract the keyword-search and kategory-selection from the other functionalities to show them in a Sidebar. How can i do this?
    With the Widget Pack. It has a category list widget and a search widget which can be placed in the theme’s sidebar.

    re: I think I’m going to change the images from cercled into squere. Where can I configure that? Like your showcase:
    They modified the template. That is not a supported feature in the Circled template. You can add the following CSS to the theme’s custom CSS area to remove the border radius which creates the circle effect.

    #cn-circled .cn-circled-thumb span.cn-image-style {
      border-radius: 0 !important;
    }
    #cn-circled .cn-circled-thumb img {
      border-radius: 0 !important;
    }
    

    I hope this helps!

Viewing 10 posts - 9,071 through 9,080 (of 15,332 total)