Welcome to Western!The Western Associated Students Bookstore is currently closed for in-person service. We don't have an estimated reopening date at this time but our online store is open and we are processing orders Monday-Friday. Our team recorded the following message and brief overview of the products and services we provide. We look forward to supporting you during your time at Western!
.accordion {
background-color: #002f5e;
color: #ffff;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 20px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #bad80a;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
Where can I find information about Fall Quarter textbooks?Visit our course materials page on or after 8/25/2020. The list of required materials will be posted 4 weeks before classes begin each quarter. Whenever possible the book list will be posted earlier.How do I find the books I need for my classes? Use our online tool!Pull up your schedule to find your course and section/CRN number, example: ENG 101 CRN:11223. The CRN, also known as the section number, is crucial to finding the correct materials for your course. Follow this link to our course materials page. Select your courses and appropriate section/CRN from the drop down menu.Once you have selected your course and section click the Find Books button in the box to the right. The next page will list your required and optional materials and the available formats.Can I use my financial aid to purchase textbooks?Yes, to learn more about student account charges click here.Can I shop for my books in person?Due to the impact of COVID-19 on our operations the Course Material department of the Bookstore is closed for in-person shopping at this time.Course materials are available for purchase online only for Fall Quarter 2020. Winter and Spring quarters will be evaluated for purchasing options. This Fall we plan to reopen the main floor to a reduced number of customers in compliance with the Safe Start guidelines.When can I order my books online?The list of required books will be available 4 weeks before classes begin, whenever possible the book list will be posted earlier. You can place an order as soon as the book list is posted. We begin processing orders 3 weeks before classes start in the order in which they were received.How long does it take for the Bookstore to process orders?Orders are processed within 1-2 business days and generally take 1-2 business days to arrive once they have shipped. During the first two weeks of class we experience a high volume of orders and processing time will be delayed.Note: The timelines above are estimates and may vary depending on order volume, how far the package is traveling, and the carrier.Why are textbooks so expensive?There is a common misconception that campus bookstores are driving textbook prices higher. The foundation of our mission to keep prices on required materials as low as possible. We do this through negotiating with publishers, providing rental options for physical books whenever possible, identifying digital versions of required materials.I still have questionsVisit our FAQ pages for more info or reach out to us as via email asbookstore@wwu.edu
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}