TURN FRACTIONS INTO ALGEBRA CONFIDENCE!
FREE LIVE WORKSHOP FOR GRADES K–12
BOOK YOUR FREE SPOT NOW
Join Us Live On
Message from Derrick
Hey parents, I'm Derrick. At Arithmetic Solutions, we've helped California students from Kindergarten through Grade 12 for over 20 years.
Fractions are the secret key to Algebra success.
Join this Sunday for a free live online session designed to build confidence and stronger math foundations for K–12 learners.
Workshop Flow
01 Welcome
Why fractions predict Algebra success.
02 Diagnose
Find the real struggle behind Algebra fear.
03 Essentials
Equivalent fractions & simplifying.
04 Connect
Use fractions inside Algebra expressions.
05 Practice
Guided aha-moment problems.
06 Summer Offer
Special attendee-only discount.
Why Parents Love This Workshop
20+ Years
Serving California families successfully.
Thousands Helped
Students improved confidence & scores.
Expert Tutors
Specializing in math foundations.
Use PHP snippet below in Code Snippets plugin.
add_action('admin_post_nopriv_as_workshop_register','as_workshop_register');
add_action('admin_post_as_workshop_register','as_workshop_register');
function as_workshop_register(){
$name=sanitize_text_field($_POST['Name']);
$email=sanitize_email($_POST['Email']);
$phone=sanitize_text_field($_POST['Phone']);
$grade=sanitize_text_field($_POST['Grade']);
$admin='learn@arithmeticsolutions.net';
$subject='New Workshop Registration';
$msg="Name: $name\nEmail: $email\nPhone: $phone\nGrade: $grade";
wp_mail($admin,$subject,$msg);
$join='https://classes.arithmeticsolutions.net/rooms/prk-0gu-1ba-cb9/join';
$sub='You are Registered - Free Sunday Workshop';
$body='Hi '.$name.',
Thank you for registering.
JOIN LIVE CLASSADD TO CALENDARArithmetic Solutions';
$headers=array('Content-Type: text/html; charset=UTF-8');
wp_mail($email,$sub,$body,$headers);
wp_redirect(home_url('/thank-you'));
exit;
}