Appearance
Tutorials
WARNING
Some tutorials here require code editing. If you need support, feel free to contact us at the email address specified in the README or package.json file.
How to get the Yuuga theme folder
- Download the
yuuga.zipvia email or Gumroad Library after purchasing the theme. If you have made changes to the source code and want to keep it, download the current running Yuuga theme - Extract the downloaded zip to a folder, let's say
yuugaWARNING
Some unzip tools will default extract into the current folder, and others will extract into a new folder. So be careful.
- Now you have the Yuuga theme folder,
yuuga, and you can follow the tutorials here or start development
How to add more social links in the footer
- Go to the Yuuga theme folder
- Open the
default.hbsfile in your code editor (we recommend VSCode) - Search
Add more social links belowin the file using your code editor's search feature for a quick search
hbs
</a>
</li>
{{/if}}
{{!-- Add more social links below --}}
</ul>
{{navigation type="secondary"}}
</div>- After filling out the form below, paste the following code snippet beneath the
Add more social links below. Do the same thing if you want to add more links!
TIP
You can find and copy social media SVG icons from Remix Icons, Mage Icons, Box Icons, etc.
hbs
<li>
<a href="" target="_blank" aria-label="">
</a>
</li>TIP
Save the links that you have created in your notes. This will be very helpful if you want to update the Yuuga theme in the future.
- Save the changes and then zip the theme again
- Upload the zip file to see the changes
How to change the default number of posts per page/load
The default number of posts per page/load in the Yuuga theme is 6 posts. You can change this number by following the steps below.
- Go to the Yuuga theme folder
- Open the
package.jsonfile in your code editor (we recommend VSCode) - Search the
posts_per_pageproperty in the file using your code editor's search feature for a quick search
json
{
// ...
"config": {
"posts_per_page": 6
// ...
}
}- Replace the value with the expected number
- Save the changes and then zip the theme again
- Upload the zip file to see the changes