Quote Originally Posted by Badvoc View Post
great module.

problems for me the url doesn't get shortened and just posts the store home URL.

Can I easily change it to post the real link to the item rather than trying to shorten it?

Can I change the price from US$ to UK£

and finally is there anyway I can make it tweet a product that isn't new? most of my stock is added by CSV file so I don't actually create a new product, if it tweeted everytime I updated a product that would do as I could quickly edit each product and not actually change anything?

Am I a pain? - well yes probably
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.

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.'; } 
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.)

4. Yes, haha jk.

Hope that helps