Charlie Merland
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMovieLibrary] An awesome Theme for WPMovieLibraryHi Rhythmical,
No, I don’t have anything like that. I spent a couple days few months ago trying to build a theme to go along with the plugin but never got remotely enough time to make something out of it; building great themes is as time-consuming a job as building plugins!
One thing though, I’m working on an additional that will add the possibility to have a grid-like view of movies, and I’m thinking about adding a lightbox-like effect, so stay tuned to see how it goes!
Forum: Plugins
In reply to: [WPMovieLibrary] Unique identifierThat’s because it’s not an issue with the plugin itself, nor a feature it should provide considering that it can be done using basic WordPress tools.
Like I said the easiest way to do what you want is to use custom fields and adapt your theme to it, or build a custom Shortcode. You can add custom fields in the movie editor using the relevant metabox: http://pix.caercam.org/upload/original/1410339344.png Then you can get that value using the get_post_meta() function add create a shortcode to show it, or do it directly in your theme using the the_meta() function.
I can’t do much more right now, but at least this should get you started!
Forum: Plugins
In reply to: [WPMovieLibrary] Error message on dashboardMarking as solved.
Forum: Plugins
In reply to: [WPMovieLibrary] Unique identifierMarking as solved.
Forum: Plugins
In reply to: [WPMovieLibrary] Posts not ShowingMarking as solved.
Forum: Plugins
In reply to: [WPMovieLibrary] Custom home page for moviesMarking as solved.
Forum: Plugins
In reply to: [WPMovieLibrary] Page for actorMarking as solved.
Forum: Plugins
In reply to: [WPMovieLibrary] Movie Library Widgets not showing up on pageMarking as solved.
Forum: Plugins
In reply to: [WPMovieLibrary] Order by release date and filter by ratingThat’s right. Currently movies metadata are stored in a bundle along with each movie, which prevents any real search operation; version 1.3 will use separate custom fields for each meta.
The original design was meant to limit the number of fields as it can grow up very, very quickly (about 20 custom fields per movie means 10,000 entries in the database for a 500 movies library), but compared to the possibility to filter movies by various criteria it was not that good a choice after all…
Forum: Plugins
In reply to: [WPMovieLibrary] Order by release date and filter by ratingHi Andre,
Sadly searching/filtering movies is not possible for now; that’s a huge lack and I plan to fix it with version 1.3 which I hope to release before the end of the month. It will then be possible to filter movies by any criteria (release date and rating, but also status, media, director, screenwriter, runtime, countries…), and I’d like movies to be include in the WordPress standard search results too.
Moreover, I’m planning to build an extension to the plugin to provide advanced search, but that may take some time depending on my schedule for the next months. Stay tuned 😉
Forum: Plugins
In reply to: [WPMovieLibrary] PersonnalisationPour les idées d’améliorations c’est plutôt GitBHub qui est indiqué effectivement 😉 Cela dit, bonne idée effectivement, j’ajoute ça pour la version 1.3 !
Forum: Plugins
In reply to: [WPMovieLibrary] PersonnalisationJ’ai remarqué ça oui, problème de thème : la balise
<title></title>est vide, donc le navigateur se rabat sur l’URL de la page. Je ne sais pas trop pourquoi ça se produit o_oForum: Plugins
In reply to: [WPMovieLibrary] PersonnalisationAu temps pour moi, il y a une erreur dans le thème, le second bloc est donc inutile. L’idée était de masquer les métadonnées de l’article, la date, l’auteur, les commentaires, etc. Excès de zèle 😛
Pour masquer le titre mais conserver la séparation :
body.archive.tax-genre .hentry.movie .post_ttl, body.archive.tax-actor .hentry.movie .post_ttl, body.archive.tax-collection .hentry.movie .post_ttl { display: none; }Forum: Plugins
In reply to: [WPMovieLibrary] PersonnalisationBonjour zack06007,
Là c’est différent, c’est directement au niveau du thème que cela se joue. Deux options : utiliser un modèle dédié pour les archives, ce qui veut dire ajouter trois fichiers
archive-collection.php,archive-genre.phpetarchive-actor.phpdesquels tu supprimes les parties concernées, à savoir le bloc type contenant le titre qui devrait ressembler à ça :<h2><a href="..." title="Permalink to ..." class="post_ttl">...</a></h2>Ou alors plus simplement le masquer via un ajout à ton fichier CSS :
body.archive.tax-genre .hentry.movie > h2, body.archive.tax-actor .hentry.movie > h2, body.archive.tax-collection .hentry.movie > h2 { display: none; }Note : du coup les meta s’affichent quand même, ce qui peut faire un peu bizarre, pour les masquer :
body.archive.tax-genre .hentry.movie .post-meta, body.archive.tax-actor .hentry.movie .post-meta, body.archive.tax-collection .hentry.movie .post-meta { display: none; }Forum: Plugins
In reply to: [WPMovieLibrary] Movie Library Widgets not showing up on pageMy apologies to that co-worker!
For the record if anyone is having this issue with Multinews theme — to add support for movies simply edit line 54 of the theme’s
framework/metaboxes/themes.phpfile to:'pages' => array( 'post', 'page', 'movie' ),I sent a notice the theme developer to add a filter there, a cleaner solution in my opinion.