Can you please confirm if we can upload video's in the gallery?
Can you please confirm if we can upload video's in the gallery?
You can only link videos by using Vimeo, YouTube & Dailymotion handles. Here is a video that shows how to do that http://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.
You must log in to post.