Zen Cart Logo
Forums / All Other Contributions/Addons / AutoTweet [support]

AutoTweet [support]

Views: 51,022

Results 201 to 220 of 264
15 Aug 2011, 7:01 AM
#201
irishshopper avatar

irishshopper

Zen Follower

Join Date:
Apr 2010
Location:
County Down, Northern Ireland
Posts:
302
Plugin Contributions:
0

AutoTweet [support]

What is the name of this Auto Tweet add on ? Had one before but it did not have the option to turn it off.

18 Sep 2011, 6:37 AM
#202
wakeleymb avatar

wakeleymb

New Zenner

Join Date:
Sep 2011
Location:
Sydney, Australia
Posts:
48
Plugin Contributions:
0

Re: AutoTweet [support]

has anybody here gotten auto tweeter and auto facebook to work simultaneously?? i notice they both have to update update_product.php ??

25 Oct 2011, 4:07 AM
#203
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: AutoTweet [support]

Ok I found out how to get this to work in conjunction with AutoFB. I had always put the Tweet code AFTER the AutoFB code in update_product.php. You have to put it BEFORE and it works. Don't know why. Don't care. It works.

25 Oct 2011, 8:08 PM
#204
wmorris avatar

wmorris

Totally Zenned

Join Date:
Aug 2007
Location:
Amarillo, Tx
Posts:
1,682
Plugin Contributions:
0

Re: AutoTweet [support]

Will this mod will automatically update twitter if you have any promotions and specials that have on the site?

15 Nov 2011, 12:38 AM
#205
keystoneairsoft avatar

keystoneairsoft

New Zenner

Join Date:
Jun 2010
Posts:
41
Plugin Contributions:
0

Re: AutoTweet [support]

Hi all,

This sounds like a great mod, however I am having difficulty with it.

I have followed the install Readme, setup a Twitter account as well as a bitly account. Set them up and when I add a product now I am getting the message at the top left of my screen stating that "Twitter Updated!" per the image attached. But when I go to my twitter account there is absolutely nothing showing other then "@keystoneairsoft hasn't tweeted yet."

Not sure where I am going wrong. Would be great if someone can point me in some kind of right direction to get this fixed.

Thanks much in advance.

Ron S.

15 Nov 2011, 2:21 AM
#206
keystoneairsoft avatar

keystoneairsoft

New Zenner

Join Date:
Jun 2010
Posts:
41
Plugin Contributions:
0

Re: AutoTweet [support]

Update!!

Ok I got it to finally upload to the bitly site, however it is still not posting on my Twitter Page. I have Share enabled on the bitly site with all my credentials but will not automatically send to Twitter.

Now, however I am able to go to the bitly site and click on the product and when the display box shows up on the right and I click "Share" it will post to my Twitter account. I have checked all settings on bitly and twitter and seems everything is right but apparently it isn't.

Any help would be greatly appreciated.

Ron S.

17 Nov 2011, 1:39 AM
#207
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: AutoTweet [support]

bkeaton:

Will this mod will automatically update twitter if you have any promotions and specials that have on the site?

No man/woman. Read the first post. What it does is when you ADD A NEW PRODUCT ONLY it Tweets it. NOTHING MORE.

8 Jan 2012, 6:15 AM
#208
wowemall avatar

wowemall

Zen Follower

Join Date:
Jan 2005
Posts:
101
Plugin Contributions:
0

Re: AutoTweet [support]

today auto tweet work stop in my 2 sites, i am not change any thing in script or website and also not show any type error.
any one help me, how to solve this problem ?

10 Feb 2012, 2:44 PM
#209
rueb avatar

rueb

New Zenner

Join Date:
Feb 2012
Posts:
1
Plugin Contributions:
0

Re: AutoTweet [support]

Hello developer!...

