I have bought WP Themes to look at their code so that I can transfer them to Modx, are there specific folders I should look out for? If it helps one of the Wordpress Themes (Roots), uses the HTML5 Boiler Point and Twitter's Bootstrap.
2 Answers
Viewing Wordpress page source will do very little for you. You're going to get rendered php outputted for features and functions that have no relation to MODx.
Read MOSx's own docs on the process: MODX College: Porting WordPress Themes http://modx.com/learn/modx-college/porting-wordpress-themes/

- 17,322
- 12
- 60
- 106
To do that follow the steps below:
- Install your theme in wordpress.
- View the wordpress with the new theme installed.
- View the source of the page (Ctrl + u).
- Copy the source.
- Create new template in MODx.
- Paste the copied source code to the new template you've just created.
- Assign the template to a page (ie. home) and save.
- View the page (click the 'View' button).
You will see, there will be all css, js, images and other files missing. Simply link all of these files in the newly created template. It's best to put them in the following directories on the server:
- /assets/css/
- /assets/js/
- /assets/images/
After all files will be linked, select and cut the content from the template and paste it to the 'content' area of one of the resources (ie home) and click save.
In the template instead of the content you've just cut out, put
[[*content]]
.
That's basics. You can continue with other adjustments. MODx is very comfortable once you'll get a grip on it.

- 634
- 7
- 17
-
Thanks, your answer is similar to: View HTML output from the WordPress theme and weaving the HTML/CSS/JS into MODX as if WordPress never had anything to do with the design. WP has a theme structure whereas MODX has no theme or template guidelines or structure—you have 100% control over all output. You may be able to use the PHP files in the theme as a reference for areas to create TVs, chunks etc. Source: http://www.quora.com/MODX-CMS/How-can-I-extract-the-core-of-a-Wordpress-Theme-and-transfer-recode-it-to-be-used-in-Modx – JJS Dec 08 '12 at 13:05