BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 13,241 through 13,250 (of 15,332 total)
  • Author
    Posts
  • in reply to: Tile Plus 3.0.1 images not showing #267025
    Steven Zahm
    Keymaster

    @ Kristen

    Great to hear!

    If you have a moment, I would truly appreciate a review. Many thanks in advance!
    http://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Slim Plus Web Form Submission #267024
    Steven Zahm
    Keymaster

    @ Enrique

    Using Form, user can submit an image for either the logo or photo or both. Which depends on you configuration of Form. See this page.

    Based on you question, I think you want the user to upload the photo. So this should be the shortcode used on the Form page:
    [connections photo=TRUE]

    Slim Plus defaults to showing the photo, although you could show either. Make sure you shortcode where you inserted the Connections shortcode does not have this in it: image=logo. Although you do not need to set it you could add image=photo.

    The link, here it is:
    http://wordpress.org/support/view/plugin-reviews/connections

    Hope that helps, let me know!

    in reply to: Lead Generation Management Solution #267019
    Steven Zahm
    Keymaster

    @ Robert

    I’m sorry to say, no, not yet. There has been some foundations laid in order to support entry “owners” where “clients”, in you case, could be assigned ownership and be limited to modifying only the entries they own. But, there is still more work to do and I can’t commit to when this feature will be completed.

    in reply to: Tile Plus 3.0.1 images not showing #267018
    Steven Zahm
    Keymaster

    @ Kristen

    I’m fairly certain the issue is a permissions issue on your local install. One which I don’t think I’ll can help with. I also think when moving you local to the intranet, the issue will resolve. I do have a plan b which will work.

    Go to the Connections : Settings admin page and change the Medium Image size under the Images tab to the size you need them to be. The default for Tile Plus is 100w x 130h px.

    Now, update you shortcode on the page where you inserted the Connections shortcode to include the image_width and image_height options.

    You should end up with something like this:
    [connections image_width=0 image_height=0]

    This will force Tile Plus to use the pre-cached images instead of them being created dynamically.

    The downside it any images that you’ve already uploaded will have to be re-upload for the changed image size to take affect.

    Let me know if that resolves it for you.

    in reply to: Changing the background of cMap #267012
    Steven Zahm
    Keymaster

    @ Jack

    Yes, you can easily remove the gradients from cMap by removing them in the CSS.

    Here’s how:

    Open the cmap.css file found here: ../wp-content/plugins/cmap/

    Change this:

    #cn-cmap .cn-entry {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 3px 4px 2px rgba(100, 100, 100, .4);
    -moz-box-shadow: 0px 3px 4px 2px rgba(100, 100, 100, .4);
    box-shadow: 0px 3px 4px 2px rgba(100, 100, 100, .4);
    background: #e3e3e3; /* Old browsers */
    background: -moz-linear-gradient(top, #e3e3e3 1%, #f1f1f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#e3e3e3), color-stop(100%,#f1f1f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #e3e3e3 1%,#f1f1f1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #e3e3e3 1%,#f1f1f1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #e3e3e3 1%,#f1f1f1 100%); /* IE10+ */
    background: linear-gradient(top, #e3e3e3 1%,#f1f1f1 100%); /* W3C */
    border:1px solid #D3D3D3;
    font-size: 12px;
    margin: 10px 4px;
    padding: 12px;
    position: relative;
    }

    To this:

    #cn-cmap .cn-entry {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 3px 4px 2px rgba(100, 100, 100, .4);
    -moz-box-shadow: 0px 3px 4px 2px rgba(100, 100, 100, .4);
    box-shadow: 0px 3px 4px 2px rgba(100, 100, 100, .4);
    border:1px solid #D3D3D3;
    font-size: 12px;
    margin: 10px 4px;
    padding: 12px;
    position: relative;
    }

    Change this:

    #cn-cmap span.cn-image-style {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #f1f1f1; /* Old browsers */
    background: -moz-linear-gradient(top, #f1f1f1 0%, #e3e3e3 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f1f1f1), color-stop(100%,#e3e3e3)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f1f1f1 0%,#e3e3e3 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f1f1f1 0%,#e3e3e3 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f1f1f1 0%,#e3e3e3 100%); /* IE10+ */
    background: linear-gradient(top, #f1f1f1 0%,#e3e3e3 100%); /* W3C */
    border: 1px solid #E3E3E3;
    margin: 0;
    padding: 5px;
    }

    To this”

    #cn-cmap span.cn-image-style {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    margin: 0;
    padding: 5px;
    }

    Save the the file and upload overwriting the original.
    No, duplicate the file and name it cmap.min.css and upload it overwriting the original.

    That will do it. Hope that helps.

    in reply to: Logo not updating #267010
    Steven Zahm
    Keymaster

    @ Ray

    Are you using any page caching plugins such as W3TC?

    in reply to: format different in online site #267009
    Steven Zahm
    Keymaster

    @ josh901

    Add this too:

    .cn-form br {
        display: none;
    }
    
    #cn-cmap .chzn-container-single .chzn-single div b {
       background-position: 0 4px !important;
    }
    in reply to: Ability for Site Visitors to Register #267008
    Steven Zahm
    Keymaster

    @ IceCreamTruck

    If you asking if there is a method to allow visitors to register to your site, sorry, no. However, if you’re asking if there is a way to allow visitors to submit entries to the directory with or without moderation, yes, there is the Form extension. Now, it you would like users to maintain their entry afterwards, I recommend Link instead. Using Link, you would need another method to allow a user to register to your site in order for them to submit entries to the directory.

    I hope that helps.

    in reply to: Enquiry #267007
    Steven Zahm
    Keymaster

    @ Patrick

    You are free to install the Pro Pack on as many site as you wish, just support is limited to a single site.

    Hope that helps!

    in reply to: Change default label on category dropdown? #267006
    Steven Zahm
    Keymaster

    @ Karen

    Yes, see this doc page; it’s for cMap, but the instructions apply to Slim Plus too. Check out this one too.

    Hope that helps.

Viewing 10 posts - 13,241 through 13,250 (of 15,332 total)