Jump to content

ChrisTERiS

Members
  • Posts

    195
  • Joined

  • Last visited

Reputation Activity

  1. Agree
    ChrisTERiS got a reaction from ArnoldKumar123 in Movies   
    Just for presentation on what you can do with some tweaks on design. @Adriano Faria took care for the quality of code (still didn't found even a single bug), so the only that left out is some design work to make it more beautiful. Currently I'm working on the movie page and when finish I'll work on listing page.
    Please note that mobile is not yet ready, so I suggest to test it in desktop view. The only that I added is a custom field (upload type) for the Cover Photo.

    The listing page should look like this one:

    and the categories (homepage) something like this

  2. Like
    ChrisTERiS got a reaction from Jimi Wikman in Movies   
    Just for presentation on what you can do with some tweaks on design. @Adriano Faria took care for the quality of code (still didn't found even a single bug), so the only that left out is some design work to make it more beautiful. Currently I'm working on the movie page and when finish I'll work on listing page.
    Please note that mobile is not yet ready, so I suggest to test it in desktop view. The only that I added is a custom field (upload type) for the Cover Photo.

    The listing page should look like this one:

    and the categories (homepage) something like this

  3. Like
    ChrisTERiS got a reaction from TAMAN in Behemoth Theme [ support topic ]   
    Ahaaa,,,,,,,,, Thank you. And I was wondering if I lost my visual at all. Now it makes sense. Thank you again.
    PS: I added !important; at the end and works fine.
  4. Thanks
    ChrisTERiS reacted to TAMAN in Behemoth Theme [ support topic ]   
    Hi,
    This button has no background color, you cant change the background color in the settings
    you can only change the text color which is connected with Light Text color option
    this is in the "Text" theme settings tab

     
     
    if you need to change it manually with css
    add in custom.css 
    body[data-pagecontroller="topic"] a[id*="elShareItem"] { background-color: #556b2f; }  
  5. Like
    ChrisTERiS got a reaction from optrexnz in Photo Competition (Support Topic)   
    @optrexnz
    Must be on the file applications/competition/modules/admin/competition/competitions.php
    Before (Line 21):
    protected $nodeClass = '\IPS\competition\Competition'; Insert:
    public static $csrfProtected = TRUE; This way the final class should be:
    class _competitions extends \IPS\Node\Controller { public static $csrfProtected = TRUE; /** * Node Class */ protected $nodeClass = '\IPS\competition\Competition'; /** * Execute * * @return void */ public function execute() { \IPS\Dispatcher::i()->checkAcpPermission( 'competitions_manage' ); parent::execute(); \IPS\Output::i()->title = \IPS\Member::loggedIn()->language()->addToStack( 'menu__competition_competition_competitions' ); } } But I'm not getting any responsibility. I believe that @Andy Millne knows much better than me.
     
  6. Thanks
    ChrisTERiS reacted to WP V0RT3X in Club categories   
  7. Thanks
    ChrisTERiS reacted to Adriano Faria in Movies   
    Ok, went ahead and create the widget. So now you have:
    1: a contextual sidebar block (not a widget) to display subcategories of the category you're browing and it is enabled/disabled via setting; if you're on index, then all categories will show up (first block in the image below).
    2: a widget where will display ALL existing categories, no matter where you are ( second block in the image below).

     
    ---------------------------------------------------------------------
    I'm working on another feature so expect a new version later next week.
  8. Thanks
    ChrisTERiS reacted to Daniel F in Club categories   
    It's the same approach for applications.

  9. Thanks
    ChrisTERiS reacted to WP V0RT3X in Club categories   
    Have you tried the 4.4 addon in 4.5? Haven't tested that one, but many work without any problems.
  10. Thanks
    ChrisTERiS reacted to Adriano Faria in Movies   
    Change this one to:
    $movie->episodes = $type == 'tv' ? $data['number_of_episodes'] ?: 0 : 0; Also, change in applications\movies\sources\Movie\Movie.php from
    $this->release_date = \IPS\Request::i()->movie_release_date; to:
    $this->release_date = \IPS\Request::i()->movie_release_date ?: NULL; This one also doesn't has Genres, so it will show empty in the movie view:

    I've fixed this for the next version. If you are ok editing template too, then in the view template, find:
    <li class="ipsDataItem"> <span class="ipsDataItem_generic ipsDataItem_size3"><strong>{lang="movie_genres"}</strong></span> {{$genres = \IPS\movies\Movie::getGenreName( explode( ',', $movie->genres ) );}} <span class="ipsDataItem_generic">{$genres}</span> </li> Change to:
    {{if $movie->genres}} <li class="ipsDataItem"> <span class="ipsDataItem_generic ipsDataItem_size3"><strong>{lang="movie_genres"}</strong></span> {{$genres = \IPS\movies\Movie::getGenreName( explode( ',', $movie->genres ) );}} <span class="ipsDataItem_generic">{$genres}</span> </li> {{endif}} I will send you a PM in a few minutes with an account on my board so you can post bugs in the Tracker. 👍
  11. Thanks
    ChrisTERiS reacted to Adriano Faria in Movies   
    There’s a reimport data in Movie Actions menu. It will update all data saved, which is everything except the tabs content. 
  12. Thanks
    ChrisTERiS reacted to Adriano Faria in Movies   
    @ChrisTERiS, can you tell me the name of the tv show and the language used so I can try the fix?
    ------------------
    EDIT: Got it from your error. The fix is simple. Via FTP, download and open the file applications\movies\modules\front\movies\view.php and find:
    $movie->runtime = $time; Change to:
    $movie->runtime = $time ?: 0; Save and upload.
  13. Thanks
    ChrisTERiS reacted to Adriano Faria in Movies   
    No, just like all apps, it shows in the item view only.
    $movies will probably be an array so you will need a foreach to break in each movie. 
    Probably the API didn’t return the type (movie or TV) so the lang bit isn’t showing. You can browse the table and add the proper value in the movie_type column, if I’m not mistaken. You will see values from others so it will be easy to identify. 
  14. Like
    ChrisTERiS got a reaction from ibaker in Movies   
    Just for presentation on what you can do with some tweaks on design. @Adriano Faria took care for the quality of code (still didn't found even a single bug), so the only that left out is some design work to make it more beautiful. Currently I'm working on the movie page and when finish I'll work on listing page.
    Please note that mobile is not yet ready, so I suggest to test it in desktop view. The only that I added is a custom field (upload type) for the Cover Photo.

    The listing page should look like this one:

    and the categories (homepage) something like this

  15. Like
    ChrisTERiS reacted to Adriano Faria in Movies   
    Just like a magic trick? 🤣
    You know that’s not how it works. You would need to edit a template and add it where you want. 
    ...and that’s where lies the beauty of the template system. I will certainly do some improvements, but we already talked via PM. You can do whatever you want in your install and share with others, just in case they want to use it too.
  16. Like
    ChrisTERiS got a reaction from Duken in Movies   
    Just for presentation on what you can do with some tweaks on design. @Adriano Faria took care for the quality of code (still didn't found even a single bug), so the only that left out is some design work to make it more beautiful. Currently I'm working on the movie page and when finish I'll work on listing page.
    Please note that mobile is not yet ready, so I suggest to test it in desktop view. The only that I added is a custom field (upload type) for the Cover Photo.

    The listing page should look like this one:

    and the categories (homepage) something like this

  17. Like
    ChrisTERiS reacted to TAMAN in Behemoth Theme [ support topic ]   
    This was fixed for the new version and will soon be updated in ips marketplace 🙂 
  18. Like
    ChrisTERiS reacted to Adriano Faria in Movies   
    You can but nothing will show up as the tabs are ajax loaded and brings info from the TMDB. So all you'll have is a title, description and cover. Nothing more.
    Nope, it doesn't provide IMDB Rating. It does TMDB rating but you can create a custom field and enter your info there.
  19. Like
    ChrisTERiS got a reaction from Adriano Faria in Movies   
    Seems that I'll increase my collection of your mods 🙂 But I've 2 pre-sale questions:
    1.- Can I manually post a movie if it does not exists in IMDB or TMDB?
    2.- As I seen in one of the screenshots, members can Comment/Review the post. The question is about Rating. Is there any place to show (eg):
    IMDB Rating: XXXXX
    User Rating: XXXX
    Thank you
    Chris
  20. Like
    ChrisTERiS got a reaction from optrexnz in Close Club if owner does not renew his subscription   
    Scenario: "A member pays a recurring fee to upgrade to a Usergroup to get permissions to create a club. On the renewal date he does not pays anything, the system drop him back to Member usergroup but he can continue administrating his club (and most probably earning money from club members)".
    Question: Is this logic? I think no. Even in real life when someone rents an apartment, shop, office etc, the owner kicks him out if he does not pays the rental fees.
    Solution: I'll not suggest a complicated procedure like "Allow the club to work as normal, bur restrict Administration functions". A very simple solution is "Close the Club (disable access and joins), showing a message Club is under maintenance. This will push the club creator to renew his subscription. Maybe an advanced feature is a new Yes/No setting in subscription (in the place with upgrade/downgrade usergroup) "Close any clubs" should gives more flexibility.
     
  21. Like
    ChrisTERiS got a reaction from Sonya* in Close Club if owner does not renew his subscription   
    Scenario: "A member pays a recurring fee to upgrade to a Usergroup to get permissions to create a club. On the renewal date he does not pays anything, the system drop him back to Member usergroup but he can continue administrating his club (and most probably earning money from club members)".
    Question: Is this logic? I think no. Even in real life when someone rents an apartment, shop, office etc, the owner kicks him out if he does not pays the rental fees.
    Solution: I'll not suggest a complicated procedure like "Allow the club to work as normal, bur restrict Administration functions". A very simple solution is "Close the Club (disable access and joins), showing a message Club is under maintenance. This will push the club creator to renew his subscription. Maybe an advanced feature is a new Yes/No setting in subscription (in the place with upgrade/downgrade usergroup) "Close any clubs" should gives more flexibility.
     
  22. Like
    ChrisTERiS got a reaction from Mohammad Mz in Pages Legend News - Supporttopic   
    Thank you for your reply. Just an advice. Use "Quote" when replying so the poster will be informed. Didn't got any notification, and all by luck, when I came here to buy something else, I found that you've replied almost immediately.  Not all users are following all topics where they post.
  23. Thanks
    ChrisTERiS reacted to Fosters in Project Manager / Bug&Suggestion Tracker - Supporttopic   
    That's an oversight. I'll make sure to include it in the next release
  24. Thanks
    ChrisTERiS reacted to Adriano Faria in My Paid Files   
    Tks. 👍
    Yes, it's just for the sellers. For the purchasers, already has that page... he can do everything from there. It's just add a more prominent link.
  25. Thanks
    ChrisTERiS reacted to shahed in Legend Blocks - Supporttopic   
    Hi Chris,
    As you well know, with Pages app you can do more than just making pages. you can create static pages, databases and categories for storing articles, records, photos... and also you can create individual blocks and widget to use throughout your community. Legend news is mainly created to work with Pages "databases". you can change the look in areas like Frontpages, categories and articles in your database.
    Legend blocks however is not about that. it's a series of templates for making widgets and blocks in pages app. for example you can create blocks in pages app for recent topics, recent posts, recent files and ... then use one of many Legend blocks templates at the end as their skin. then use IPS widget manager to drag and drop them in your front-end. sidebar area, top or bottom of your website.
    I hope it's help.
×
×
  • Create New...