selse
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Speed Optimization] Parse error: syntax error, unexpected ‘[‘What is your PHP version?
It may caused by the array syntax “icons” => [],
PHP version prior to 5.4 don’t support this syntax.Try to upgrade your PHP and see how it goes.
- This reply was modified 8 years, 9 months ago by selse.
Forum: Plugins
In reply to: [IMDb Connector] IMDb Connector stopped workingOMDb API is private now and no more free data request.
If you want to get the movie details via OMDB, you need a valid API key which can get after making a donation or become a patron.
Please visit their site for more detailed info 🙂
Forum: Plugins
In reply to: [Colorbox Panels & Info Box] WYSIWYG editor not showingI did tests with several browsers, the WYSIWYG editor works with Opera & Safari but not in Chrome & Firefox, even if this is the only plugin that active on backend.
Forum: Plugins
In reply to: [Colorbox Panels & Info Box] Broken layoutSorry for delayed time, currently working on local staging, so the site is not live yet.
Here is the sample url with issue: http://bpinkd.com.
I did tests to load and reload the page on Chrome, Firefox, Opera & Safari, all of them showed the same problem with layout.
Forum: Plugins
In reply to: [Colorbox Panels & Info Box] Broken layoutI already set the Masonry/Isotope effect to NO and still have the same issue.
Forum: Plugins
In reply to: [Colorbox Panels & Info Box] WYSIWYG editor not showingDidn’t know which one caused the conflict, tried to deactivated all the plugin and then reactivated all again works fine after that. Thanks.
- This reply was modified 9 years, 4 months ago by selse.
Forum: Plugins
In reply to: [IMDb Connector] Date released & decimal mark outputBig thanks for that man, the last one works perfectly great. You solved all of my problem. Cheers 🙂
Forum: Plugins
In reply to: [IMDb Connector] Date released & decimal mark outputThanks for the updated plugin for the fix.
As for thousands separator, since I don’t know how to add the function to my theme functions so it can work with existing shortcodes ( actually I don’t know any PHP at all 😀 ), I had to hardcoded this line $value = number_format($value, 0); to plugin’s functions file.
So it goes from this
/** Remove everything but numbers from imdbvotes */ if($movie_detail === "imdbvotes") { $value = preg_replace("'[^0-9]'", "", $value); }to this
/** Remove everything but numbers from imdbvotes */ if($movie_detail === "imdbvotes") { $value = preg_replace("'[^0-9]'", "", $value); $value = number_format($value, 0); }Works great as I needed, the only con is if plugin update available. I have to add that single line again manually to the function. No problem here as long as the function work properly and no conflict/error appear.
Forum: Plugins
In reply to: [Speed Contact Bar] Messenger App IconsGreat. Will wait until the official release. 🙂
Forum: Plugins
In reply to: [IMDb Connector] Date released & decimal mark outputI’m using both “year” and “released”, both of them return the same value (year only). I guess (maybe) this because the data provided by omdbapi.
As the thousands separator, how to implement the function to the plugin? Really sorry about this, not PHP savvy here just an ordinary shortcode user 😀
Forum: Plugins
In reply to: [IMDb Connector] Movies tagline, runtime format & poster embed shortcodeWorking great now, thanks a lot Kolja.
Writing a review now 🙂Forum: Plugins
In reply to: [IMDb Connector] Movies tagline, runtime format & poster embed shortcodeAbout the tagline is as expected, so no worries about that, thanks for the head up.
As the unofficial version 1.3 triggered error so it can’t be activated. Switched back to 1.2.1 and it went back to normal.
Forum: Plugins
In reply to: [IMDb Connector] Movies tagline, runtime format & poster embed shortcodeHi thaikolja,
1. You can find Movie’s Taglines in storyline section at IMDB.com. For example:
Title: Ant-Man (2015)
Taglines: This July, heroes don’t come any bigger.Title: Mission: Impossible – Rogue Nation (2015)
Taglines: Go rogue2. Via shortcode is preferable, more like EdnaMode’s suggestion.
3. Using this <img src=”[imdb_movie_detail title=”tt2381249″ detail=”poster”]” /> don’t work, due the “” conflict, but using either of these <img src=”[imdb_movie_detail title=’tt2381249′ detail=’poster’]” /> or <img src='[imdb_movie_detail title=”tt0478970″ detail=”poster”]’ /> works perfect.
Highly appreciate your support for the plugin. Thank you 🙂