Charlie Merland
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMovieLibrary] Featured image, posters, trailers and shortcakesNo link on director generally means there’s no matching collection: http://onyanserat.derne.se/collections/ It’s planned to enhance that behavior, though. I’m not sure of the best way yet, but I’ll a probably add a fallback to show a meta link if no collection matches the director.
The missing writer link is a bit more weird, I’ll have to run some tests.
Forum: Plugins
In reply to: [WPMovieLibrary] How can I use the WordPress archive function?Oh, ok, I didn’t get that you meant a release-date-based calendar. So no, unfortunately, to the best of my knowledge such a Widget does not exists.
Sounds like a lot of fun, though, that’s something I’ll try to build on the side when I have some spare time!
Forum: Plugins
In reply to: [WPMovieLibrary] Featured image, posters, trailers and shortcakesInstead of echoing
$meta['photography'](which does not exist at that point), trying this:echo apply_filters( 'wpmoly_format_movie_photography', wpmoly_get_movie_meta( null, 'photography' ) );The actors handling looks a bit weird, I’m not quite sure of what I tried to do with that part… I’ll need a take a deeper look at it. That’s why it’s marked as experimental 😀
By the way, sorry about the delay in answers. Lot of work these days that keep me pretty busy to handle support… Hopefully it will get better in a few weeks.
Forum: Plugins
In reply to: [WPMovieLibrary] Editing information of posts in Allocine-ThemeHi mrkapital,
Note that template files can be overridden; you can simply copy the plugin’s
overview.phpfile into your theme’s folder and that file will be used instead. Just create awpmovielibrary/views/movies/headbox-allocine/tabs/folder in your theme’s folder, copyoverview.phpinto that folder and edit it your way. This will avoid your modifications to be erased on each plugin update.As for the translation issue, simple enough: the German translation is just out of date. I don’t speak German so I’m not the one handling that part, there’s a contributor working on it. Should be better with the next update!
Forum: Plugins
In reply to: [WPMovieLibrary] Make the spoken language non-clickableHi there Alina,
There’s no internal way to do this, but you can achieve the same result by adding this code to your theme’s
functions.phpfile:function wpmoly_strip_language_links( $data ) { return strip_tags( $data ); } add_filter( 'wpmoly_format_movie_spoken_languages', 'wpmoly_strip_language_links', 20, 1 );This will simply strip the HTML tags on the spoken languages lists :).
Forum: Plugins
In reply to: [WPMovieLibrary] Casting Images are missingTechnically they’re not missing: they’ve just never been there! The plugin does not support actors (or people in general) for now, though it’s a planned feature. That’s the main reason why the IMDb and Allociné headbox styles are marked as experimental: they still lack some major features.
Forum: Plugins
In reply to: [WPMovieLibrary] How can I use the WordPress archive function?Hi Kevinc4m,
As far as I know the default Calendar Widget does not support custom post types, and there’s no way to change that. Pippin Williamson made a good plugin for this few years ago, though I’m not sure it’s up to date: https://pippinsplugins.com/custom-post-type-calendar-widget/
Forum: Plugins
In reply to: [WPMovieLibrary] Probleme pour enlever l'image du dessusProblème de cache ? Je viens de tester le code ci-dessus, cela semble fonctionner comme prévu.
Forum: Plugins
In reply to: [WPMovieLibrary] Featured image, posters, trailers and shortcakesHi lillprinsen and Joe Deagnon,
1. For now, not really: the plugin can only import one poster at a time (something that will be fix in future versions) and use that poster as featured image, so in any case you will have to import the poster and then update the movie to use another image as featured image. With version 2.2 it will be possible to import multiple posters directly when importing metadata, and import custom images to use like posters or images.
2. Not possible. As you amended your question, you can override the
overview.phpfile but not theclass-wpmoly-headbox-allocine.phpfile; that’s not very elegant but you can add a<?php echo do_shortcode( '[movie_trailer]' ); ?>wherever you want in the template file to show the trailer. That being said, keep in mind that the Trailers plugin is an experimental one that still needs a lot of work.3. Not really, because the plugin uses icons and not images, meaning you would have to edit the plugin’s icon font; but you can always hack you way through by overriding the stars icons CSS to show images instead, it may just be a little tricky. I plan to make it possible to use external icons/images in a future version.
@joe Deagnon: in the plugin’s Settings panel you can chose where the data should appear, before or after the post content. You will find this under Appearance > Headbox > Headbox Position.
Forum: Plugins
In reply to: [WPMovieLibrary] CSS is not enabled?Not sure I understand what you’re asking… Do you want to remove all CSS or do you mean to add your own?
Forum: Plugins
In reply to: [WPMovieLibrary] Probleme pour enlever l'image du dessusÀ tester, dans le fichier
content.phporiginal du thème, remplacer<?php else: ?>par<?php elseif('movie' != get_post_type()): ?>. Cela devrait ne plus afficher l’image à la une pour les films.Forum: Plugins
In reply to: [WPMovieLibrary] language wont change to wordpress languageThe .mo file should be name
wpmovielibrary-ar.moand be accessible in reading, make sure that’s the case. I just installed the Arabic language pack on my test installs and tested with a dummy .mo plugin file, seems to work.I don’t know much about Loco, but you may want to take a look at Poedit: http://poedit.net too. It’s a pretty good software to translate WordPress elements 🙂
Forum: Plugins
In reply to: [WPMovieLibrary] Collection not displaying on PageThe
movie_gridindeed has acollectionparameter that you can use:[movie_grid collection="My Collection"]should do it 🙂Forum: Plugins
In reply to: [WPMovieLibrary] Probleme pour enlever l'image du dessusBien reçu, je regarde ça ce matin !
Forum: Plugins
In reply to: [WPMovieLibrary] Problem with archives menuStrangely enough, URLs work, so there’s definitely something weird with the menu: http://www.leffafriikit.fi/leffat/grid/A/4:6/rating/ASC/
I’ll take a look at it, thanks for reporting!