Charlie Merland
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMovieLibrary] WPMovieLibrary-Trailers problemHi @bustel,
Unfortunately the trailer plugin is experimental and hasn’t been updated in years, you probably shouldn’t use it. Trailers are too unreliable and will be better off handled by a dedicated plugin.
Forum: Plugins
In reply to: [WPMovieLibrary] Php errorHi @misstomboy,
This is not an error with the plugin, looks like a bug with the Online Games. Are using that plugin?
Forum: Plugins
In reply to: [WPMovieLibrary] error searching for movie dataHi @stuthemonkey,
Thanks for the investigation work! I can’t reproduce this anywhere on my test installs, which complicates thing a bit; could you add a
console.log( response );in yourwpmoly-editor-meta.jsfile, right before line 212? That way we may have an insight at what going wrong with the response.Regards,
Charlie
Forum: Plugins
In reply to: [WPMovieLibrary] Auto generate trailers for bulk import moviesSorry, I don’t really have a solution to this… Like I said, the trailer plugin was an experiment, that proved to be highly unreliable; cronjobs or any other development relying on it to work won’t be suitable for public release and therefore require freelance work, which I’m reluctant to offer because of the aforementioned unreliability of trailers :-/
Forum: Plugins
In reply to: [WPMovieLibrary] Movie Posters not being importedHi @ginobrugman,
Are you using your own TMDb API key? There seems to be some erratic responses from the API with the internal key, probably too many people using it at the same time.
Forum: Plugins
In reply to: [WPMovieLibrary] Bulk import to DraftHi @ginobrugman,
The plugin itself does not allow that, but you could do this using a small piece of code to intercept the change in post status between import and publishing.
You marked this as solved, though, so I take it you’re not interested in this anymore?
Forum: Plugins
In reply to: [WPMovieLibrary] Auto generate trailers for bulk import moviesYou can’t, unfortunately. The plugin itself does not support trailers, and the experimental trailer plugin I built years ago is completely obsolete.
Trailers in general are not reliable, as videos can be removed from YouTube or other hosts without the API being updated; a reliable Trailers support would require a dedicated trailer API, which means more work than I can currently handle.
Forum: Plugins
In reply to: [WPMovieLibrary] Bulk import of metadata from draftsHi @sulfurito,
There’s no direct way to achieve this, but you can do it the old way by updating the posts’
post_statusrow from ‘draft’ to ‘import-draft’ directly in the database. If you’re familiar with MySQL you can use a tool like PhpMyAdmin to get a list of all your movies’ drafts and update their status:UPDATE wp_posts SET post_status = 'import-draft' WHERE post_type = 'movie' AND post_status = 'draft';Provided that your tables are prefixed with ‘wp_’. It goes without saying, but please do a complete backup of your database before anything so you can restore it later in case you break something.
- This reply was modified 9 years, 4 months ago by Charlie Merland.
Forum: Plugins
In reply to: [WPMovieLibrary] Adding AdvertisementsOh, OK. It’s a premium theme so I can’t test it myself, but browse the theme directory, you should find some likely-named file, like
content-single.php. You can also try to contact the theme’s developer, he should be able to guide you through finding and editing that file.Forum: Plugins
In reply to: [WPMovieLibrary] Serie TvHi @naftalina,
The plugin is focused on movies and currently does not support TV series. It’s been a long requested feature though, so it will definitely be supported at some point!
Forum: Plugins
In reply to: [WPMovieLibrary] Autor/Drehbuch-Autor Meta-DataThe plugin historically does not collect all data available on TMDb, only the most commonly used ones; regarding writing, only ‘writer’ and ‘author’ fields are collected, maybe it explains why you’re not seeing some names.
Forum: Plugins
In reply to: [WPMovieLibrary] Title link on IMDB headboxHi @polcsy,
Simply wrap the title with a link should do the trick:
<h2 class="wpmoly headbox imdb movie meta title"><a href="<?php echo get_permalink( $id ); ?>"><?php echo $meta['title']; ?></a><?php if ( ! empty( $meta['year'] ) ) : ?> <span class="wpmoly headbox imdb movie meta year">(<?php echo $meta['year']; ?>)</span><?php endif; ?></h2>Forum: Plugins
In reply to: [WPMovieLibrary] permalinks issueHi @akki23,
The ‘movies’ slug is automatically added by WordPress as the plugin uses a custom post type to distinguish movies from regular contents. There’s no direct way of disabling this, but @mattblank solved this few months ago using a specific plugin. You may want to try that way!
- This reply was modified 9 years, 4 months ago by Charlie Merland.
- This reply was modified 9 years, 4 months ago by Charlie Merland.
Forum: Plugins
In reply to: [WPMovieLibrary] Add to IFTTTHi (again) @ginobrugman,
I’m not familiar with IFTTT, but it seems it does not support custom post types. Depending on what you’re trying to achieve there may be a way around, like using the IFTTT Post Formats & Post Types plugin, but I’ll need some more details to help you on that part.
Forum: Plugins
In reply to: [WPMovieLibrary] Adding AdvertisementsHi @ginobrugman,
The plugin uses a ‘movie’ custom post type, so you just have to copy your theme’s
single.phpfile tosingle-movie.phpand add your HTML where you need it!