ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Other Software > Developer's Corner

Any wordpress coders here available for hire?

<< < (2/6) > >>

Veign:
Few points:
- Looking at your spec you're more inline with a custom Theme then you are with a Plugin.  Plugin is to modify existing functionality that works into a theme, a custom theme is what changes the look and feel of the website.
- Shortcodes and functions can be easily incorporated in from a Theme install
- Page Templates are also available through a Theme (see how the twnetyeleven Theme works)
- File Upload: You should use the Media Manager that comes with Wordpress.  I wouldn't recommending disconnecting any part from Wordpress as it would make interacting, from a code standpoint, more difficult
- Its very important when developing in Wordpress to do it the 'Wordpress' way as it gives way more flexibility to add functionality with existing plugins
- CSS modification is already available in Wordpress for Themes (another reason to use a custom Theme)

I would like to help but fear that budget would be an issue.  With all the customizations and work I would expect a project like this to be in the $3.5K - $7.5K range (rough ballpark).  What is your budget (a range is fine)?

superboyac:
Few points:
- Looking at your spec you're more inline with a custom Theme then you are with a Plugin.  Plugin is to modify existing functionality that works into a theme, a custom theme is what changes the look and feel of the website.
- Shortcodes and functions can be easily incorporated in from a Theme install
- Page Templates are also available through a Theme (see how the twnetyeleven Theme works)
- File Upload: You should use the Media Manager that comes with Wordpress.  I wouldn't recommending disconnecting any part from Wordpress as it would make interacting, from a code standpoint, more difficult
- Its very important when developing in Wordpress to do it the 'Wordpress' way as it gives way more flexibility to add functionality with existing plugins
- CSS modification is already available in Wordpress for Themes (another reason to use a custom Theme)

I would like to help but fear that budget would be an issue.  With all the customizations and work I would expect a project like this to be in the $3.5K - $7.5K range (rough ballpark).  What is your budget (a range is fine)?
-Veign (September 13, 2011, 03:24 PM)
--- End quote ---
Yeah, that's definitely outside our range.  I don't know what our budget is right now.  It's something we'll be able to answer after we get an idea of what to expect.  I was hoping it wouldn't be that much.

Veign:
The problem when getting something done cheaply is you end up with a house cards built by someone who truly doesn't understand Wordpress Development.  I have no doubt you'll find cheaper but don't believe you'll find a knowledgeable Wordpress developer for cheaper.  Only hope is to find someone looking to build a portfolio who would take the project at a greatly reduced price.

What I've learned with web development is a little more up front saves you 10 fold down the road with updates and maintenance.

An option, if you want to do it yourself, is to find a theme released under GPL that gets you close and then just tweak it to meet your spec - just make sure it's Wordpress 3.0 compliant.  Hire someone for a 1-2 hour review of the code to make sure it was developed correctly.  This may be an option for getting what you need for a greatly reduced price.

Good luck.

superboyac:
- Looking at your spec you're more inline with a custom Theme then you are with a Plugin.  Plugin is to modify existing functionality that works into a theme, a custom theme is what changes the look and feel of the website.
--- End quote ---
I would prefer a plugin because then I can convert any page, no matter what theme I'm using, to do the thing I described.  Wouldn't that be a desirable thing?  It's something I would really put to use on multiple websites and pages.  Please let me know if I'm overlooking something.

- File Upload: You should use the Media Manager that comes with Wordpress.  I wouldn't recommending disconnecting any part from Wordpress as it would make interacting, from a code standpoint, more difficult
--- End quote ---
This is something I do intentionally.  I upload all my files into a simple folder.  It's very easy for me.  I can use an ftp server and just drop files in.  I strongly prefer it this way.  I don't really want to upload through the browser, and click around whatever internal galleries wordpress does in the admin section.  This is one area where I am really old school: I like having direct access to my files and folders...it means I have ultimate control.  I don't feel this should make coding any more difficult because all the plugins and stuff I've done so far work very easily with the folder addresses that I use to link to whatever I need.  When it comes to the posts and pages, I don't like the gui.  I prefer to do everything and see all the codes and shortcodes.  The most I would ask for is a button where some parameters are entered, and it spits out the shortcode onto the post.  But again, if I'm overlooking something please let me know.  I struggle sometimes with understanding the usage of page templates vs. plugins vs widgets.

Veign:
- Looking at your spec you're more inline with a custom Theme then you are with a Plugin.  Plugin is to modify existing functionality that works into a theme, a custom theme is what changes the look and feel of the website.
--- End quote ---
I would prefer a plugin because then I can convert any page, no matter what theme I'm using, to do the thing I described.  Wouldn't that be a desirable thing?  It's something I would really put to use on multiple websites and pages.  Please let me know if I'm overlooking something.
-superboyac (September 13, 2011, 03:43 PM)
--- End quote ---

Except you're asking the plugin to style the page for you or am I missing something.  Your example built the entire page (removed menus, changed header/footer).  I guess it boils down to exactly what do you need.  Themes can do most everything a plugin can do and provide the look and feel for a site.

- File Upload: You should use the Media Manager that comes with Wordpress.  I wouldn't recommending disconnecting any part from Wordpress as it would make interacting, from a code standpoint, more difficult
--- End quote ---
This is something I do intentionally.  I upload all my files into a simple folder.  It's very easy for me.  I can use an ftp server and just drop files in.  I strongly prefer it this way.  I don't really want to upload through the browser, and click around whatever internal galleries wordpress does in the admin section.  This is one area where I am really old school: I like having direct access to my files and folders...it means I have ultimate control.  I don't feel this should make coding any more difficult because all the plugins and stuff I've done so far work very easily with the folder addresses that I use to link to whatever I need.  When it comes to the posts and pages, I don't like the gui.  I prefer to do everything and see all the codes and shortcodes.  The most I would ask for is a button where some parameters are entered, and it spits out the shortcode onto the post.  But again, if I'm overlooking something please let me know.  I struggle sometimes with understanding the usage of page templates vs. plugins vs widgets.
-superboyac (September 13, 2011, 03:43 PM)
--- End quote ---

The reason for using the Media Manager is the file information is stored in the Wordpress database and available for use by standard Wordpress methods to interact with the files.  I guess you could build a plugin to do bulk uploads but not really sure why you would want that - Media Manager supports bulk uploads.  FTP makes it available via the file system but then Wordpress has no knowledge of the files.

Not sure you need Widgets to start.  For simplicity think of a Widget as a self-contained block of rendered information pulled from some data source.  Widgets can be placed within defined areas that are pre-established within a theme - typically sidebars, header or footer areas.

You need to drop the old-school way and get used to that you're building something on an existing framework.  Fight the framework and you create a nightmare for yourself.  Work with the Wordpress ways and things are much more flexible.  With a low budget you should develop what Wordpress doesn't provide.  Go back later and improve standard functionality when the budget is there.  Most, if not all, Wordpress developers would want to create something that works with the Wordpress best practices and not go old-school  :)

Just my opinion, others may disagree.

fwiw: I've developed a plugin that supports widgets, shortcodes, custom post types, custom settings and more.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version