Weekly Content Upload

This is a complicated process, which Ben currently runs around midnight each Wednesday. The most useful tools are access to Synology (to download content files prepared by Dave), and either FileZilla or the ZE Site's File Manager (to upload files) plus SublimeText (to edit the upload HTML before copy-and-pasting it into the right place on the site. These notes are based heavily on Tom's notes from Nifty, with some changes to the code by Ben to keep it in line with the current usage.


Files and Upload

When uploading the Daily/Business content there are two places that we upload the files to. The main bulk of the files are uploaded to the AWS server, and the PDFs are uploaded to the ZE site itself. (please check the "Server Links" page for details). There are extra upload locations within these but they will be pointed out as you go through this guide.

Starting with the main upload, on the AWS server you will go to the /zen01/Content Catalogue/Go Live section of the server where you will see the different class types.

Depending on what you are uploading you will enter one of the folders, for example Daily. Inside this folder you will see all of the different topics for that class type. These are created with no spaces and instead using a - to separate the words. THIS IS VERY IMPORTANT, make sure that you take note of the capital letters you use and that there are no spaces in these names.

Create a new folder here and name it after the topic. Enter the new folder, this is where you will be uploading the learning modules that the students will see on the website. These again need to be named in a specific way.

ATT - Ask the Teacher

Debate - D&D

Intros - Lesson Intro

Skit-Quiz-Basic/Advanced - Skit Quiz

Slides-Basic/Advanced/Super - Lesson Slides

Vocab-Advanced/Super - Vocabulary Match

When uploaded they will look like this

Inside these folders make sure you can see all the module files and that it looks similar to this

The cover images for the lesson intros, lesson slides and the main site pic now need to be uploaded to the AWS server. These images need to be PNG files and follow a certain naming convention:

Topic-Name-Lesson-Intro-Cover = The cover image for lesson introductions

Topic-Name-Lesson-Slides-Cover = The cover image for the Lesson Slides

Topic-Name-Site-Pic = This will be used as the main image seen on the site for the lesson

These will be uploaded into a folder names "Covers" and look like so on the server

The other place where a module needs to be uploaded is to /zen01/ZE06/Bundles (please note that the ZE06 represents the content set for a specific year and will need to be changed when a new years worth of content is started). Here you will upload the D&D files with the following format B/D#-DD so for example D22-DD for lesson 22 in the Daily class type. When uploaded the folders will look like so:

The lesson slides need to be uploaded to two different places, the first is on the AWS server found here /zen01/Content Catalogue/Go Live/Slides

Name the slides with the season number, lesson number and lesson type in this format. For example S8L40DA = Season eight, lesson forty, daily advanced. For elite classes it would be as follows S8L40-Elite. When uploaded they will look like so:

You will also have to upload them to the ZEnglish site server, the location can be found here /sites/zenglish.jp/files/wp-content/uploads/sl2/ze06/PDFs. Here you will upload the same pdfs with the same naming structure. It will look like so:

WordPress Content Upload

Now that all the files have been uploaded onto the backend servers it is time to add the pagesonto the website as well as make sure everything is linked correctly. All the GoLive! Content can be found here https://zenglish.jp/wp-admin/edit.php?post_type=go_live_content

In order to add a new content page to the site you will need to go here https://zenglish.jp/wp-admin/post-new.php?post_type=go_live_content

Once on the Add New page you will need to add all the information to the page.

Add the title to the page using the format of “Title – Level”

In the “Content Title” section add just the content title without the level, and in the “ContentDates” section add the dates the content will be taught in the live classes inthe following format “mm/dd-mm/dd”. Once done it should look like so:

