Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wanting to access the 'published_at' date of a collection within a liquid template.

The Wiki references the following attributes here, that does not include 'published_at': http://wiki.shopify.com/Collection

I can access the 'published_at' date when using the Shopify API gem, using the following:

collection = ShopifyAPI::SmartCollection.find(1234567)

Returns:

<ShopifyAPI::SmartCollection:XXXXXXXXXXXX 
  @attributes={
    "body_html"=>"", 
    "handle"=>"homepage", 
    "id"=>1234567, 
    "published_at"=>"2012-11-01T07:26:30-04:00",
    "sort_order"=>"manual",
    "template_suffix"=>nil, 
    "title"=>"Homepage", 
    "updated_at"=>"2012-11-01T07:26:30-04:00", 
    "rules"=>[
      #<ShopifyAPI::Rule:XXXXXXXXXXXX 
        @attributes={
          "column"=>"tag",
          "relation"=>"equals", 
          "condition"=>"week1"
        },
        @prefix_options={}, 
        @persisted=false>
    ]
  },
  @prefix_options={}, 
  @persisted=true>

Is there a way to access the same information via liquid or are these end points unavailable internally?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.