Website Backlog: Difference between revisions

From Lacrosse Plan Drills
No edit summary
No edit summary
Line 35: Line 35:




Wordpress plugins
===Code changes made===


Login plugins:
In '''Appearance''' --> '''Editor''' for the Ixion theme the following changes were made:
http://www.wpbeginner.com/plugins/best-wordpress-login-page-plugins/


page permissions to specific users:
file: single.php
installed - https://wordpress.org/plugins/user-specific-content/
* In the page title section, the yoast breadcrumbs were added
 
create groups:
https://wordpress.org/plugins/groups/
 
Custom Post Types:
https://www.shoutmeloud.com/wordpress-custom-post-type-plugins.html
 
registration emails
 
approve users into a permission group
 
manage default roles:
https://wordpress.org/plugins/capability-manager-enhanced/
 
page list:
installed - https://wordpress.org/plugins/page-list/
 
paypal widget


<pre>
/** Added by Dave */
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('
<p id="breadcrumbs">','</p>
');
}
</pre>


* in the single page (page.php) section added the following:
<pre>
<?php
/** Added by Dave */
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('
<p id="breadcrumbs">','</p>
');
}
?>
</pre>


{{#seo:
{{#seo:

Revision as of 13:09, 20 July 2017

Wiki

Team Sites

  • Create Site Navigation (Home, Teams, Plays)
  • Create non access controlled homepage
  • Create access controlled plays page (model after portfolio template)
  • Create team user accounts
  • Create year and season navigation
  • Create each a team page, highlighting team successes, and pictures
    • Add a coaches link to the team page that links to a coach page
  • Create a coaches bio template and page section
  • Create standard image size for slider (960 by 540 or 800 by 450)
  • For registration is it easier to do the following
    • Have people register for a new local account, and then link to google, create a seperate plays access control list and move people into it
    • Have people login with google, join an auto group, and move manually into the plays permission group
    • Create local accounts ahead of time and email people their username/password
  • Work on SEO (https://www.pixoinc.com/concrete5-blog/2016/5/23/definitive-guide-concerete5-search-engine-optimization)
  • Add Google Analytics
  • Create a progress report section with a template
    • Add Advanced Permissions
    • Determine best way to add a homework section and to allow parents to mark complete (could be through comments)
  • Complete the members page and add an account link: http://www.lacrosseplan.com/teams/members/directory

Wordpress site

Themes: Ixion Zerif Lite


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>
			');
		}
		?>