In the “Main Content Area” be sure to use the “Text” (rather than "Visual”) Editor, to add the required code. The entire set of codes for each class type are at the end of this guide. We'll use Daily Basic as our example here, but the same process applies for all levels and class types.

Here is the code that you would use for a Daily Basic class

============================================================================

DAILY BASIC

[mepr-show if="loggedin"]


<h2 style="text-align: center;">Lesson Intro</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Intro-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Ask the Teacher</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/ATT/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Daily-ATT-Cover.jpg" /></a></p>


<hr>


<h2 style="text-align: center;">Lesson Slides</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Slides-Basic/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Slides-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Skit Quiz</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Skit-Quiz-Basic/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Skit-Quiz-Cover-Daily.png" /></a></p>


[/mepr-show]

I use a program called Sublime Text to edit my code as it is built for coding and will help youto quickly read the different parts of the code. It also allows me to select all duplicates of highlighted by pressing Alt+F3. You will see why this is a helpful tool.

This version of the code is a blank version designed to be quickly edited for the different topics that come up each week. In order to link all the modules to the correct files on the S3 Bucket we need to edit all the “CHANGETHIS” parts of the code to match the topic title we used to name the folder in the S3 Bucket.

For example, if the topic was Favorite Food the code would look like so:

[mepr-show if="loggedin"]


<h2 style="text-align: center;">Lesson Intro</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/Favorite-Food/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/Favorite-Food/Covers/Favorite-Food-Lesson-Intro-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Ask the Teacher</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/Favorite-Food/ATT/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Daily-ATT-Cover.jpg" /></a></p>


<hr>


<h2 style="text-align: center;">Lesson Slides</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/Favorite-Food/Slides-Basic/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/Favorite-Food/Covers/Favorite-Food-Lesson-Slides-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Skit Quiz</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/Favorite-Food/Skit-Quiz-Basic/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Skit-Quiz-Cover-Daily.png" /></a></p>


[/mepr-show]

============================================================================

You can see that all the “CHANGETHIS” sections have now been replaced with “Favorite-Food”. This means that they have all been linked to the right content. Place this code in the “Main Content Area” so that it looks like so


Next we will add the featured image for the content, to do this on the right hand side of the page select the “Set Featured Image” option. Once in here drag and drop the site pic image we saved earlier and select it by clicking the “Set Featured Image” button in the bottom right. Once set you should now see it on the right side of the page.

Next you select the level of the content using the “Levels” selection boxes.

Finally, you will need to select the correct “Content Categories” for your content. For all the Go Live! Content you will need to select the “Go Live!” category and then either the “Daily” or “Business” option for the content. If done correctly it should look like this

WordPress Frontend Setup

Now that all the content has been uploaded to the site it is time to link to it on the front end of the site. This includes two parts: (1) the slide downloads menu, and (2) the Go Live! Content pages.

(1) Slide Downloads Menu

To add links to the latest slide downloads, go to https://zenglish.jp/wp-admin/nav-menus.php and select the Menu Name: “Daily Lesson Downloads”

We only show three weeks’ worth of content at a time so you will be replacing the oldest content with the next weeks content and moving it up to the top. To do this you will be clicking the down arrow on the content title section in order to change the title and date shown here:


Then, for each level (ex: Basic, Advanced, Super) menu box, change the lesson number in the URL to match the content number you gave the slides when uploading:

When you have edited all the menu options for the Daily, Business and Beginner content click the “Save Menu” option at the bottom right of the page.

(2) Go Live! Content Page

Open the Go Live! Content Library page at https://zenglish.jp/live-content/ and use the Beaver Builder editor for the page. On this page we are going to edit the bottom set of topics and then move it to the top of the page.

First, click on the date in order to edit it to correspond with the dates you gave the content. Change this in the “Heading” box and then click save.

Now click the content carousel for the oldest topics, in the options box that pops up select the “Content” tab. Scroll down to “Go Live! Content” and delete all the content in the box, now you can start typing the topic name for the content you want to replace it with. After you start typing the system will offer content that matches the name you have typed. Select the right ones and then click save.

Then when you are back on the content library page use the Beaver Builder tools to move the set of topics to the top of the three on display.

In the top right of the page select the publish option.

You have now successfully uploaded and displayed the Go Live! Content.

ASP Content Upload Process

The ASP content upload process is very similar to the Go Live! Content process, you will be putting the content in a different folder set and the code is changed in a slightly different way. But other than that the rest remains the same.

To upload the content to the AWS S3 Bucket you will instead be using the /zen01/Content Catalogue/ASP file path. In here you will see the different folder sets that represent the ASP levels and then the Units and finally each lesson. It will look like this

For the PDF files you will be uploading those again to the ZEnglish website server and on that server you will place the PDFs in the folder found at /sites/zenglish.jp/files/wp-content/uploads/sl2/ASP/PDFs

The PDFs should be named as follows

ASP-LEVEL NUM-Unit-UNIT NUM-Lesson-LESSON NUM.pdf

For Example ASP-4-Unit-2-Lesson-3.pdf

(for ASPJ, e.g. ASPJesson-1.pdf)

When uploading the lesson modules, you will find that there are two types that we upload, Activities and Homework. These should be named after the content type so that we can correctly link to them again on the content page. The images used as covers for each module should be named after their corresponding content. Here is an example of a correctly named and uploaded set of modules and images.

With all the content uploaded onto the servers you then need to go to the backend of the site and start creating a new page for the content. You can find the ASP content here https://zenglish.jp/wp-admin/edit.php?post_type=asp_content

To create a new ASP page go here https://zenglish.jp/wp-admin/post-new.php?post_type=asp_content

When you create the page title use the following format

ASP LEVEL – Unit UNIT NUM – UNIT TITLE – Lesson LESSON NUM

For Example

ASP 5 - Unit 1 - My Name is Peter - Lesson 3


The “Content Title” should be formatted as so

UNIT TITLE – Unit UNIT NUM – Lesson LESSON NUM

For Example

My Name is Peter - Unit 1 - Lesson 3

In the “Main Content Area” we are going to select the “Text” option and then add the following code that has been edited to correspond with the lesson that we are uploading.

============================================================================

ASP CODE

(Be aware, there are different levels of ASP, so I advise looking at the most recent uploads in any given level to get a better template than the below code):

[mepr-show if="loggedin"]

<h2 style="text-align: center;">Slides</h2>

<p style="text-align: center;"><a href="https://zenglish.jp/wp-content/uploads/sl2/ASP/PDFs/ASP-CHANGEME-Unit-CHANGEME-Lesson-CHANGEME.pdf" target="_blank"><button>Slides</button></a></p>

<hr>

<h2 style="text-align: center;">Activity 1</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-1/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-1.png" /></a></p>

<hr>

<h2 style="text-align: center;">Activity 2</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-2/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-2.png" /></a></p>

<hr>

<h2 style="text-align: center;">Activity 3</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-3/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-3.png" /></a></p>

<hr>

<h2 style="text-align: center;">Homework</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-1/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-1.png" /></a></p>

<hr>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-2/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-2.png" /></a></p>

[/mepr-show]

============================================================================

In this code example, the “CHANGEME” sections correspond to the different levels, units and lessons that you will be uploading for. Here is an example of the code after it has been edited.

============================================================================

[mepr-show if="loggedin"]

<h2 style="text-align: center;">Slides</h2>

<p style="text-align: center;"><a href="https://zenglish.jp/wp-content/uploads/sl2/ASP/PDFs/ASP-5-Unit-4-Lesson-1.pdf" target="_blank"><button>Slides</button></a></p>

<hr>

<h2 style="text-align: center;">Activity 1</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Activity-1/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Activity-1.png" /></a></p>

<hr>

<h2 style="text-align: center;">Activity 2</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Activity-2/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Activity-2.png" /></a></p>

<hr>

<h2 style="text-align: center;">Activity 3</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Activity-3/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Activity-3.png" /></a></p>

<hr>

<h2 style="text-align: center;">Homework</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Homework-1/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Homework-1.png" /></a></p>

<hr>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Homework-2/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/5/Unit-4/Lesson-1/Homework-2.png" /></a></p>

[/mepr-show]

============================================================================

Once the modules have been added to the Main Content Area you will need to add a Featured Image to the page and then you will need to select the ASP Level so that the content is automatically shown to the ASP students. When everything is in place click the Publish button.

The page should look something like this

============================================================================

Content Code

DAILY BASIC

[mepr-show if="loggedin"]


<h2 style="text-align: center;">Lesson Intro</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Intro-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Ask the Teacher</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/ATT/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Daily-ATT-Cover.jpg" /></a></p>


<hr>


<h2 style="text-align: center;">Lesson Slides</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Slides-Basic/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Slides-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Skit Quiz</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Skit-Quiz-Basic/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Skit-Quiz-Cover-Daily.png" /></a></p>


[/mepr-show]

DAILY ADVANCED


[mepr-show if="loggedin"]


<h2 style="text-align: center;">Lesson Intro</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Intro-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Ask the Teacher</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/ATT/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Daily-ATT-Cover.jpg" /></a></p>


<hr>


<h2 style="text-align: center;">Lesson Slides</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Slides-Advanced/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Slides-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Skit Quiz</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Skit-Quiz-Advanced/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Skit-Quiz-Cover-Daily.png" /></a></p>


<hr>


<h2 style="text-align: center;">Vocabulary Match</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Vocab-Advanced/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Vocab-Match-Daily.png" /></a></p>


[/mepr-show]

DAILY SUPER

[mepr-show if="loggedin"]


<h2 style="text-align: center;">Lesson Intro</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Intro-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Ask the Teacher</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/ATT/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Daily-ATT-Cover.jpg" /></a></p>


<hr>


<h2 style="text-align: center;">Lesson Slides</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Slides-Super/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Covers/CHANGEME-Lesson-Slides-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Debate</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Debate/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Daily-DD-Cover.jpg" /></a></p>


<hr>


<h2 style="text-align: center;">Vocabulary Match</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Daily/CHANGEME/Vocab-Super/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Vocab-Match-Daily.png" /></a></p>


[/mepr-show]

============================

BIZ ADVANCED


[mepr-show if="loggedin"]


<h2 style="text-align: center;">Lesson Intro</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Covers/CHANGETHIS-Lesson-Intro-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Lesson Slides</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Slides-Advanced/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Covers/CHANGETHIS-Lesson-Slides-Cover.png" /></a></p>


<hr>


<h2 style="text-align: center;">Skit Quiz</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Skit-Quiz/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Skit-Quiz-Cover-Biz.png" /></a></p>


<hr>


<h2 style="text-align: center;">Vocabulary Match</h2>


<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Vocab-Advanced/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Vocab-Interactive-Biz.png" /></a></p>


[/mepr-show]

BUSINESS SUPER

[mepr-show if="loggedin"]

<h2 style="text-align: center;">Lesson Intro</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Intros/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Covers/CHANGETHIS-Lesson-Intro-Cover.png" /></a></p>



<hr />


<h2 style="text-align: center;">Lesson Slides</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Slides-Super/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Covers/CHANGETHIS-Lesson-Slides-Cover.png" /></a></p>



<hr />


<h2 style="text-align: center;">Debate</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Debate/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Biz-DD-Cover.jpg" /></a></p>



<hr />


<h2 style="text-align: center;">Vocabulary Match</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Biz/CHANGETHIS/Vocab-Super/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Vocab-Interactive-Biz.png" /></a></p>

[/mepr-show]

===============================

BEGINNER

(We rarely need to add Beginner materials, as we use a repeating set of the first forty)

[mepr-show if="loggedin"]

<h2 style="text-align: center;">Lesson Intro</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Beginner/CHANGETHIS/Intro/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Beginner-Lesson-Intro-Cover.jpg" /></a></p>

<hr>

<h2 style="text-align: center;">Slides with Audio</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Beginner/CHANGETHIS/Slides-with-Audio/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Beginner-Slides-with-Audio-Cover.jpg" /></a></p>

<hr>

<h2 style="text-align: center;">Skit Quiz</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Beginner/CHANGETHIS/Skit-Quiz/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/10/Skit-Quiz-Cover-Daily.png" /></a></p>

<hr>

<h2 style="text-align: center;">Translation Quiz</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Beginner/CHANGETHIS/Translation/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Beginner-Translation-For-Beg-Cover.jpg" /></a></p>

<hr>

<h2 style="text-align: center;">Conversation Match</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Beginner/CHANGETHIS/Conversation/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Beginner-Conversation-Match-Cover.jpg" /></a></p>

<hr>

<h2 style="text-align: center;">Jumbled Sentences</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/Go%20Live/Beginner/CHANGETHIS/Jumbled/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/zenglish/wp-content/uploads/2019/09/Beginner-Jumbled-Sentences-Cover.jpg" /></a></p>

[/mepr-show]

===============================

ASP

(Be aware, there are different levels of ASP, so I advise looking at the most recent uploads in any given level to get a better template than the below code):

[mepr-show if="loggedin"]

<h2 style="text-align: center;">Slides</h2>

<p style="text-align: center;"><a href="https://zenglish.jp/wp-content/uploads/sl2/ASP/PDFs/ASP-CHANGE-Unit-CHANGE-Lesson-CHANGE.pdf" target="_blank"><button>Slides</button></a></p>

<hr>

<h2 style="text-align: center;">Activity 1</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-1/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-1.png" /></a></p>

<hr>

<h2 style="text-align: center;">Activity 2</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-2/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-2.png" /></a></p>

<hr>

<h2 style="text-align: center;">Activity 3</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-3/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Activity-3.png" /></a></p>

<hr>

<h2 style="text-align: center;">Homework</h2>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-1/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-1.png" /></a></p>

<hr>

<p style="text-align: center;"><a href="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-2/story_html5.html" target="_blank" rel="noopener"><img style="margin-left: auto; margin-right: auto;" src="https://cdn.zenglish.jp/Content%20Catalogue/ASP/CHANGEME/Unit-CHANGEME/Lesson-CHANGEME/Homework-2.png" /></a></p>

[/mepr-show]