by suleski | Nov 5, 2014 | Technical, Troubleshooting, Walkthroughs
Intro Recently, I joined the WordPress Theme Review Team. I’m in the process of reviewing my first theme and these are some notes that may come in handy. Setup a test environment I have a local WAMP setup. If you develop for WordPress and are still uploading...
by suleski | Aug 31, 2014 | Technical, Troubleshooting
When running a query within MySQL Workbench, you might see an error like this: Error Code: 1175. You are using safe update mode… To get around this issue, you can add this line to your query (untested): set SQL_SAFE_UPDATES = 0; Or, since you are using...
by suleski | Aug 29, 2014 | Products, Technical, Troubleshooting
One side of the coin – Visual Composer As an end product, the idea of Visual Composer is positive. It’s a drag/drop tool that can be used to easily create posts/pages in WordPress – an extension of the existing tools. In fact, it is packaged in my...
by suleski | Aug 23, 2014 | Reference, Technical
I am in the process of putting up a WordPress theme to the Theme Directory. At the top of the parent style.css, WordPress requires something like this: /* Theme Name: Twenty Fourteen Child Theme URI: http://example.com/twenty-fourteen-child/ Description: Twenty...
by suleski | Aug 12, 2014 | Reference, Technical, Troubleshooting
I built a batch file that understands how to generate the documentation for my project. Here are some points that I think are noteworthy for future reference: When using a batch file (instead of just going through a command-line), ensure that we call pear before...
by suleski | Aug 10, 2014 | Reference, Technical, Troubleshooting
I wanted to create documentation for my most recent PHP project. My code was all set and in a form that it should be in – I just needed a way to generate the docs. I considered two options: phpDocumentor ApiGen Ended up going with phpDocumentor because it...