Charlie Merland
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMovieLibrary] What is the best free theme for these?I don’t how I can give a correct answer to this. It depends a lot on what result you want to have and your own tastes as well…
Forum: Plugins
In reply to: [WPMovieLibrary] No Description in Google SnippetActually there’s an option in the Settings panel that does just this, replace movie excerpts with the overview; not sure how it interacts with with the themes and plugins that use Google snippet, though… That’s not really something the plugin can control, in the end the theme does pretty much what it wants, not matter how we try to make data available…
Forum: Plugins
In reply to: [WPMovieLibrary] Movie List is buggingHi GuteFilme,
The grid in its current form has sorting issues, it’s known and being worked on; it just takes time as I’ve had much work on the side these last months. Sorry about the inconvenience 🙁
Forum: Plugins
In reply to: [WPMovieLibrary] No Description in Google SnippetHi Raj,
That’s not unexpected, the plugin doesn’t handle that part; snippets are most likely added by your theme. Which one are you using?
Forum: Plugins
In reply to: [WPMovieLibrary] Looking for a demo of this product?Hi Shannon Whitty,
I don’t keep track of users, so I’ve no real way to provide you with live examples other than the demo, and as the plugin is not widely used I doubt you will get much answers here.
That being said, focusing exclusively on frontend indicates a possible misuse: this is a library plugin, meant for building personal libraries; the main point is to gather movie data, displaying is secondary and can be done anyway you want, even though the plugin comes with basic display. If you’re according more importance to the visual part than the data gathering part, you probably shouldn’t be using this plugin.
Forum: Reviews
In reply to: [WPMovieLibrary] AverageSorry you feel that way Shannon Whitty. Maybe you should take a look at what the plugin actually does. You’ll find out there’s a bit more to it than just “using a custom page/post template”, which, by the way, doesn’t even mean anything.
Anyways, feel free to provide insights on what values you think the plugin should offer!
Regards,
Charlie
Forum: Plugins
In reply to: [WPMovieLibrary] Excluding /movies/ from the slugIf you’re referring to IMDb for the metadata downloading, well WPMovieLibrary does not use IMDb, it uses TMDb (www.themoviedb.org) and, indeed, depending on the movie and language, some metadata may be missing.
As for switching the Headbox style, I’m no expert but there’s probably an impact on SEO at some point as different Headboxes styles don’t have the exact same content… SEO is not the biggest priority of the plugin, more focused on content than referencing.
And for the Allociné Headbox not displaying cast images, you can add this code to your theme’s
functions.phpfile:function remove_allocine_headbox_casting_tab( $tabs ) { unset( $tabs['casting'] ); return $tabs; } add_filter( 'wpmoly_filter_allocine_headbox_tabs', 'remove_allocine_headbox_casting_tab' );To remove the Casting block from the default tab, add this edited file to your theme’s folder with the following path:
wp-content/themes/your-theme/wpmovielibrary/movies/headbox-allocine/tabs/overview.php.Forum: Plugins
In reply to: [WPMovieLibrary] Keep plugin working on front end regardless of php versionTo avoid the version check you can edit the
wpmovielibrary.phpfile at the root of the plugin’s folder, and change line 41 fromdefine( 'WPMOLY_REQUIRED_PHP_VERSION', '5.3' );todefine( 'WPMOLY_REQUIRED_PHP_VERSION', '5.2' );, but be careful: the reason PHP 5.2 is excluded is that the plugin uses some PHP > 5.2 features; running it with 5.2 has a good chance to end up with errors.Anyways, I hope you get that PHP issue solved: PHP 5.2 is completely obsolete (5.3 too, for that matter) and softwares will progressively drop it… WPMovieLibrary doesn’t use extensively recent PHP versions, but it may in the future, so support outdated version of PHP will become a real problem.
Forum: Plugins
In reply to: [WPMovieLibrary] Missing Icons/wpmovielibrary.woff 404 ErrorHi nadasumbang,
Yup, that’s a working fix for this; however like I mentioned above, be aware that in some cases it seems to prevent some icons to show properly… I never found a suitable fix that works at 100%.
What server config are you running, for the record?
Forum: Plugins
In reply to: [WPMovieLibrary] Excluding /movies/ from the slugHi llrajsll,
Yes and no 🙂 There is, but there shouldn’t. Movies are actually a simple Custom Post Type created by the plugin, and you can not have CPT swithout slugs in the URIs. You can hack it through, but that’s not the behavior expected by WordPress. Odds are you’ll get weird things removing the ‘movies’ slug, because WordPress will possibly have trouble making the difference between movies and standard posts or pages.
Forum: Plugins
In reply to: [WPMovieLibrary] Icons not displaying and language issuesHi FirebatHero,
The icon issue is not unheard of, generally a server setting problem. If you can confirm the files are correctly accessible — well, should be, meaning they exist and have the correct permission — then it’s most likely the server blocking the files. There are good hints on StackOverflow about how to fix it, but it depends on your server; the idea is to allow the application/x-font-woff mime type.
As for the language thing, editing the .PO file is not enough, you have to compile that file to an .MO file. You can use Poedit to do so.
Forum: Plugins
In reply to: [WPMovieLibrary] Can user add a movie or actor?Hi Petr,
For now users can’t add/edit movies. Enhancing the permissions to allow users to interact with the plugin has been a long-planned feature that I still haven’t got any time to build properly. It’ll come, I just don’t know how soon 🙁
Forum: Plugins
In reply to: [WPMovieLibrary] Movies won't load on homepageHi elliebnader,
Unfortunately since this is a premium theme I can not test it; have you tried contacting the theme developer?
Forum: Plugins
In reply to: [WPMovieLibrary] TV ShowsHi gsbohn,
Genres are a custom WordPress taxonomy, so you can add/remove/edit them just like categories or tags; the plugin will still use the ones matching the movies meta, though.
As for the first question, the plugin does not support TV Shows. I plan to make it available at some point, I’m just not sure when I’ll be able to gather enough time to work on it 🙁
Forum: Plugins
In reply to: [WPMovieLibrary] Post doesn't show on homepageHi d1same,
Unfortunately that’s a premium theme so I can’t test it. Have you tried contacting the theme developer?