David Simon

Results 4 comments of David Simon

Are there any plans to move to v3? That seems to be the only non-hacky solution to this.

Thanks @hartzis! By the way, I have just updated my current version 1.0.0 to 1.0.5 and issue has disappeared.

Same problem here too. I changed the SKU number of a product which was already in Facebook catalogue. Then the product got synced twice because of the different SKU numbers....

@mrpeo Your problem can be resolved by adding the `before` method callback, like so: ``` js before: function(text) { return text .split("'").join('') .split('!').join('') .split('(').join('') .split(')').join(''); } ``` This is a...