skip to Main Content

Add a class to a Shopify liquid link?

I am trying to generate a log out link for my customers but want to apply a class to the link. {{ 'layout.customer.log_out' | t | customer_logout_link }} The above liquid code generates <a href="/account/logout" id="customer_logout_link">Log out</a> I would like…

VIEW QUESTION

Prevent ClosableHttpClient from sending cookies – Shopify

I am attempting to write a private app for the Shopify API in Java. I'm using the org.apache.http library to write my requests. Below is my current request: CloseableHttpClient httpClient = HttpClientBuilder.create().setDefaultRequestConfig(RequestConfig.custom().setCookieSpec(CookieSpecs.STANDARD).build()).build(); HttpPut putRequest = new HttpPut(request); StringEntity params; try…

VIEW QUESTION
Back To Top
Search