Re: AutoFacebook [Support]
Hi Folks,
Just installed version 2 on http://www.kiwisouvenirs.com linked to facebook group http://www.facebook.com/pages/New-Ze...7449840?ref=mf
The installation was straight forward and much easier than version 1.
Big THANK YOU to Jamie for providing us non programmers with a great marketing tool.
Paul
Re: AutoFacebook [Support]
Quote:
Originally Posted by
jamielife
hello,
autoFacebook 2.0 is now available! :clap:
This should fix the API Error Code: 100 issue a lot of people are having.
And hopefully a lot of other stuff as well.
It will also now give you Zen-Cart style messages letting you know what went wrong or if it was a success when you add a product.
it's been uploaded to the contirbutions section but for those of you who don't want to wait it's available at
http://htmyell.com/autofacebook-2-0/
As always I will try my best to support this via this thread and my site.
Let me know what you think,
Jamie
Jamie thank you for updating the module works great except one thing. I can not get it to pull the item description for some reason. It will just post the item name, price, picture and link but no description. Any help would be appreciated. Thank you.
Re: AutoFacebook [Support]
Quote:
Originally Posted by
countrycharm
Jamie thank you for updating the module works great except one thing. I can not get it to pull the item description for some reason. It will just post the item name, price, picture and link but no description. Any help would be appreciated. Thank you.
Hmmm, try changing line 104 to:
PHP Code:
$prod_description = implode(" ", $_POST['products_description']);
Re: AutoFacebook [Support]
Quote:
Originally Posted by
jamielife
Hmmm, try changing line 104 to:
PHP Code:
$prod_description = implode(" ", $_POST['products_description']);
Hi Jamielife that didn't work either. You can see what i'm talking about here. Thank you again
Re: AutoFacebook [Support]
Quote:
Originally Posted by
countrycharm
Hi Jamielife that didn't work either. You can see what i'm talking about
here. Thank you again
Ok how bout just:
PHP Code:
$prod_description = $product_description[1];
or
PHP Code:
$prod_description = $_POST['products_description'][1];
Re: AutoFacebook [Support]
Feature Request - Is it possible to somehow limit how many post per day? We literarily add 100s of products if not 1000s to our site on a weekly basis. Updating our Facebook page with every new product will drive our fans crazy and definitely will pass as a spam.
Thanks!
Re: AutoFacebook [Support]
Quote:
Originally Posted by
BlessIsaacola
Feature Request - Is it possible to somehow limit how many post per day? We literarily add 100s of products if not 1000s to our site on a weekly basis. Updating our Facebook page with every new product will drive our fans crazy and definitely will pass as a spam.
Thanks!
It is possible i'll look into it for the next release. Good idea.
Re: AutoFacebook [Support]
Quote:
Originally Posted by
jamielife
Ok how bout just:
PHP Code:
$prod_description = $product_description[1];
or
PHP Code:
$prod_description = $_POST['products_description'][1];
Hi jamielife thank you for the help. I tried both the other codes still nothing. I have racked my brain on this but still unsuccessful.
Re: AutoFacebook [Support]
Quote:
Originally Posted by
countrycharm
Hi jamielife thank you for the help. I tried both the other codes still nothing. I have racked my brain on this but still unsuccessful.
Just about all those work for me.
Maybe try adding
PHP Code:
echo "<pre>";
var_dump($_POST['products_description']);
exit;
just before
somewhere around line 90-ish
let me know what it says
Re: AutoFacebook [Support]
Quote:
Originally Posted by
jamielife
Just about all those work for me.
Maybe try adding
PHP Code:
echo "<pre>";
var_dump($_POST['products_description']);
exit;
just before
somewhere around line 90-ish
let me know what it says
getting close, but the product will not insert now. It shows this when trying to insert product.
Quote:
array(1) {
[1]=>
string(499) "
[FONT=\"VERDANA,]Stylish serving is a snap with this country themed Lazy Susan! Jaunty rooster motif brightens any gathering with down home charm; smoothly rolling turn table gives guests fingertip access to their favorite treats. [/FONT][FONT=\"VERDANA,]Weight 4.6 lbs. Tempered glass and stainless steel. 14" diameter x 1" high.[/FONT]
"
}