Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Wired Impact

    (@wiredimpact)

    Thanks for reaching out @mpapier. Unfortunately, we don’t have a calendar view built into the plugin at this point. The only way to view opportunities is through the list view. I’m sorry I don’t have the best news for you.

    Thanks again and let me know if any other questions come up.

    Jonathan
    Wired Impact

    Thread Starter mpapier

    (@mpapier)

    Thanks so much! I appreciate the response. I do have on more question. Here is an example of an opportunity I am testing with. Is it possible to move the sign up button beneath the form so its more left justified than floating out to the right all by itself? Thanks again!

    Thread Starter mpapier

    (@mpapier)

    Plugin Author Wired Impact

    (@wiredimpact)

    There are two ways you could possibly handle this. The first, and one I wouldn’t recommend, is to turn off the plugin’s styling completely. You can do this by going to the WordPress admin >> Volunteer Mgmt >> Help & Settings >> General >> Choose “No, I’ll code my own styling.” and save. This will most likely fix the issue, but cause you to lose styling you like in other places.

    The other options requires a little coding on your end, but I’m happy to help if you have access to the style.css file in your theme. You’ll want to add this code to the very bottom of that file and save it:

    body #wivm-sign-up-form input[type=submit] {
        float: left;
    }

    Keep in mind that if you update your theme it will be overwritten. If you’re using a child theme I’d suggest you update the style.css file there so you don’t lose your change with an update.

    Let me know how else we can help.

    Jonathan
    Wired Impact

    Thread Starter mpapier

    (@mpapier)

    Thank yo so much. I do have access to my css but I am not very knowledgeable with this. The change only works if I place it above a pre-existing “body” entry in the css. Here is what I did for it to move the submit button, but I dont want to lose the formatting provided through the pre-existing body entry. Can you advise how to combine them so they will both be applied properly?

    body #wivm-sign-up-form input[type=submit] {
    float: left;
    }

    body {
    overflow-x: hidden;
    font-family: “Myriad Pro”, “Trebuchet MS”, Helvetica, sans-serif;
    }

    Plugin Author Wired Impact

    (@wiredimpact)

    It’s great to hear you have access and the way you have the CSS styles listed is exactly right:

    body #wivm-sign-up-form input[type=submit] {
      float: left;
    }
    
    body {
      overflow-x: hidden;
      font-family: "Myriad Pro", "Trebuchet MS", Helvetica, sans-serif;
    }

    It’s worth noting that in this case the order of the CSS shouldn’t matter and they don’t need to be combined in any way.

    Let me know if that works for you.

    Jonathan
    Wired Impact

    Plugin Author Wired Impact

    (@wiredimpact)

    Since we haven’t heard from you in a few weeks we’ll go ahead and mark this resolved. That said, don’t hesitate to let us know if any other questions come up.

    Jonathan

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Calendar View’ is closed to new replies.