Website Backlog
From Lacrosse Plan Drills
Wiki
- Add 1-5 drills per week
- Add SEO plugins for meta tags: https://www.mediawiki.org/wiki/Extension:Add_HTML_Meta_and_Title
- Refresh sitemap and resubmit
Generate and submit sitemap.xml file and create cron job to update once a week
Wordpress site
Configure smtp info: https://help.dreamhost.com/hc/en-us/articles/215526937-How-do-I-configure-a-WordPress-SMTP-plugin-Yoast need to figure out how to fix the title tag to display the sitename and not just the pagetitleConfigure a custom login screenDisable registration add a form to request an account- Test bulk account upload
Test forgot password- Test sending a custom email message for new accounts
Update the No access page to link to the request an account form- Customize yoast breadcrumbs with archive pages
- Build a private coaches area for discussions and create a coaches role that has editor rights
- Change link colors and call out buttons
/* Change the hover color of the featured boxes */ h1.entry-title a:hover { color: #dd3333; } /* Begin Link Colors */ h1.entry-title a { color: #FFFFFF; } a { color: #dd3333; text-decoration: none; } a:hover { color: #dd3333; text-decoration: underline; } a:visited { color: #dd3333; text-decoration: none; } button, input[type="button"], input[type="reset"], input[type="submit"], .button, #infinite-handle span { background: #dd3333 !important; } .main-navigation ul > li > a { color: #dd3333; } .main-navigation ul { border-top: 3px solid #dd3333; } .main-navigation ul:before { color: #dd3333; } /* End Link Colors */
Themes:
- Ixion
- default image size 1080 by 500
Code changes made
In Appearance --> Editor for the Ixion theme the following changes were made:
file: single.php
- In the page title section, the yoast breadcrumbs were added
/** Added by Dave */ if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb(' <p id="breadcrumbs">','</p> '); }
- in the single page (page.php) section added the following:
<?php /** Added by Dave */ if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb(' <p id="breadcrumbs">','</p> '); } ?>