Welcome to TownNews.com's customer community! Connect with other TownNews.com customers and with us to suggest features, share best practices and ask questions.

Though TownNews.com representatives often participate in discussions, this is not a customer service site. For immediate help, call 800-293-9576 or submit a support request via our online ticketing system.
0
Under review

Can someone describe the Zen custom property article_rail?

Nick 8 years ago in BLOX CMS updated by Christine Masters 8 years ago 1

I'm trying to do a minor site redesign for one of our Zen sites(since we can't switch to FLEX yet). And I'd like to see how it looks to drop the right rail from the article pages. There's a custom property article_rail. I've set it to false but it doesn't seem to do anything. Is there something I need to do to make this work?

Answer
Christine Masters 8 years ago

Hi Nick!


This property adds a region that will be inside the story on article pages. Unfortunately, this was before we had Utility Regions, so in order to get to it in the block editor, you have to go to the index page and then you'll see a box that says something like, "This region will only appear on article pages." If you place blocks there, they will NOT show on the index page, but will show in the article.


Honestly, this was very confusing to customers, so we moved to Utility Regions on Flex. But, you can still employ it on Zen if needed.

+3

Feature request: Expanding on infinite scroll

Kyle Whitfield 9 years ago in BLOX CMS updated by Kevin M. Cox 8 years ago 2

Is it possible to consider expanding infinite scroll so that when a user gets to the bottom of a story, the next story in the index loads, the URL changes and ad refreshes?

Example -- http://www.espn.com/blog/sec

The current iteration of infinite scroll where it populates related stories is great. We thinking populating new stories would go even further in piling up page views and helping a site recirculation traffic.

+1

Feature suggestion: Larger previews of attached child images

Michael Becker 8 years ago in BLOX CMS updated 8 years ago 0

I often find myself having to choose a lead photo from the ones our photographer has attached to an asset. However, the previews are tiny when you hover your mouse over them. And even if you open the image asset, you really have to hit the "crop" button to get a larger view. And that just shows you one image at a time.


How about a special button that can open attached child images in a special "grid view" window that will let you see their previews at a larger (adjustable?) size. Bonus points if you can rearrange the children's order from that grid window.


Of course, I'd like to see this both in CMS, but especially in TCMS.

0

​Feature Request: Allow a sub-domain to point to Flex templates during transition from Zen

Kevin M. Cox 8 years ago in BLOX CMS 0

We're in the middle of our transition from Zen to Flex and my biggest complaint is that there is no publicly viewable way for people without a BLOX admin account to preview the new site. The login requirement also makes it harder for us to test it on a multitude of devices.


Now obviously this won't help us since we'll be done with the transition before it could be implemented, but I think a really cool and helpful feature would be the ability to point a sub-domain at the Flex URL map before the switchover, and NOT require an admin login.


For example: http://beta.galvnews.com


Now obviously I can redirect a URL to the appropriate preview URL right now, and have already done so. But the login requiernment prevents us from sharing the preview of the new site with a reader advisory panel or colleagues at a sister paper, etc.


What do y'all think?

+1

Feature request: Using cookies to remember users' preferences

Kyle Whitfield 8 years ago in BLOX CMS updated by Kevin M. Cox 8 years ago 1

Feature request: The ability to ask a user which 'section' of a site they'd like to default to next time they visit a certain page.

1) What problem(s) does this idea solve?
>> It's possible our company would one day like to market 1 URL to our readers instead of 3 (one for each market we cover). This feature would help us with our messaging.

2) Why do you need this idea implemented? Provide as many problems or use cases as possible.
>> Example: Joe Smith visits theadvocate.com. He sees a window that asks if he'd like the site to remember which page he'd like to visit next time he comes to theadvocate.com. Joe says 'yes, I'd like to automatically be taken to the New Orleans section (theadvocate.com/new_orleans).

3) How often would you use this feature? >> Daily

4) How many people in your organization would use this feature? >> Everyone. About 100


5) Post on TownNews community forum >> Will do


0

Metered Paywall

Kevin M. Cox 9 years ago in BLOX CMS updated 8 years ago 5

Is anyone running a metered paywall (vs. a hard paywall)?


We’ve started discussing the pros/cons prompted by this article:

http://bizbeatblog.dallasnews.com/2016/05/starting-today-dmns-prolific-digital-readers-will-see-limit-on-free-articles.html/


I’d appreciate any feedback y’all have on the subject.

+2

HTML assets and other assets in Facebook Instant

Kyle Whitfield 9 years ago in BLOX CMS 0

At the moment only related image assets are supported in Facebook Instant feeds. In the future, if the feed supported all related asset types TownNews could correctly integrate the widget as an HTML asset.


Would anyone else find this helpful? It'd allow videos, tweet, FB posts, Instagrams posts, etc to be available in your Instant Articles.

+6
Completed

Integration of Double Click for Small Business

