Charlie Merland
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMovieLibrary] Show media type in imdb formatted outputThe plugin uses a custom icon font, so there’s no easy way to add your own, unless you edit the font itselfβ¦ That being said, I’ve been thinking of ways to make it easier for users to have their own custom icons (see https://github.com/wpmovielibrary/wpmovielibrary/issues/240) though I’m not sure as to how it would be done. Furthermore, if your missing icons are kind of standard, you can always share them and I’ll see if they can be added to the font π
Forum: Plugins
In reply to: [WPMovieLibrary] Show media type in imdb formatted outputPro tip: you can override most of the plugin’s templates by creating a
wpmovielibrarydirectory in your theme’s folder and replacting the template folder structure.In your case, create a
wpmovielibrary/movies/movie-imdb-headbox.phpfile in your theme’s folder and use this gist’s content: https://gist.github.com/CaerCam/41fe67f7386513b09148 It will show a headbox with media display before certification. You can edit this template in any way you want πForum: Plugins
In reply to: [WPMovieLibrary] Display current media type as page titleThe breadcrumb part is more of a theme issue as the plugin has no way to control this; the page title in another thing, I’ll see how it can be handled properly. Thanks!
Forum: Plugins
In reply to: [WPMovieLibrary] Changes to row and column numbers has no effectHi BlackApps,
Most of the sorting options were deactivated in version 2.1.4 as they caused too many issues; for version 2.1.5 I’m rebuilding the grid to rely on JavaScript for sorting and pagination in a better way. Sorry for the inconvenience!
Forum: Plugins
In reply to: [WPMovieLibrary] Taxonomy ImagesHi johnnydays,
No, not yet. That’s planned as part of a better actors/people handing additional plugin, but that’s a long shot as it will require some major changes in the main plugin. We’re working on it, but it takes time.
Forum: Plugins
In reply to: [WPMovieLibrary] Multiple Authors?Hi Bart,
As far as I know there’s no built-in way to have multiple post authors for the same post in WordPress; since movies are nothing more than custom WordPress post types there is no direct way to achieve this.
You may find some plugins doing this in various ways, though, but I don’t know to which extend they’ll be useful to you.
Forum: Plugins
In reply to: [WPMovieLibrary] Adding Movie_Rating Stars to TemplateHi Bart,
Showing the stars is tricky π Both ways should work:
echo apply_filters( 'wpmoly_movie_rating_stars', wpmoly_get_movie_rating( get_the_ID() ) ); echo do_shortcode( '[movie_rating id=' . get_the_ID() . ' stars=true]' );I’ll add a
wpmoly_get_movie_rating_stars()function in a future release.Forum: Plugins
In reply to: [WPMovieLibrary] Movie posters not savingGreat! What theme are you using, for the record?
Forum: Plugins
In reply to: [WPMovieLibrary] Movie posters not savingHi confuzzledduck,
Can you confirm the poster is actually downloaded but not set as a featured image?
Additionally, do you have any plugin installed that could caused this? I seem to remember a likely issue with a plugin interfering with thumbnails that prevented poster from being used correctly.
Forum: Plugins
In reply to: [WPMovieLibrary] Question about Movie GridWordPress supports basic sorting through URLs, so you can have something like this:
?orderby=post_title&order=ASCto order by title ascendingly. It’s a bit limited, but it works πForum: Plugins
In reply to: [WPMovieLibrary] 404 after setting custom permalinkHi joaocast,
Do you have any other plugin activated that may interfere with the permalinks?
Forum: Plugins
In reply to: [WPMovieLibrary] i nned some help with postel image pleaseeHi,
The poster size is automatically smoothed in JavaScript to show regular grids and avoid discontinuous rows/columns; you could force the height in CSS:
#wpmoly-movie-grid > .movie .wp-post-image { height: 225px !important; }But it could have some unwanted side-effects. Depends on your theme, too…
Forum: Plugins
In reply to: [WPMovieLibrary] Cannot Customize wp while wpmovielibrary plugin is activeYes, I noticed this too. No, the settings are not supposed to be accessible in the customizer; since the plugin and the cutomizer use the WordPress Settings API to store settings, the plugin settings seem to be loaded by the customizer and then quickly hidden by it as they have no use here. Weird π
Forum: Plugins
In reply to: [WPMovieLibrary] Cannot Customize wp while wpmovielibrary plugin is activeHi jdpower,
Stupid mistake on my part. It will be fixed in version 2.1.4.1 which should be released today!
Forum: Plugins
In reply to: [WPMovieLibrary] movie_rating : display starts instead numeric valueHi Looic,
Sure there’s a way: just add
stars="true"to your shortcode and you will get stars instead of numbers.The documentation on the official website is completely outdated, I’ll try to update it when I can.