Default action for Movies item in the main menu
#1
Hi,
I followed up the procedure to separate Music concerts from the normal movies here: https://kodi.wiki/view/Music_concerts.
I added the condition to the Movies node to exclude the concerts from there. It works correctly when I open it from Videos for example.
However, the problem is that if I click on Movies in the main menu I get the least off all the videos including concerts. Is it possible to modify this?

Thank you in advance.
Reply
#2
Section 10 of that wiki page describes how to do that.
My Signature
Links to : Official:Forum rules (wiki) | Official:Forum rules/Banned add-ons (wiki) | Debug Log (wiki)
Links to : HOW-TO:Create Music Library (wiki) | HOW-TO:Create_Video_Library (wiki)  ||  Artwork (wiki) | Basic controls (wiki) | Import-export library (wiki) | Movie sets (wiki) | Movie universe (wiki) | NFO files (wiki) | Quick start guide (wiki)
Reply
#3
Excuse me, but I didn't explain me well.
I followed the section 10 and that's what I observe now.
1) If I click on Main menu -> Videos and then I select Movies -> Titles I get to the page called "Movies/Titles" and it lists only the movies. That's correct.
Image
2) If I click on Main menu -> Movies I also get the page called "Movies/Titles" but it contains all the videos. That's not correct.
Image
Reply
#4
I wonder if there is a way to make Kodi open the filtered list of Movies also in the second case?
Reply
#5
https://forum.kodi.tv/showthread.php?tid...pid2802050
xml:
<?xml version='1.0' encoding='UTF-8'?> 
<node order="1" type="filter">
 <icon></icon>
<label>A</label> 
 <name>a</name>
<content>movies</content> 
<match>one</match>
<rule field="originaltitle" operator="startswith"> 
<value>a</value>
 <rule field="originaltitle" operator="startswith">
        <value>THE A</value>
    </rule>
</rule> 
</node> 
get it working with a smart playlist then you can edit a node with the info
xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>Action</name>
    <match>all</match>
    <rule field="genre" operator="is">
        <value>Action</value>
    </rule>
    <order direction="ascending">sorttitle</order>
</smartplaylist>
Reply

Logout Mark Read Team Forum Stats Members Help
Default action for Movies item in the main menu0