What's new
[XB] TMDb Movie Thread Starter

[XB] TMDb Movie Thread Starter [Paid] 2.2.3

No permission to buy ($30.00)

Painbaker

Active member
Administrator
Painbaker submitted a new resource:

[OzzModz] TMDb Movie Thread Starter - Start threads about movies the easy way

Do you run a movie review or discussion site? Always copying and pasting information from The Movie Database to your new threads? Or, maybe you just want a place on your site to discuss movies with friends.

Then this add-on is for you!

The TMDb Thread Starter allows you to enter the movie ID or the entire link to the movie at TMDb into your new thread, add whatever comments you like and post the new thread. The TMDb Thread Starter will import all of the information for your movie into the...

Read more about this resource...
 
Painbaker updated [XB] TMDb Movie Thread Starter with a new update entry:

2.2.3

✨ New features:​

  • Added liked and watched movies list to "Your account page"
  • Added icons to trailer, casts, crew and videos movie tabs
  • Added ability to quickly rate TV shows without confirmation popup (optional)
  • Added style property to disable shown stats in a thread view/list
  • Added ability to search by IMDb ID

✏️ Changes:​

  • Ratings system now enabled by default for new installations

🪲...​


Read the rest of this update entry...
 
Hi @Painbaker

Just updated this on my movies site and the following isn't working:
  • Added ability to quickly rate TV shows without confirmation popup (optional)
The old style pop-up is still present. I checked all the options to make sure that nothing had been missed, and they are all selected.

With thanks
 
Hi @Painbaker

Just updated this on my movies site and the following isn't working:
  • Added ability to quickly rate TV shows without confirmation popup (optional)
The old style pop-up is still present. I checked all the options to make sure that nothing had been missed, and they are all selected.

With thanks
Works fine for me on my test site:

Make sure there are no errors in the browser log and you don't have changes in your "snog_movies_post_macros" template that are out of date.

Currently, the section with the rating in the template looks like this:

HTML:
<xf:macro name="rating_block" arg-thread="{$thread}">
    
    <span class="ratingStarsRow">
        <span class="ratingStars">
            <xf:macro template="rating_macros" name="setup" />
            <xf:if is="$xf.options.snog_movies_quickRating">
                <xf:js prod="Snog/Movies/rating.min.js" dev="Snog/Movies/rating.js" addon="Snog/Movies" />
                <xf:macro template="rating_macros" name="rating"
                          arg-row="{{ false }}"
                          arg-showSelected="false"
                          arg-currentRating="{$thread.Movie.tmdb_rating}"
                          arg-ratingHref="{{ link('movies/rate', $thread.Movie, {'quick': true}) }}" />
            <xf:else />
                <xf:macro template="rating_macros" name="rating"
                          arg-row="{{ false }}"
                          arg-showSelected="false"
                          arg-currentRating="{$thread.Movie.tmdb_rating}" />
            </xf:if>
        </span>
    </span>

    <div class="js-movieRating">{$thread.Movie.tmdb_rating}/5 {$thread.Movie.tmdb_votes} {{ phrase('votes') }}</div>

    <xf:if is="$xf.visitor.user_id && !$xf.options.snog_movies_quickRating">
        <div class="buttonGroup">
            <xf:button class="button--link button--wrap" href="{{ link('movies/rate', $thread.Movie) }}" overlay="true" fa="fa-star">
                {{ phrase('snog_movies_change_rating') }}
            </xf:button>
        </div>
    </xf:if>
    
</xf:macro>
 
Back
Top