Charlie Merland
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMovieLibrary] How can i get the IMDB rating?Long story short: you can’t. The main reason is that WPMovieLibrary simply does not use IMDb, it uses TMDb (http://themoviedb.org) which is a rather different API.
Forum: Plugins
In reply to: [WPMovieLibrary] How to add TV seriesThat’s because WPMovieLibrary does not support TV show, it really is a movie library plugin. Adding support for series is a recurring request, and it will most likely happen at some point, but not quite soon due to the amount of things to be done on the movie part.
Forum: Plugins
In reply to: [WPMovieLibrary] Adding Movie_Rating Stars to TemplateNo problem 😉
Forum: Plugins
In reply to: [WPMovieLibrary] Ex and Import of DataThat’s a planned feature, actually. Not for soon, but still planned 🙂
That being said, you may want to take a look at export plugins, there’s a few out there that should allow you to easily export/import your movies. WP Ultimate CSV Importer would be a good start, but that’s not the only one.
Forum: Plugins
In reply to: [WPMovieLibrary] Archive page Movies sorting orderHi,
Most a the grid sorting options have been deactivated in the latest version as they caused too many issues, that may be your issue; they’ll be back in version 2.1.5 with an updated grid, though!
Forum: Plugins
In reply to: [WPMovieLibrary] Multiple Authors?Ok, interesting! I’ll take a look at that. Thanks for reporting!
Forum: Plugins
In reply to: [WPMovieLibrary] Year MovieIt depends a lot on your theme, but yes, generally speaking single movies should be handled by
single.php. The movies page is trickier, can bepage.phpif you’re using a custom archive page from the plugin, orarchive.php; what theme are you using?Forum: Plugins
In reply to: [WPMovieLibrary] Probleme pour enlever l'image du dessusDifficile à dire sans avoir les fichiers sous les yeux ; il doit y avoir quelque part un bloc avec une fonction comme
the_post_thumbnail()ouget_the_post_thumbnail()…Forum: Plugins
In reply to: [WPMovieLibrary] Again: German Film TitlesHi kjoussen,
TMDb supports quite a few languages indeed, including German. You should be able to select which language you want to use when importing a movie manually, and you have the possibility in the API section of the plugin’s Settings panel to chose which language use for all movies; default is English. Simply set it to German 🙂
In a future release I’ll add an option to set a default language to use if some meta seem to be missing.
Forum: Plugins
In reply to: [WPMovieLibrary] Probleme pour enlever l'image du dessusSi ! Désolé, beaucoup de boulot en ce moment, je suis moins actif sur ce plugin malheureusement.
Deux solutions : masquer le bloc en CSS, ce qui veut dire qu’il se chargera quand même pour rien ; ou supprimer le bloc concerné dans le thème. Mais SmartMag étant un thème premium je n’ai aucun moyen de savoir quel fichier est concerné… En toute logique ce doit être le fichier
single.php, possiblement le fichiercontent-?.phpcorrespondant.Si vous ne trouvez pas, poursuivez par mail : support[at]wpmovielibrary[dot]com, ça sera plus simple !
Forum: Plugins
In reply to: [WPMovieLibrary] Year MovieYes, you can use the
[movie_release_date]Shortcode for this, with theformatparameter:[movie_release_date format="Y"]It will get you the release year 🙂Forum: Plugins
In reply to: [WPMovieLibrary] Stop fetching Plot and Genres??Try adding this to your theme’s
functions.phpfile and import a new movie to test:function remove_plotgenres( $meta ) { $meta['genres'] = array(); $meta['overview'] = null; return $meta; } add_filter( 'wpmoly_filter_meta_data', 'remove_plotgenres', 9 );Forum: Plugins
In reply to: [WPMovieLibrary] Multiple Authors?There’s an option in your Settings panel under General > Movies > Movies in search results, set off by default, to allow movies to show in search result. Maybe you didn’t activate this?
Forum: Plugins
In reply to: [WPMovieLibrary] Adding Movie_Rating Stars to TemplateThe plugin uses a custom icon font, so you can style stars in simple CSS by changing the font-size and color. It might be a bit tricky if you want to do this only on specific parts of your website, but it’s totally doable 🙂
For example to have bigger, red full stars everywhere, add this to your theme’s
style.cssfile:.wpmolicon.icon-star-filled { color: #f20; font-size: 40px; height: 40px; line-height: 40px; width: 40px; }Forum: Plugins
In reply to: [WPMovieLibrary] Display current media type as page titleI know what you mean, and that’s not a bad idea. There are a lot of inconsistencies with the way movies are currently displayed, hopefully with the new JS-powered grid we can have a more coherent frontend 🙂