Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter alieneila

    (@alieneila)

    Also… when the feed provides the author and a link to the original feed post, is there any way to include those?

    Plugin Author JoomlArt

    (@joomlart)

    Hi Alieneila, Thank you for use our plugin. We have developing this plugin so maybe still error, can you help us by show your site with this bug please? Also about original feed post link and source text, we have include this in meta field of post, so you can use get_post_meta in your template file and you can put it any where you want.

    Thank you Alieneila.

    Thread Starter alieneila

    (@alieneila)

    Actually, I’ve found the issue as far as the duplicates. I believe it’s caused by the dwsf_add_attachments function. You’re renaming the image using..

    $image_name = time().'.'.$ext;

    But that can be a problem when the script is running fast enough so that more than one image gets the same name. How I solved it was by adding the post id as so…

    $image_name = $post_id.'-'.time().'.'.$ext;

    Which seems to have solved it. =)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: DW Social Feed] Incorrect Images’ is closed to new replies.