File Uploads

This topic contains 8 reply and 5 voices, and was last updated by madegood 10 years, 9 months ago
Viewing 8 Posts - 1 through 8 (of 8 total)
Author Posts
May 10, 2013 at 3:49 pm 3480
madegood Hello, I seem to be having an issue where if I upload a .jpg or really any file format, it shows up for me in the project thread but in the front-end anyone else on the project cannot see it. Any ideas?
May 10, 2013 at 5:49 pm 3488
Mahi Mahi

Users can see project(s) and inside elements ONLY if they assigned in to that project.

May 10, 2013 at 6:02 pm 3490
dalbeck dalbeck

The user is apart of the project thread and I also used the Notify User of Post check box.

May 14, 2013 at 12:46 am 3573
maurodi maurodi

Hi, is it possible to enter in the list of uploadable files the ePub format?
Thank u!

May 14, 2013 at 7:56 am 3584
Tareq Hasan Tareq Hasan

This solution should work.

May 14, 2013 at 7:28 pm 3624
maurodi maurodi

Hi
With this code the traditional media gallery of wordpress uploads epub files. But the custom field “upload file” of Wp User Frontend Pro doesn’t work

May 14, 2013 at 7:48 pm 3625
Tareq Hasan Tareq Hasan

Use this snippet to add epub support to WP User Frontend
[php]
function wpufe_epub_ext( $extensions ) {
$extensions[‘epub’] = array( ‘ext’ => ‘epub,mobi’, ‘label’ => ‘E-Pub/Mobi’);

return $extensions;
}

add_filter( ‘wpuf_allowed_extensions’, ‘wpufe_epub_ext’ );
[/php]

July 24, 2013 at 9:51 pm 6286
madegood madegood

Hi,

I’d like to upload .gpx files and am using the code posted most recently by tareq. The file uploads just fine, but when I publish the post the file is not associated with that particular post in any way. Any ideas?

Cheers

July 24, 2013 at 10:26 pm 6290
madegood madegood

Okay sorry, I worked it out. Needed to give it a meta key.

Viewing 8 Posts - 1 through 8 (of 8 total)