I’m trying to build website using wordpress.
There are tons of usable plugins, but instead of trying them all one by one id rather ask someone who can suggest me the one that would fit my needs.
The website is for small company who sells car scales.
I need multilanguage support(for 3languages) A plugin for displaying the products with category tree. When you click on the thumbnail it opens a picture(litebox style) with a short description and a little pdf icon as a pdf manual attachment.
It isnt suppose to be a webstore, but it would be nice if under the picture there would be a link(“Please tell me more”) or something like that and when you click on it it opens a contact form so if people want more information, like prices, guarantee, etc they will contact the administrator.
I understand that only plugins wont cover it and some php editing would be needed, but atleast I want to know with what to start.
Thanks!
In your position, I’d use custom post types and taxonomies. I could recommend the following:
With these you can implement a post-like group, for example products, and category-like taxonomy, for example brands.
Multi language support is a lot trickier, however, I have good experiences with:
For thumbnails, use post thumbnail function, it can be enabled in your theme init with:
I hope it helped!
Ray, peter did a great job of wrapping some things up for you, however I’d like to chime in as well and get you started in a couple areas that you don’t really need a plugin’s support for. However nice, it’s not quite needed for some things. (Depending on skill, of course proceed at your own risk).
This is the code used to create your Custom Post Type
Products
this will allow to further customize the output of this piece of your WordPress site of course I suggest reading the Codex Link about Post Types, as well as this one about Querying your loops for URL REWritingadd the following code to your themes functions.php file or in a plugin:
Here’s the code to make your Taxonomy for your
Item Tags & Categories
, these can later be used to sort through however you see fit, I’ve generalized the bit of code so hopefully you can understand how to use it for your needs. I would read about Taxonomies from the Codex to understand how they interact with the WordPress machine.add the following code to your themes functions.php file or in a plugin:
This is by far no means to a complete answer, but hopefully it may be enough to get you pointed in the right directions.
Cheers!