Kostas Stathakos
Forum Replies Created
-
Forum: Plugins
In reply to: [My Movie Database] TranslationsCan you make sure you have installed v3.0.1 please (and not v3.0.0)?
And can you disable the cache plugin after that completely? Just to test.
Forum: Plugins
In reply to: [My Movie Database] bootstrap issuesHappy to hear it’s working.
Yes that is coming from TMDb API, it happens that external links are sometimes broken. You can update them yourself, TMDb is a crowdsourced database.
Make a free account here https://www.themoviedb.org/signup
I love the LCARS theme btw ?? ??Forum: Plugins
In reply to: [My Movie Database] TranslationsHi @chiflaos,
`I created a new translation using LocoTranslate. I chose the
system
option to put it inlanguages/plugins/my-movie-database-{locale}.po
and it worked fine.
Then I moved the loco translate generated filemy-movie-database-es_ES.mo
from the above location toplugins/my-movie-database/languages/
and renamed itmy-movie-database-es.mo
and this also worked.
So I don’t know what is going on here.
Can you provide any more info?
Are the widgets loading? I tried to find one on your site but could not. Then I got an error message. If they are not loading, can you delete the plugin and reinstall it please?Forum: Plugins
In reply to: [My Movie Database] Showing Movies uploaded by only meLooking at your site, it seems like what you are trying to do is to have a posts by author page functionality. And to have this somehow linked to the Buddypress / social network type website.
This question is not really about the my movie db plugin so I think you’re better off looking for answers in other plugins that may help you achieve this type of “posts by author” page or list functionality.
I did a little search and this plugin may be worth checking out List all posts by Authors, nested Categories and Titles
Best of luck!Forum: Plugins
In reply to: [My Movie Database] bootstrap issuesHI @datateam, new version is published, the bootstrap dependency of the plugin has been completely removed.
There are still some classes that are shared with (mostly older) versions of bootstrap, I did some testing and fixing, it should be ok.
Please let me know how it goes if you try it.
Thanks!?Forum: Plugins
In reply to: [My Movie Database] bootstrap issuesHi datateam,
I’m currently finishing up a new version of the plugin.
I’m attempting a new strategy for css which I believe will fix the issue you’re having.
Should be ready in a few days from now, please feel free to repost here after trying the new version.
Thanks,
KostasForum: Plugins
In reply to: [My Movie Database] Trailer Can’t ShowHi,
I am not sure why the tab does not show. Maybe there is no Trailer available for the film in the Turkish language? I see there is one in the English language.If you change your site language to English does it show the trailer?
- This reply was modified 3 years, 4 months ago by Kostas Stathakos.
Forum: Plugins
In reply to: [My Movie Database] Custom templateHi, to use the custom template feature you will need to do some programming / coding unfortunately.
You need first to copy the
mmdb_templates
folder inside you theme. And then you can work with thecustom
template file. Copying the templates inside your theme is a precaution, so when you update the plugin your changes are not lost.The truth is that the custom template feature was designed in the original version of the plugin when the templates were in PHP. It was probably easier to program a custom template in the PHP version than it is now with the templates being in Vuejs. But you can do it if you learn/know Vuejs.
In any case however you do have to write code to use this.
Forum: Plugins
In reply to: [My Movie Database] Not good language descriptionHi,
I see that you probably solved your problem as the link you shared of your website shows the movie description in French.
What was the problem, how did you solve it?
Thank you
Forum: Plugins
In reply to: [My Movie Database] Can’t use the shortcode in normal postUnfortunately the plugin does not yet support the shortcode block of the Gutenberg editor.
Forum: Plugins
In reply to: [My Movie Database] not updateThanks for reporting this. Unfortunately I cannot test/debug this as I don’t have a copy of Ultimate Affiliate Pro.
Forum: Plugins
In reply to: [My Movie Database] public page searchSorry this is not currently possible. Thanks for your feedback.
Forum: Plugins
In reply to: [My Movie Database] shows onlyI can’t guess what it is, I have some vague ideas but I would need more info.
Forum: Plugins
In reply to: [My Movie Database] Post now shown in my blogAdd this to the
functions.php
file of your theme.add_filter('widget_posts_args', 'widget_posts_args_add_custom_type'); function widget_posts_args_add_custom_type($params) { $params['post_type'] = array('post','movie', 'tvshow', 'person'); return $params; }
It should display them. But this also depends on the theme you use.
I may add this as an option in a future version.
Forum: Plugins
In reply to: [My Movie Database] Overview text still thereThis is a bug. Thanks for reporting, it will be fixed in the new version.