Advertisement
Guest User

Upgrade to Minn 1.0 instructions

a guest
May 29th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. Firstly, backup ALL your customizations. If you have added any custom CSS in theme options, or modified any theme files directly then please backup changes.
  2. If using a child theme for all customizations then you don't have to back that up.
  3. Activate one of the default WordPress themes such as Twenty Fifteen.
  4. Delete the Minn PARENT theme and ALL WPGO plugins. Do NOT delete the Minn CHILD if you were using it, or you will lose customizations.
  5. All previous WPGO plugins have been consolidated into WPGO Metro. It's recommended that you install this plugin BEFORE Minn. You can download the new version of WPGO Metro from your wpgothemes.com account page. Activate the plugin once installed.
  6. Do the same for the new version of Minn and install from your WPGO Themes account. Activate the theme once installed.
  7. Delete any instances of the WPGO Connect widget you have created and replace with new instance. This is necessary as there is a new font icon used to render the icons. There are also new icons available.
  8. Go to Appearance > Menus to reassign menu locations. Then go to Go to Appearance > Widgets and reassign to widget areas as necessary.
  9. Update footer HTML in customizer with this HTML: <p class="copyright">© [year] [site-url]</p><p class="wpgo-link">Powered by <a href="//wordpress.org/" target="_blank" class="wp-link"><i class="fa fa-wordpress"></i></a> and the <a href="//www.wpgothemes.com/themes/modd" target="blank">Minn Theme</a>.</p>
  10. Go through all your CSS customizations. There have been multiple updates to class names so it is likely that some of your CSS selectors will need to be updated. One major difference is that the main HTML structure now uses all CSS class names over CSS id's that were used in the original version of Minn.
  11. Any shortcodes you have used icons in (such as the 'box' shortcode) then you will need to update the shortcode to use a new type of icon. See the new shortcodes examples: http://demo.wpgothemes.com/minn/shortcodes/.
  12. The front page boxes HTML has changed (as has all the styles), so if you used the HTML for these boxes on your own site you need to use the updated HTML:
  13.  
  14. <div class="featured-box-row featured-box-3-col featured-box-no-margin">
  15.  
  16. <div class="featured-box featured-box-1 pf">
  17. <h3><a href="#/">Portfolio</a></h3>
  18. <p><i class="fa fa-university"></i> Lorem ipsum dolor sit amet, lorem ipsum dolor sit amet consec tetur adipiscing elit. Morbi consectetur fring illa temp nunc luctus illa tem.</p>
  19. <div class="featured-box-arrow"><a href="#/"><i class="fa fa-arrow-circle-right"></i></a></div>
  20. </div>
  21.  
  22. <div class="col featured-box featured-box-2 features">
  23. <h3><a href="#/">Features</a></h3><p><i class="fa fa-university"></i> Lorem sit amet, adipiscing elit. Morbi consectetur fring illa temp nunc luctus illa temp nunc luctus lore.</p>
  24. <div class="featured-box-arrow"><a href="#/"><i class="fa fa-arrow-circle-right"></i></a></div>
  25. </div>
  26.  
  27. <div class="col featured-box featured-box-3 team">
  28. <h3><a href="#/">Team</a></h3><p><i class="fa fa-university"></i> Lorem ipsum dolor sit amet, consec tetur adipiscing elit. Morbi consectetur fring illa temp nunc luctus illa lore.</p>
  29. <div class="featured-box-arrow"><a href="#/"><i class="fa fa-arrow-circle-right"></i></a></div>
  30. </div>
  31.  
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement