Thanks for reaching out @jonh. I’ve noted comments for both of your thoughts below.
Editing the Permalink
You actually can change the permalink for volunteer opportunities. Here’s an example of the code to place in your functions.php file:
add_filter( 'wivm_opp_rewrite', 'change_vol_opp_permalink' );
function change_vol_opp_permalink( $slug ){
$slug = 'volunteer'; //Change this to whatever you'd prefer the slug to be
return $slug;
}
Once you have that on your site you need to refresh the permalinks by logging in and visiting Settings >> Permalinks. Once you’re there click the blue “Save Changes” button.
Listing One-Time and Flexible Opportunities on the Same Page
Unfortunately, this isn’t possible due to ordering and pagination. If we listed them together, how would we decide the order to put them in? One-time opportunities have dates associated with them, while flexible opportunities do not.
The other option is to list them both of the same page, but separately, either in columns or one on top of the other. The problem here is pagination. Depending on the number of opportunities in each you might need a page two for one-time opportunities, but not for flexible opportunities.
This is, of course, something we struggled with while developing the plugin. At this point we don’t have any great solution.
Let me know if you have any other questions at all.
Jonathan
Wired Impact