Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author kobra12

    (@kobra12)

    You can only link videos by using Vimeo, YouTube & Dailymotion handles. Here is a video that shows how to do that https://www.thechoppr.com/2012/10/04/fmg-how-to-add-different-media-to-your-gallery/

    Just downloaded the plugin and when uploading videos it was confirming it was uploading and not adding to database. Had a little debug and it appears on line 832 in fixedly.php the insert statement is missing an order_id insert. Fixed by changing to:

    $wpdb->insert(FIXEDLY_MEDIA_DB_TABLE,
    array(“title” => $title_santzd,
    “link” => $link_santzd,
    “description” => $description_santzd,
    “screenshot” => $screenshot_santzd,
    “type” => $type_santzd,
    “status” => “visible”,
    “timestamp” => current_time(“mysql”),
    “gallery_id” => $gallery_id_santzd,
    “order_id” => 0));
    }

    Just thought I would let you know as the order column did not have a default value so the data would not insert.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Fixedly Media Gallery] Upload Video’ is closed to new replies.