nirus
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Kletterpartner-Suche] entry not visiblehmm… i think its done
Forum: Plugins
In reply to: [Kletterpartner-Suche] entry not visibleHmm…It looks like the shortcode is not activated.
Is the plugin activated?Forum: Plugins
In reply to: [Kletterpartner-Suche] activate linkOh… i’m so sorry about this little mistake.
This is now fixed in version 2.4.2Forum: Developing with WordPress
In reply to: dynamic change of the upload folderHey,
thanks for this solution.I see, I forgot to write that I pass the new path without $ _POST,
but determine it via a mysql query.is it possible to pass the new path into the function via a parameter?
/CUSTOM –> $newPath
an example:
function changeUploadFolder( $upload ) { $upload['subdir'] = '/CUSTOM' . $upload['subdir']; $upload['path'] = $upload['basedir'] . $upload['subdir']; $upload['url'] = $upload['baseurl'] . $upload['subdir']; return $upload; } $newPath = $getNewFolder->show_newFolder() . '/' . $getNewSubFolder->show_NewSubFolder(); add_filter('upload_dir', 'changeUploadFolder'); ... //here the file is uploaded with the new dynamic path ... remove_filter('upload_dir', 'changeUploadFolder');
Viewing 4 replies - 1 through 4 (of 4 total)