Charlie Merland
Forum Replies Created
-
Hi jordiwordpress,
These are actually new parameters for the
[movie_grid]Shortcode, for instance[movie_grid collection="Christopher Nolan"]or[movie_grid genre="science-fiction"]🙂Forum: Plugins
In reply to: [WPMovieLibrary] Problem Importing DataHi Iktato,
Sorry to hear that; it most likely is a compatibility issue with a theme or a plugin. Could you detail you theme and the plugins you have running?
Forum: Plugins
In reply to: [WPMovieLibrary] RankArf, désolé, ça m’était sorti de la tête ! Tu peux ajouter ceci à ton CSS:
.wpmolicon.icon-star-filled:before { content: "\e674"; } .wpmolicon.icon-star-empty:before { content: "\e675"; } .wpmolicon.icon-star-half:before { content: "\e676"; }Cela remplacera les icônes en étoile par une statuette 🙂 Il faudra peut-être ajuster la taille, cela dit, ça dépend de ton thème.
Forum: Plugins
In reply to: [WPMovieLibrary] Movie Metadata with links in PHP (Shortcode)Great! Glad you got it working the way you want 🙂
Forum: Plugins
In reply to: [WPMovieLibrary] Movie Metadata with links in PHP (Shortcode)Hi ArdiArtani,
You’re right, as mentioned here you can add links to meta:
<?php $director = wpmoly_get_movie_meta( get_the_ID(), 'director' ); $director = apply_filters( 'wpmoly_format_movie_director', $director ); echo $director; ?>There’s also a movie trailer shortcode (
[movie_trailer]), provided that you installed the Trailers extension (which is still experimental, by the way).Forum: Plugins
In reply to: [WPMovieLibrary] Link several posts with a movie entryHi Looic,
There’s nothing in the plugin specifically built for this purpose, but you could achieve something very likely by creating a shortcode or a template that would show the regular posts tagged in reference to a movie. Let’s say if have an ‘Interstellar’ movie and a bunch of news about it, you would tag all these news with the tag ‘Interstellar’ and build a small routine to show this posts into the movie’s page. You could even use a custom taxonomy to avoid confusion with regular post tags.
That’s pretty straightforward I think, and I like the idea, so let me know if you need anything 🙂
Forum: Plugins
In reply to: [WPMovieLibrary] Text before movie archive (menu)Not possible right now, but I’ll this as an option for the next version!
Forum: Plugins
In reply to: [WPMovieLibrary] It is possible grid by categoryOk, got it. The
numberparameter is not correctly handled (conflicts widthrowsandcolumns). There has be some changes done to the grid, I’ll add this one to the list!Forum: Plugins
In reply to: [WPMovieLibrary] add contentAnd that’s a theme question, which means you will have to edit your theme. From what I saw of the FilmPlus theme, you’ll need to modify the
theloop.phpfile to add your banner/link wherever you want. Use this syntax to limit this to movies only:<?php if ( 'movie' == get_post_type() ) : ?> <div id="your-banner">Hello World!</div> <?php endif; ?>Forum: Plugins
In reply to: [WPMovieLibrary] It is possible grid by categoryWell, that’s the way the
movie_gridShortcode currently works:[movie_grid menu="false" category="Top4" order="desc" number="3"]should show you exactly the three latest movies from the Top4 category. Are you getting a different result?Forum: Plugins
In reply to: [WPMovieLibrary] How to Display 'Movies' in Header Menu & Add CategoriesHum, you can prevent the Headbox from using it either with CSS or by overriding the template, but preventing it from showing inside the post would be trickier as it depends a lot on other factor, like the theme you’re using, or plugins that may interact with it…
Forum: Plugins
In reply to: [WPMovieLibrary] add contentThere’s a couple way to do that, the most likelier to meet your needs would be to use the theme on this. I’ll take a look at it. You theme is FilmPlus, right?
Forum: Plugins
In reply to: [WPMovieLibrary] It is possible grid by categoryOk, I’m not sure that’s doable right now. If I get it right, you’d need to show only page 2 of the “Top 2” grid, right?
Forum: Plugins
In reply to: [WPMovieLibrary] How to Display 'Movies' in Header Menu & Add CategoriesHi ringmyannabelle,
Making movies appear like posts shouldn’t be a problem, provide you deactivate the plugin’s frontend features like the headbox and meta/details display. As for the menu, you can achieve that by manually adding a link the the archives page.
Forum: Plugins
In reply to: [WPMovieLibrary] add contentHi gembongmovies,
Could you explain a bit more what you’re trying to achieve? I’m not sure I understand what you mean.