Quote Originally Posted by jamielife View Post
1. If you're using autoTweet3, when bitly fails it will automatically use your the real link instead. Check your bitly info, i've never heard of it failing. If you're using another mod that alters your URLs autoTweet wont work with those. If none of that works, then the answer is No, there is no easy way to do this.
I logged into bitly and reset the bit.ly api key and put the new one in the file and that's working great now
Quote Originally Posted by jamielife View Post
2.Yes, on line 122 of update_product.php you should see
PHP Code:
if ($showprice){ $message .=  ' Only $' $products_price '.'; } 
Just change the 'Only $' to: 'Only £' However, I get conflicting reports on the pound sign working so if it doesnt show for you I would either make it say 'Only ' which will make it read something like: 'new product only 9.99'
or
You can spell out pounds so that it would look something like 'new product only 9.99 pounds' or change the word pounds to 'GBP' or whatever you like by using:
PHP Code:
if ($showprice){ $message .=  ' Only ' $products_price ' pounds.'; } 
using the £ sign gives this error:

Twitter could not be updated: 400 Bad Request: Invalid Unicode value in one or more parameters
To paste the code into twitter yourself use:

and with either having it as just 'only' and/or adding GBP it adds 00 to the end of price so it gets displayed as only 9.9900. or 9.9900GBP. so think I'll just disable the price part and not use it :)

Quote Originally Posted by jamielife View Post

3. Yes, move all the code from lines 90 through 157 (where you see the beginning and end of autoTweet) to line 176. This will tweet only when a product is updated (note: hasn't been fully tested but I have heard from the people who have tried it that it works.)
worked a treat, thanks for your time