How to join 4-H as a youth member:
- Find a Club:
- Find a club that offers leadership in a project you’re interested in. Contact the WSU Asotin County Extension Office to find a club or start your own. Check out the 4-H Club page to learn more about 4-H clubs in Asotin County.
- Decide on a Project:
- There are numerous different project opportunities for 4-H members to participate in and with self-determined projects. Find the list of projects here.
- Enroll in 4-H online:
- Access the website here to enroll online (Enrollment begins Oct 1, 2022). https://v2.4honline.com/#/user/sign-in
- Enrollment Fact Sheet
- WA-4-H-Enrollment-Guide (written instructions)
- Enrollment guide video: https://youtube/5IFbWGFzWUo
- Get involved and HAVE FUN!
Need help? Please contact the Extension Office or take a look at the 4-H Enrollment Guide and Enrollment fact sheet
How to join as an adult volunteer:
- What is an adult volunteer?
- A volunteer is someone who devotes his or her time gratuitously to the WSU Extension 4-H Youth Development Program without expectation of pay or benefits
- How can I serve as a volunteer?
- WSU Extension 4-H Youth Development Program Certified Volunteers
- General/Organizational Leader
- Project Leader
- 4-H Service Leader
- 4-H County Program Leader
- Resource Volunteers
- 4-H Collaborators
- WSU Extension 4-H Youth Development Program Certified Volunteers
The Volunteer Application Process
- Contact the WSU Asotin County Extension Office
- Complete and sign the New 4-H Volunteer Application Forms
- Submit references
- Complete Four Western Region and Child Protection e-learning modules
- Complete background check
- Contact the Extension Office to schedule an interview
- Register in 4-H Online

Need help with payments? The following resource documents are a useful tool to walk you through the enrollment process.
function initPayPalButton() {
var shipping = -1;
var itemOptions = document.querySelector(“#smart-button-container #item-options”);
var quantity = parseInt();
var quantitySelect = document.querySelector(“#smart-button-container #quantitySelect”);
if (!isNaN(quantity)) {
quantitySelect.style.visibility = “visible”;
}
var orderDescription = ‘Master Gardener Advanced Training Classes’;
if(orderDescription === ”) {
orderDescription = ‘Item’;
}
paypal.Buttons({
style: {
shape: ‘pill’,
color: ‘gold’,
layout: ‘vertical’,
label: ‘pay’,
},
createOrder: function(data, actions) {
var selectedItemDescription = itemOptions.options[itemOptions.selectedIndex].value;
var selectedItemPrice = parseFloat(itemOptions.options[itemOptions.selectedIndex].getAttribute(“price”));
var tax = (0 === 0 || false) ? 0 : (selectedItemPrice * (parseFloat(0)/100));
if(quantitySelect.options.length > 0) {
quantity = parseInt(quantitySelect.options[quantitySelect.selectedIndex].value);
} else {
quantity = 1;
}
tax *= quantity;
tax = Math.round(tax * 100) / 100;
var priceTotal = quantity * selectedItemPrice + parseFloat(shipping) + tax;
priceTotal = Math.round(priceTotal * 100) / 100;
var itemTotalValue = Math.round((selectedItemPrice * quantity) * 100) / 100;
return actions.order.create({
purchase_units: [{
description: orderDescription,
amount: {
currency_code: ‘USD’,
value: priceTotal,
breakdown: {
item_total: {
currency_code: ‘USD’,
value: itemTotalValue,
},
shipping: {
currency_code: ‘USD’,
value: shipping,
},
tax_total: {
currency_code: ‘USD’,
value: tax,
}
}
},
items: [{
name: selectedItemDescription,
unit_amount: {
currency_code: ‘USD’,
value: selectedItemPrice,
},
quantity: quantity
}]
}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(orderData) {
// Full available details
console.log(‘Capture result’, orderData, JSON.stringify(orderData, null, 2));
// Show a success message within this page, e.g.
const element = document.getElementById(‘paypal-button-container’);
element.innerHTML = ”;
element.innerHTML = ‘
Thank you for your payment!
‘;
// Or go to another URL: actions.redirect(‘thank_you.html’);
});
},
onError: function(err) {
console.log(err);
},
}).render(‘#paypal-button-container’);
}
initPayPalButton();