Is there a way to get the autotweet to display a special format Price like this (Without the quotes"): "New Product online: xyzname only € 12,00 (excl. VAT) ... "

how does the code look like for this format, caus I cannot get it to look like this... it always looks like
" EURO 12.0000 " and not
" € 12,00 " ....

how to program this?

Thanks for help!

19 Apr 2012, 7:18 AM
#210
wowemall avatar

wowemall

Zen Follower

Join Date:
Jan 2005
Posts:
101
Plugin Contributions:
0

Re: AutoTweet [support]

thanks for this great module.

can you add http://adf.ly API in this module at this time you use bitly.com API

if any one help me.

code:


<?php /** * @package admin * @copyright Copyright 2003-2010 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: update_product.php 15636 2010-03-07 07:00:40Z drbyte $ */ if (!defined('IS_ADMIN_FLAG')) { die('Illegal Access'); } if (isset($_GET['pID'])) $products_id = zen_db_prepare_input($_GET['pID']); if (isset($_POST['edit_x']) || isset($_POST['edit_y'])) { $action = 'new_product'; } elseif ($_POST['products_model'] . $_POST['products_url'] . $_POST['products_name'] . $_POST['products_description'] != '') { $products_date_available = zen_db_prepare_input($_POST['products_date_available']); $products_date_available = (date('Y-m-d') < $products_date_available) ? $products_date_available : 'null'; // Data-cleaning to prevent MySQL5 data-type mismatch errors: $tmp_value = zen_db_prepare_input($_POST['products_quantity']); $products_quantity = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value; $tmp_value = zen_db_prepare_input($_POST['products_price']); $products_price = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value; $tmp_value = zen_db_prepare_input($_POST['products_weight']); $products_weight = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value; $tmp_value = zen_db_prepare_input($_POST['manufacturers_id']); $manufacturers_id = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value; $sql_data_array = array('products_quantity' => $products_quantity, 'products_type' => zen_db_prepare_input($_GET['product_type']), 'products_model' => zen_db_prepare_input($_POST['products_model']), 'products_price' => $products_price, 'products_date_available' => $products_date_available, 'products_weight' => $products_weight, 'products_status' => zen_db_prepare_input((int)$_POST['products_status']), 'products_virtual' => zen_db_prepare_input((int)$_POST['products_virtual']), 'products_tax_class_id' => zen_db_prepare_input((int)$_POST['products_tax_class_id']), 'manufacturers_id' => $manufacturers_id, 'products_quantity_order_min' => zen_db_prepare_input($_POST['products_quantity_order_min']), 'products_quantity_order_units' => zen_db_prepare_input($_POST['products_quantity_order_units']), 'products_priced_by_attribute' => zen_db_prepare_input($_POST['products_priced_by_attribute']), 'product_is_free' => zen_db_prepare_input((int)$_POST['product_is_free']), 'product_is_call' => zen_db_prepare_input((int)$_POST['product_is_call']), 'products_quantity_mixed' => zen_db_prepare_input($_POST['products_quantity_mixed']), 'product_is_always_free_shipping' => zen_db_prepare_input((int)$_POST['product_is_always_free_shipping']), 'products_qty_box_status' => zen_db_prepare_input($_POST['products_qty_box_status']), 'products_quantity_order_max' => zen_db_prepare_input($_POST['products_quantity_order_max']), 'products_sort_order' => (int)zen_db_prepare_input($_POST['products_sort_order']), 'products_discount_type' => zen_db_prepare_input($_POST['products_discount_type']), 'products_discount_type_from' => zen_db_prepare_input($_POST['products_discount_type_from']), 'products_price_sorter' => zen_db_prepare_input($_POST['products_price_sorter']) ); // when set to none remove from database // is out dated for browsers use radio only $sql_data_array['products_image'] = zen_db_prepare_input($_POST['products_image']); $new_image= 'true'; if ($_POST['image_delete'] == 1) { $sql_data_array['products_image'] = ''; $new_image= 'false'; } if ($_POST['image_delete'] == 1) { $sql_data_array['products_image'] = ''; $new_image= 'false'; } if ($action == 'insert_product') { $insert_sql_data = array( 'products_date_added' => 'now()', 'master_categories_id' => (int)$current_category_id); $sql_data_array = array_merge($sql_data_array, $insert_sql_data); zen_db_perform(TABLE_PRODUCTS, $sql_data_array); $products_id = zen_db_insert_id(); // reset products_price_sorter for searches etc. zen_update_products_price_sorter($products_id); $db->Execute("insert into " . TABLE_PRODUCTS_TO_CATEGORIES . " (products_id, categories_id) values ('" . (int)$products_id . "', '" . (int)$current_category_id . "')"); /////////////////////////////////////////////////////// //// INSERT PRODUCT-TYPE-SPECIFIC *INSERTS* HERE ////// // start autoTweet 3.0 //User Settings. $consumerKey = "Your twitter app consumer key"; //twitter app consumer key. $consumerSecret = "Your twitter app consumer secret"; //twitter app consumer secret. $oauthToken = "Your my access oauth token"; //twitter app "my access" token $oauthTokenSecret = "Your my access oauth token secret"; //twitter app "my access" token secret. $bitlyUsername = "your bitly username"; //bit.ly username $bitApiKey = "Your bitly API key"; //bit.ly api key. $storeUrl = "www.your-store.com"; //url to the homepage of your store. $showprice = 0; // Show the product price? 0 = off, 1 = on. no quotes. $timeout = 10; //seconds to wait for twitter & bit.ly. This can be left alone. //do not edit below this line. $prodUrl = urlencode(zen_catalog_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_id)); //short url function. function shortenUrl($user, $key, $shortenUrl){ $url = 'http://api.bit.ly/v3/shorten?login=' . $user .'&apiKey='. $key . '&longUrl=' . $shortenUrl . '&format=xml'; $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT, $timeout); $data = curl_exec($ch); curl_close($ch); return $data; } //use oAuth library require_once 'twitteroauth/twitteroauth.php'; //function to shorten url $shorten = shortenUrl($bitlyUsername, $bitApiKey, $prodUrl); //start message w/ or w/out price $message = "New product available: " . $_POST['products_name'][$_SESSION['languages_id']] . '!'; if ($showprice){ $message .= ' Only $' . $products_price . '.'; } //if shorten fails use $storeUrl $bitStatus = simplexml_load_string($shorten); $http_code = $bitStatus->status_code; $status_txt = $bitStatus->status_txt; if ($http_code != 200){$shorten = $storeUrl; $biterror = "URL was not shortened for Twitter: "; $biterror .= $storeUrl . " was used instead."; $biterror .= " Reason: " . $status_txt; $messageStack->add_session($biterror, 'caution'); } else { $shorten = $bitStatus->data->url;} //finish message. $message .= ' Check it out now at ' . $shorten; //the connection to twitter API $connection = new TwitterOAuth($consumerKey, $consumerSecret, $oauthToken, $oauthTokenSecret); $connection->timeout = $timeout; $connection->connecttimeout = $timeout; //send message $tweet = $connection->post('statuses/update', array('status' => $message)); //error check if ($connection->http_code != NULL){ if ($connection->http_code != 200){ $error = "Twitter could not be updated: " . $connection->http_header["status"] . ": "; $error .= $tweet->error; $error .= "<br />To paste the code into twitter yourself use: <br />" . $message; $messageStack->add_session($error, 'error'); } else { $messageStack->add_session('Twitter Updated!', 'success'); } } else { $error = "Twitter could not be updated: Could not connect or there was nothing to do once connected.<br /> Twitter may be down or over capacity. To paste the code into twitter yourself use: <br />"; $messageStack->add_session($error, 'error'); $messageStack->add_session($message, 'caution'); } // end autoTweet 3.0 //// *END OF PRODUCT-TYPE-SPECIFIC INSERTS* //////// /////////////////////////////////////////////////////// } elseif ($action == 'update_product') { $update_sql_data = array( 'products_last_modified' => 'now()', 'master_categories_id' => ($_POST['master_category'] > 0 ? zen_db_prepare_input($_POST['master_category']) : zen_db_prepare_input($_POST['master_categories_id']))); $sql_data_array = array_merge($sql_data_array, $update_sql_data); zen_db_perform(TABLE_PRODUCTS, $sql_data_array, 'update', "products_id = '" . (int)$products_id . "'"); // reset products_price_sorter for searches etc. zen_update_products_price_sorter((int)$products_id); /////////////////////////////////////////////////////// //// INSERT PRODUCT-TYPE-SPECIFIC *UPDATES* HERE ////// //// *END OF PRODUCT-TYPE-SPECIFIC UPDATES* //////// /////////////////////////////////////////////////////// } $languages = zen_get_languages(); for ($i=0, $n=sizeof($languages); $i<$n; $i++) { $language_id = $languages[$i]['id']; $sql_data_array = array('products_name' => zen_db_prepare_input($_POST['products_name'][$language_id]), 'products_description' => zen_db_prepare_input($_POST['products_description'][$language_id]), 'products_url' => zen_db_prepare_input($_POST['products_url'][$language_id])); if ($action == 'insert_product') { $insert_sql_data = array('products_id' => $products_id, 'language_id' => $language_id); $sql_data_array = array_merge($sql_data_array, $insert_sql_data); zen_db_perform(TABLE_PRODUCTS_DESCRIPTION, $sql_data_array); } elseif ($action == 'update_product') { zen_db_perform(TABLE_PRODUCTS_DESCRIPTION, $sql_data_array, 'update', "products_id = '" . (int)$products_id . "' and language_id = '" . (int)$language_id . "'"); } } // add meta tags $languages = zen_get_languages(); for ($i=0, $n=sizeof($languages); $i<$n; $i++) { $language_id = $languages[$i]['id']; $sql_data_array = array('metatags_title' => zen_db_prepare_input($_POST['metatags_title'][$language_id]), 'metatags_keywords' => zen_db_prepare_input($_POST['metatags_keywords'][$language_id]), 'metatags_description' => zen_db_prepare_input($_POST['metatags_description'][$language_id])); if ($action == 'insert_product_meta_tags') { $insert_sql_data = array('products_id' => $products_id, 'language_id' => $language_id); $sql_data_array = array_merge($sql_data_array, $insert_sql_data); zen_db_perform(TABLE_META_TAGS_PRODUCTS_DESCRIPTION, $sql_data_array); } elseif ($action == 'update_product_meta_tags') { zen_db_perform(TABLE_META_TAGS_PRODUCTS_DESCRIPTION, $sql_data_array, 'update', "products_id = '" . (int)$products_id . "' and language_id = '" . (int)$language_id . "'"); } } // future image handler code define('IMAGE_MANAGER_HANDLER', 0); define('DIR_IMAGEMAGICK', ''); if ($new_image == 'true' and IMAGE_MANAGER_HANDLER >= 1) { $src= DIR_FS_CATALOG . DIR_WS_IMAGES . zen_get_products_image((int)$products_id); $filename_small= $src; preg_match("/.*\/(.*)\.(\w*)$/", $src, $fname); list($oiwidth, $oiheight, $oitype) = getimagesize($src); $small_width= SMALL_IMAGE_WIDTH; $small_height= SMALL_IMAGE_HEIGHT; $medium_width= MEDIUM_IMAGE_WIDTH; $medium_height= MEDIUM_IMAGE_HEIGHT; $large_width= LARGE_IMAGE_WIDTH; $large_height= LARGE_IMAGE_HEIGHT; $k = max($oiheight / $small_height, $oiwidth / $small_width); //use smallest size $small_width = round($oiwidth / $k); $small_height = round($oiheight / $k); $k = max($oiheight / $medium_height, $oiwidth / $medium_width); //use smallest size $medium_width = round($oiwidth / $k); $medium_height = round($oiheight / $k); $large_width= $oiwidth; $large_height= $oiheight; $products_image = zen_get_products_image((int)$products_id); $products_image_extension = substr($products_image, strrpos($products_image, '.')); $products_image_base = preg_replace('/'.$products_image_extension.'/', '', $products_image); $filename_medium = DIR_FS_CATALOG . DIR_WS_IMAGES . 'medium/' . $products_image_base . IMAGE_SUFFIX_MEDIUM . '.' . $fname[2]; $filename_large = DIR_FS_CATALOG . DIR_WS_IMAGES . 'large/' . $products_image_base . IMAGE_SUFFIX_LARGE . '.' . $fname[2]; // ImageMagick if (IMAGE_MANAGER_HANDLER == '1') { copy($src, $filename_large); copy($src, $filename_medium); exec(DIR_IMAGEMAGICK . "mogrify -geometry " . $large_width . " " . $filename_large); exec(DIR_IMAGEMAGICK . "mogrify -geometry " . $medium_width . " " . $filename_medium); exec(DIR_IMAGEMAGICK . "mogrify -geometry " . $small_width . " " . $filename_small); } } zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '') . (isset($_POST['search']) ? '&search=' . $_POST['search'] : '') )); } else { $messageStack->add_session(ERROR_NO_DATA_TO_SAVE, 'error'); zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '') . (isset($_POST['search']) ? '&search=' . $_POST['search'] : '') )); } -------------------------------------------------------------------------------------
21 Apr 2012, 6:25 AM
#211
webkat avatar

webkat

Zen Follower

Join Date:
Jan 2012
Location:
New England
Posts:
238
Plugin Contributions:
0

Re: AutoTweet [support]

I am having trouble... Running ZC 1.5.0 and installed the newest version of AutoTweet.. but when I make a new product I get this:

URL was not shortened for Twitter: https://www.opalessenceshop.com was used instead. Reason: INVALID_LOGIN
Twitter could not be updated: 401 Unauthorized: Could not authenticate you.
To paste the code into twitter yourself use:
New product available: Natural Vanilla Flavored Lip Balm .15oz! Only $3.07. Check it out now at https://www.opalessenceshop.com

Now, my file was not as described in the readme file:

The readme file says it will be like this:

Now edit lines 96 through 100 like so:
a. $twitUsername = your twitter user name.
b. $twitPassword = your twitter password.
c. $bitlyUsername = your bit.ly user name (available for free at https://www.bit.ly)
d. $bitApiKey = your bit.ly API Key, find it by logging in to bit.ly and clicking settings.

Mine looked like this:

Now edit lines 96 through 100 like so:
$oauthToken = "Enter oauthToken here"; //twitter app "my access" token
$oauthTokenSecret = "Enter oauthTokenSecret here"; //twitter app "my access" token secret.
$bitlyUsername = "your bit.ly user name"; //bit.ly username
$bitApiKey = "your bit.ly API Key"; //bit.ly api key.

So I'm not sure what to do... can anyone help?

21 Apr 2012, 8:17 PM
#212
webkat avatar

webkat

Zen Follower

Join Date:
Jan 2012
Location:
New England
Posts:
238
Plugin Contributions:
0

Re: AutoTweet [support]

Ok I got the thing to tweet to twitter, but it still says

URL was not shortened for Twitter: https://www.opalessenceshop.com was used instead. Reason: INVALID_LOGIN

I have reset my bit.ly API key, so I know that's right... I think my username is OpalEssenceShop... at the top of the page it says, for example, "@OpalEssenceShop Account Settings" (at https://bitly.com/a/account) so what is going wrong?

And treefrog, how did you get it to tweet on update with an option to not tweet? I'd really like that, because a lot of times I add products when I have time, ahead of when they're actually ready to sell, then make the product and go in and change the status of the product or change the quantity from 0 to 5 or whatever--and I'd like to tweet it then...

22 Apr 2012, 10:42 PM
#213
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: AutoTweet [support]

Hey folks! I added this mod earlier today and I was getting the 401 error like many of you are. I did 2 things to fix it. I'm not sure which one was the cure.

  1. I created a new app and used the new #'s it gave me for the code

  2. for some reason when I copied and pasted from the Twitter developer page, there were extra spaces after " and the beginning of the auth codes. I deleted the space.

The app works perfectly now I just wish there was a way to turn it off and on.

23 Apr 2012, 11:13 PM
#214
webkat avatar

webkat

Zen Follower

Join Date:
Jan 2012
Location:
New England
Posts:
238
Plugin Contributions:
0

Re: AutoTweet [support]

2 questions:

  1. I tried following the directions here: http://www.zen-cart.com/showthread.php?153528-AutoFacebook-Support&p=996322#post996322 but replacing stuff with "twitter" but it didn't work... in an ideal world I would have both AutoFacebook and AutoTweet at the bottom of the page and with yes/no checkboxes... could someone who knows how to code better than me (just about any 3rd grader, for example) tell me where exactly to move my AutoTweet* and AutoFacebook code to in the page, and verify/fix the checkboxes thing so that it works?

  2. More of a cosmetic thing, but when it sends a tweet with my new products, it lists their price with four decimal places. For example "$3.1200" ...is there something I can tweak to fix that? It just looks silly.

*I already have my AutoTweet code near the bottom of the page, and it tweets on add AND update, but I want to be able to turn it off if I'm making lots of small changes so I don't flood my stream. When I moved AutoFacebook to the same area, it all broke.

3 May 2012, 10:47 PM
#215
themortician4 avatar

themortician4

New Zenner

Join Date:
Jan 2012
Location:
New Jersey
Posts:
75
Plugin Contributions:
0

Re: AutoTweet [support]

I am installing the Auto-tweet mod and have a question regarding how to set up the twitter dev app. The website and callback are the 2 questions that I am uncertain how to answer. The Zencart 1.50 site url is: store.bbiclan.com, and my twitter account is @TheMortician4. What inputs should I place in these pages?

19 Jul 2012, 7:05 AM
#216
afterhour avatar

afterhour

Zen Follower

Join Date:
Dec 2007
Posts:
92
Plugin Contributions:
0

Re: AutoTweet [support]

Is anybody else experiencing problems, I havent put any new products on since April and now it doesnt seem to work, no errors that I can see, is it just me or has something changed with Bit:ly??

22 Aug 2012, 3:41 PM
#217
west_net avatar

west_net

New Zenner

Join Date:
Jul 2011
Posts:
18
Plugin Contributions:
0

Re: AutoTweet [support]

Can any one help, please?

I have battled the whole day to get the autottweet to work but am getting the same problem:
"URL was not shortened for Twitter: west-net.co.za was used instead. Reason: INVALID_LOGIN"

site: ```html
www.west-net.co.za

twitter:```html
https://twitter.com/WestNet1

What i've done so far

Reset the Twitter API
Reset the Bitly API
Deleted and reconnected the account in Bitly
Cleared history and cache
Tripple checked usernames tokens etc.

One thing i'm not sure about is curl it is enabled on my wamp but not sure how to do it on the server

Any HELP would greatly be appreciated:smile:

many thanks newbie@westnet

9 Sep 2012, 8:28 AM
#218
dochsa avatar

dochsa

New Zenner

Join Date:
Apr 2008
Location:
United Kingdom
Posts:
62
Plugin Contributions:
0

Re: AutoTweet [support]

Hi Everyone, Im hvaving the following issues:

Twitter could not be updated: 401 Unauthorized: Read-only application cannot POST
To paste the code into twitter yourself use:
New product available: Pewter Skull & Guitars Pendant! Check it out now at http://bit.ly/TDo7kX

Not sure what to do any help is appreciated. Have a great Sunday.

Donovan

10 Oct 2012, 8:52 PM
#219
enigma666666 avatar

enigma666666

Zen Follower

Join Date:
May 2010
Posts:
142
Plugin Contributions:
0

Re: AutoTweet [support]

Hi there, you need to go back to your twitter api and under the settings tab of your application, scroll down to Application type and select Read and Write. Then at the bottom, click the update button.
Now click on the Rest Keys Tab and reset your application keys.
Next go to the Details Tab, scroll down and click the "recreate my access token" button.
Afterwards copy your new consumer key & secret as well as your new access token key and secret to the update.php file and upload to server.
Add a new product and it should work then.

10 Oct 2012, 8:54 PM
#220
enigma666666 avatar

enigma666666

Zen Follower

Join Date:
May 2010
Posts:
142
Plugin Contributions:
0

Re: AutoTweet [support]

I have one little problem that I need help with please.
Currently my store's default currency is Rands, but with the auto-tweet, the prices in the tweets are displayed in $ instead of the default R.
How to fix this?