Christian D. 11 years ago in BLOX CMS updated by Christine Masters 9 years ago 15
While I know TownNews has their remnant program, I've seen many sites that are on TownNews also using DoubleClick for small business that allows them to use the DoubleClick ad software and AdSense for remnant positions.  While I've got access to the templates to modify them, the docs aren't really up to date and I've not had the time to look into it further.  It would be nice if it would be 'easily' possible integrate DoubleClick into Blox (maybe this is already there and I'm not aware of it). I suppose the alternative is to create ad manager more like Double Click (for forecasting and such!)
+3

All of date's news for a date in the past?

Brice Bertels 9 years ago in BLOX CMS updated by Nick 9 years ago 3

Just wondering if any had any input on this?


Here's the goal: Provide a datepicker interface that will select any date and display a page with all of the assets published on that day, on one page.


Approach 1: Custom search page.

Starting point is something like this: http://www.columbiatribune.com/search/?d=2016-04-09&l=100&app=editorial&type=article

Using the search parameters: http://help.bloxcms.com/knowledge-base/applications/design/templates/modules/by_application/type/search/article_33ecc2fa-6e9a-11e5-b11b-6f69a19d81ac.html


Ideally, we want to put all of a single section's news, grouped with its peers (other articles of the section) and sorted by display priority. For instance, display all of /news/ section and it's children, sorted by display priority. After that, display all of /sports/ and it's children, sorted by priority as well.

You can do this, but you can't do it on one page. You could do all of /sports/ like http://www.columbiatribune.com/search/?d=2016-04-09&type=article&c[]=sports* but you would have to ajax these onto the page in order to display multiple sections.


One way around this problem is to filter the array of search results that you get back.

searchResults = cms.search.results;
articleGroup = tribune_filterAssetsByType(searchResults,'article','include');
newsGroup = tribune_filterByTopSection(newsGroup,'perspectives','exclude'); 
sportsGroup = tribune_filterByTopSection(articleGroup,'sports','include');

Where the filter macros just look for the appropriate sections or type and only return the correct ones. Because you're filtering by priority, this works, because you're not messing with the sorting, you're iterating in order. Behold, a list of assets of a section, sorted by priority, just like we want.

So this works great except for one sort of big caveat: When you have over 100 stories, it's incomplete. You can't return more than 100 search results at once, so you're stuck either ajaxing in the remainder after page load, which requires you writing a second version of your filtering at the script layer to do this... An inelegant solution at best.

Fantasy Approach 2: Using blocks


This isn't possible as far as I know right now. It also avoids all custom programming sorts of stuff and fits right into the "everything is a block" paradigm and that's great. If you had some way to grab url query parameters or read POST parameters out of the page request inside the block query rules, you could do some cool stuff.

Here's an example of how this might work:

In block query rules, you add "Start Date time" rule. In the operation list, there's a "From Request" and then an input to enter the name of a URL parameter.

That's all the user facing stuff that would be needed.

This blows open what is possible with blocks, IMHO. I could build my project above in 15 minutes and be done.

With this and some way to define URL routes and act on them, BLOX becomes a much more powerful framework. Say you wanted to make /archive/2015/ point to a landing page for 2015 or archive yyyy to go to any year's page, but you didn't want to define hundreds of years by hand and thousands of months under them, you need some sort of routing interface and some way to get that routing info into the Blocks.


Only actual approach 3: Using javascript


The search page has a JSON output, with f=json. That means I could load lots of search pages with whatever parameters I choose, parse the JSON, and build a page. Downsides, I need to make a version of card_summary in JS to put the things on the page.


This would be good practice for a native app as well.



0

Feature request: 1+ people working in same asset

Kyle Whitfield 9 years ago in BLOX CMS updated by Kevin M. Cox 9 years ago 1

It'd be awesome if BLOX allowed multiple people to be working the same asset simultaneously AS LONG AS they were working in separate fields.

For example, one person correcting a headline mistake, another fleshing out body copy and another attaching a photo.

If there was field access, instead of asset access, that would go a long way in helping with big breaking news.

+2

Feature request: Instant link on BLOX from phone

Kyle Whitfield 9 years ago in BLOX CMS updated by Kevin M. Cox 9 years ago 1

Our guys love posting to BLOX from their phones. But they aren't able to quickly get a link to tweet or FB when posting on the phone like they do on laptop.

We would use this feature A LOT. Everyone in our newsroom would use.

Example: New Orleans Saints sign Drew Brees to new contract. Reporter finds out while on practice field. Needs to file and disseminate news from phone. Can't do latter.

+1

Repercussions of changing wireframes

Nick 9 years ago in BLOX CMS updated by Robert Dundon 9 years ago 1

How many times have you wanted to change the wireframe you're using? I've successfully changed non-home pages with no issues. But I know as soon as I switch wireframes on the home page it's going to completely screw up all of my other pages. Has anyone done this? If so how did it affect the inside pages?


This may be for another post but I think something that would really help would be the ability to create regions. How hard would that be for a non-UTL user?

0

Feature request(s): BLOX admin enhancements

Kyle Whitfield 9 years ago in BLOX CMS updated by anonymous 9 years ago 5

We'd love for y'all to consider a more intuitive BLOX interface (selfishly speaking b/c I"m sure our workflow is different from others) …

-- the ability to search for a story, drop it into a block and re-order the items in the block w/o having to open multiple tabs/individual blocks.

-- Also, could related stories we drag into an asset show up in a related box underneath the centerpiece when the asset is put in that block? Right now we have to manually define centerpiece related stories.

-- Would also be helpful to 'link' block to one another so a story can seamlessly flow from one block to another on a page.

Right now when we change centerpiece story, for example, we have to change the CP, then move that CP'd story -- which is still being widely-read -- into another prominent block on the page.

We would use these features VERY often.

+5
Under review

Bulk photo upload in the user dashboard

Christine Masters 12 years ago in BLOX CMS updated by Erica Smith 9 years ago 8

Allow users to upload multiple photos at once via the BLOX user dashboard.

0

Getting a video error in Chrome

Nick 9 years ago in BLOX CMS updated by Kevin M. Cox 9 years ago 1

I've uploaded a video several times to BLOX but I can't seem to get it to play on Chrome. I get this error: "The media playback was aborted due to a corruption problem or because the media used features your browser did not support."


It's an mp4 exported with Adobe Premiere using h264. I can't even play it in TCMS.


Has anyone else every seen this error?


Image 184

Image 183