nevermind i see what you meant:
K, Since I'm feeling generous:
open admin/includes/modules/update_product.php
the 2nd to last line of code (scroll all the way down) should look like this:
zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')));
Delete it, and replace with this:
//D'art Api
//edit the following vars
$userID = 42146; //d'art userid
$password = "yourPassword"; //d'art password
$artistFirstName = "Jamie";
$artistLastName = "Taylor";
$paypalEmail = "jvptaylor##########################";
$store_url = 'http://www.htmyell.com'; //path to your store without the trailing "/"
$category = 5; //see [url]http://dart.fine-art.com/api/variables.asp#response[/url] for info
$subject1 = 25; //see [url]http://dart.fine-art.com/api/variables.asp#response[/url] for info
$subject2 = 27; //see [url]http://dart.fine-art.com/api/variables.asp#response[/url] for info
$media1 = 56; //see [url]http://dart.fine-art.com/api/variables.asp#response[/url] for info
$watermark = htmlentities(urlencode("© " . "Jamie Taylor"));
//do not edit the vars below
$prod_name = implode(" ", $products_name);
$prod_description = implode(" ", $products_description);
$prod_url = $store_url . '/index.php?main_page=product_info&cPath=' . $current_category_id . '&products_id=' . $products_id ;
$price = $products_price;
$title = htmlentities(urlencode($prod_name));
$action = "new";
$urlArt = $store_url . "/images/" . $products_image;
$vendorCode = $products_model; //uses zencart model number
$urlReturn = zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id . (isset($_GET['page']) ? '&page=' . $_GET['page'] : ''));
//Redirect to API and back to store front
$redirectTo = "https://dart.fine-art.com/api/process.asp" .
"?userID=" . $userID . "&password=" . $password . "&action=" . $action .
"&artistFirstName=" . $artistFirstName . "&artistLastName=" . $artistLastName .
"&price=" . $price . "&title=" . $title . "&category=" . $category . "&urlArt=" .
$urlArt . "&vendorCode=" . $vendorCode . "&subject1=" . $subject1 . "&subject2=" . $subject2 .
"&media1=" . $media1 . "&urlReturn=" . $urlReturn . "&paypalEmail=" . $paypalEmail .
"&watermark=" . $watermark ;
header("Location: $redirectTo");
//end of d'art api
change the top variables to reflect your fine-art.com info
go to http://dart.fine-art.com/api/variables.asp#response if you need help with them. and thats it, now everytime you add a product in zencart, it will appear on your fine-art.com profile :D
if youd rather download and replace your existing update_product.php here's a link http://htmyell.com/images/share/update_product.zip NOTE: this does not have AutoTweet installed its just the default version and d'art api.