Hello everyone,
My first time posting. I hope I do it right. I have a website for a client, [[LINK href="http://www.customwesternbelts.com"]]Custom Western Belts[[/LINK]] To add a product we do it by simply adding a post. The theme is from Templatic. They have built custom fields into the post. You can currently input the different "sizes" and "colors" of products. I need to add in two additional choices. "Tip options" and "Conchos". This needs to be added to the back end and show up on the product pages. You can also click a button on the product page that says "see size chart" and an image pops up. I need to add "See Tips" and "See Conchos" and when you click on it and image that I have uploaded pops up.
I hope someone can help.
Thanks,
Brandon
Luis Abarca answers:
i can do it, just send me a login to your WP installation in a PM
Brandon Jolley comments:
What do you mean by PM?
Luis Abarca comments:
A private message, just go to my profile and click en Message, http://wpquestions.com/user/profile/id/4938
Luis Abarca comments:
Im adding tips on you admin page...
Luis Abarca comments:
Its done amigo, but the new images breaks the popup window
Abdessamad Idrissi answers:
I'm working on it :)
Abdessamad Idrissi comments:
all right :) open "Store\library\functions\custom.php" you will find
$meta_boxes['size'] =
array(
"name" => "size",
"title" => "Size",
"type" => "select",
"tabindex" => '2',
"description" => "Product is available in various Sizes. Please press Set Changes button to get your changes effected.'");
$meta_boxes['color'] =
array(
"name" => "color",
"title" => "Color",
"type" => "select",
"tabindex" => '2',
"description" => "Product is available in various Colors. Please press Set Changes button to get your changes effected.'");
add in the bottom of it
$meta_boxes['tip_options'] =
array(
"name" => "tip_options",
"title" => "Tip options",
"type" => "select",
"tabindex" => '2',
"description" => "Put a description here'");
$meta_boxes['conchos'] =
array(
"name" => "conchos",
"title" => "Conchos",
"type" => "select",
"tabindex" => '2',
"description" => "Put a description here'");