BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 12,381 through 12,390 (of 15,332 total)
  • Author
    Posts
  • in reply to: bulk import companies #275186
    Steven Zahm
    Keymaster

    @ Mariusz

    Sorry, but there is not a way for you to assign entries to users. The closest solution would be the Link extension.

    in reply to: Search Box #275181
    Steven Zahm
    Keymaster

    @ Justin

    The code you pasted above has two errors. Try this:

    #cn-search-input {
    background: #000000 none;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #000000;
    border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -khtml-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #888;
    display: inline-block;
    font-size: 12px;
    float: none;
    height: 28px;
    line-height: 20px;
    margin: 1px 0 1px 1px !important;
    padding: 3px 6px;
    text-align: left;
    vertical-align: bottom;
    width: 200px;
    }

    Which file are you inserting this into or editing?

    If you are editing this file cn-user.css the changes will have no effect because the minified version of the file is loaded unless the WP_DEBUG is set to true. You need to apply the changes to the cn-user.min.css file.

    However, I do not recommend that because those changes will be lost during a plugin update. If the theme has a custom CSS area, add it there. You might also need to add !important after the CSS attribute value that way if the Connections CSS is loaded after the theme’s custom CSS file it is not overridden by the default style for Connections.

    Hope that helps!

    in reply to: bulk import companies #275179
    Steven Zahm
    Keymaster

    @ Mariusz

    Sorry, no, the CSV Import does not create users.

    in reply to: All entries have disappeared in admin and site #275178
    Steven Zahm
    Keymaster

    @ Stewart

    Go to the Connections : Manage admin page.
    Click the All link on the top left.
    Right under the All link change all the drop downs to Show all ... and then click the Filter button.
    For good measure, click the << button on the pagination control on the top right.

    All you entries will now be shown. Hope that helps.

    in reply to: Map is broken up into squares #275107
    Steven Zahm
    Keymaster

    @ Margaret

    Because the template are GPL licensed, you can use them on as many site as you wish. I only limit support to a single site.

    Hope that helps!

    Steven Zahm
    Keymaster

    @ Travis

    The short answer, it probably would not take too much work to allow form to edit an entry. I do not have the capacity to take on a project at this time. I do have someone I can recommend. I’ll point him to this forum thread and let him reply.

    The long answer…

    Form is due for a rewrite now that I’m nearly finished writing the code to support custom fields. The reason for the rewrite is so that Form can support custom fields. Once that is complete and before the rewrite; I need to implement some type of method for finer grained control over what a user can edit within “their” entry without data loss to info they are not permitted to edit in “their” entry. This isn’t all that important to the core info that can be entered for an entry but necessary for when custom fields come in play because their could be info that only that admin is to enter/edit in their entry. Here’s a basic example. Every now and then I get a request for the ability for the user not to be able to edit the categories to which they’ve been assigned. Right now that is not possible without loosing the categories associated with the entry. I want to enable this without the data loss to all the info within an entry both core and any random custom fields that can be added. Only after those pieces are completed will Form be rewritten and part of that rewrite will be to allow front end editing if Link is installed.

    Hope that helps.

    in reply to: Map is broken up into squares #275082
    Steven Zahm
    Keymaster

    @

    Nope, not normal and is being caused by this style in the theme:

    .block-type-content div.entry-content img {
        border-top-left-radius:0px;
        border-top-right-radius:0px;
        border-bottom-left-radius:0px;
        border-bottom-right-radius:0px;
        box-shadow:rgba(0,0,0,0.5) 2px 2px 6px;
        background-color:rgba(0,177,255,0);
    }
    

    Basically it adds a drop shadow behind every image in the post content, even in Google Maps.

    Add the following to the end of the theme’s style.css file, or, alternatively, if the theme has one it’s custom CSS area:

    #cn-cmap .cn-gmap-single img {
        background-color: transparent;
        max-width: none !important;
        box-shadow: none !important;
    }

    It’ll override the theme’s style and fix the map.

    Hope that helps.

    in reply to: cMap, Siteshot and logo #275073
    Steven Zahm
    Keymaster

    @ Michael

    Which version of SiteShot and Market? I just tested it again on the latest versions to make sure.

    in reply to: Convert existing users with custom meta #275072
    Steven Zahm
    Keymaster

    @ Ted

    Great to hear! I’ve logged the issue with User Switching … I use that plugin myself and can see how it would be useful. I imaging the proper hooks still have to be run so it should be just a matter of making sure Link will run first. But if the hooks I need to have run are not used by User Switching, it will not be possible. I really won’t know until I dig in to that plugins code to see what it is doing on the user switch.

    in reply to: Member Search Results Question #275071
    Steven Zahm
    Keymaster

    @ Larry

    The only WordPress directory related project that integrate with the core WP search are directory themes. All the plugins that I’m aware of and at the last time I checked them out; do not integrate with the core WP search. Likely for the same reasons. Currently, I do not know if WordPress provides the necessary hooks to accomplish this. If it does, there is a huge challenge in how to commingle the post search results with directory search results that would be of benefit to the end user. I will very likely continue to improve the searching feature within Connections rather than investing that time in integration because it is very seldom requested.

    Integration with the core WP search has no relation to Google’s ability to index your site. I’ve built many SEO items into the core of Connections to entice the Googlebot to index the content and I will be adding more such as changing the markup from hCard (which is still supported by search engine) to the new and preferred Schema.org markup; altering the page creation date and last modification date to match those details when clicked thru to a single entry. Addiotnally, if the WordPress SEO by Yoast plugin supports it, injecting the Connections data into the sitemap it creates for search engines. Ultimately though, it is up to the Googlebot if it will crawl the pages and if it index it to return as search results.

Viewing 10 posts - 12,381 through 12,390 (of 15,332 total)