I'm currently developing a site for a client using ModX, and am relying heavily on Ditto for displaying news items, featured articles, products, etc.
I have a problem that I hope someone can help me out with. I've spent the last two weeks searching the forums, reading the documentation, testing and re-testing, and I think it's safe to say I've reached an impasse.

The client wants to be able to choose one product that will be a "featured product", and will be displayed on the sidebar of every page (multiple templates) on the site. The method that I'm using to achieve this is having a TV on the home-page template that grabs a list of all the products under the product folder, and displays them in a list so the client can simply scroll down the list and choose a product to be featured. I'm simply using a @SELECT binding to grab the list, as well as the delimited list widget.
Here's the @SELECT statement:
@SELECT pagetitle, id FROM site_content WHERE parent = 14
Here's the Ditto call I'm using to display the Featured Product on the Homepage
[!Ditto? &parents=`14` &depth=`1` &extenders=`summary,tagging` &summarize=`1` &tpl=`FeaturedBookTemplate` &hiddenTVs=`FeatureBookChoice` &filter=`id,[*FeatureBookChoice*],1` !]
"FeatureBookChoice" is the name of the TV on the homepage template that the client selects from.
It works fine on the homepage template, but I cannot for the life of me figure out how to get it to work with the other templates on the site. It always shows up as "No documents found." Using the Debug console shows that the other template-based pages aren't reading the "FeatureBookChoice" TV from the homepage. It's like it doesn't exist for them. I've tried using &appendTV, &hiddenTVs, etc., and I'm at a brick wall.
I'm using the latest version of ModX, and Ditto V. 2.0.1
I hope I've provided enough info here. If not, please let me know. Thanks so much for any help!