You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- Any chance the server/browser are caching your file? Maybe try adding a random string as the version into your script enqueuing, so that every time the page loads, you're telling the browser it's a different CSS file and instead of serving a cached version it grabs the newest one that you just generated via the CSS?Tony Djukic– Tony Djukic2020-10-18 01:42:06 +00:00Commented Oct 18, 2020 at 1:42
- Thanks Tony. I didn't have any caching set up on the site (via plugins), cleared the browser cache, and turned off Cloudflare on the domain, and the CSS file still didn't update without a hard refresh. So I was a bit perplexed. But adding the random string seems to have done the trick. Thank you for the suggestion!rconrad41– rconrad412020-10-18 15:24:46 +00:00Commented Oct 18, 2020 at 15:24
- I’ve noticed that sometimes, despite what I want, the server itself and even my browsers will still cache files, especially if I’m just fine tuning a production site rather than working on the early stages of a new project. It’s all part of how things are configured to make browsing faster and it’s not always obvious that it’s happening. With regards to caching plugins I’ve found them to be largely ineffectual. Using a host like FlyWheel that really sets servers up well is far more effective. But then you also sometimes need cache busting solutions like yours. Glad it’s fixed. 😊Tony Djukic– Tony Djukic2020-10-18 15:36:25 +00:00Commented Oct 18, 2020 at 15:36
Add a comment |
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. custom-post-types), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-css