Conditional JS only loads on Dev, but not on Production

I am using the following code in my partial. This renders a script tag when I’m using hugo serve, but when I build the site and rsync to my server, the script tags never render on production site. I’m not sure what to do here.

{{ if .Site.Params.scripts.fb }}
	{{ if eq .Section "community" }}
		<div id="fb-root"></div>
		<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v17.0&appId=108871966288173&autoLogAppEvents=1" nonce="eBFOWRiZ"></script>
	{{ end }}
{{ end }}

Sometimes it doesn’t render on local dev hugo serve either. I have to save the file again and it refreshes and renders it sometimes.

Script tags do not render.

If I just press ctrl+s to save file again, the same code, it renders the script tags:

So I figure it’s rendering the tags on /community section, so I build site, rsync public to server, and there it does not render the script tags.

I do hugo serve again, and again on local dev, it does not render the tags. I go to the text editor, I save file again, and it renders the script tags. If I kill hugo serve and restart it, same thing happens and it does not render the script tags. If I save file, it renders the tags on local dev.

I have absolutely no idea what is going on here.

Please advise.

A simple hugo server will first render “everything” and then only render the pages you change. To render “everything” anytime you save something somewhere you have to run hugo server --disableFastRender. Does running that command change the behaviour for you?

I can try that, but it’s not just that. When building the site, it also doesn’t render the script tags.

I just tested it. It doesn’t change the behavior. Script tags are not rendered.

Steps:

  1. Save code in file, scripts.html partial. Save file.

  2. hugo serve

  3. Check localhost:1313/community/, script tags do not render.

  4. Go to editor, and without editing anything, just only save file scripts.html again.

  5. Hugo will refresh and script tags will render.

This is very odd behavior.

How do you call the partial?

Is the context passed into the partial (the dot) the same every time?

Do you see one page clobbering another when you run hugo --printPathWarnings?

	{{ partialCached "scripts.html" . }}

Yes

$  hugo --printPathWarnings
Start building sites … 
hugo v0.115.0-67caf50698783d3b3d78559ac81483d83e5e1a35+extended linux/amd64 BuildDate=2023-06-29T15:56:39Z VendorInfo=snap:0.115.0

                   |  EN   
-------------------+-------
  Pages            |  896  
  Paginator pages  |   25  
  Non-page files   |   28  
  Static files     | 2469  
  Processed images |    0  
  Aliases          |  415  
  Sitemaps         |    1  
  Cleaned          |    0  

Total in 1617 ms

No.

You are caching the partial.

I altered to test without caching, and it shows the same behavior. Upon hugo serve or build site, it will not render the script tags.

I changed every instance of {{ partialCached "scripts.html" . }} with {{ partial "scripts.html" . }}.

Build site or Launch hugo serve and script tags are not rendered.

I suggest you search your code for all instances of “partialCached”. This is definitely a “you” problem, not a “Hugo” problem.

Also check to see if you are using the global page function anywhere.

Every other script tag in scripts.html is rendered. Just the ones in the code/condition I showed, only that script tag doesn’t render.

The rest of the template contents are rendered fine.

Is this still a me/template/partialCached problem?

@jmooring If it was a template or a partialCached problem, the entire template would fail to render, no?

{{ if .Site.Params.scripts.fb }}
		<div id="fb-root"></div>
		<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v17.0&appId=108871966288173&autoLogAppEvents=1" nonce="eBFOWRiZ"></script>
{{ end }}

Can you please explain how this is a partialCached or template or me issue?

I just took off the if .eq Section “community” condition, and now the script tags render with partialCached just fine.

No, it would not.

Having me guess is a waste of your time. Please share your repo, privately if you wish.

Ok, will do. Please see my last comment.

Of course it does.

Definitely a problem with your site. This works with a fresh site https://file.io/J4hzqnHBDL4y (download, extract, run hugo server, visit /community section, and view source code).

1 Like

So the if condition is causing it to not render? partial or partialCached both do not render the script tags when inside the if condition. If not in an if condition, they work fine.

If you use partial or partialCached, it doesn’t make a difference. If the script tags are within that condition, they don’t render the first time, but render when I save again, as I described.

I’m just trying to confirm if it is really a me issue. I’ve also never said it’s a hugo issue. I’m just trying to figure out why this peculiar behavior is happening.

Repository shared in private.

Here’s what I did with your repo:

git clone https://gitlab.com/user/project.git
cd project
npm ci
rm -rf public/ && hugo && grep -ro fb-root public | wc -l

The last line counts the number of lines in all of the files in the public directory that contain the string “fb-root”.

The result: 0

Then in themes/hugo-universal-theme/layouts/section/community.html I changed this:

{{ partialCached "scripts.html" . }}

to this:

{{ partial "scripts.html" . }}

Then I cleared the public directory, rebuilt, and counted:

rm -rf public/ && hugo && grep -ro fb-root public | wc -l

The result: 99

Matching files...
public/community/slovenia/index.html:fb-root
public/community/slovenia/ljubljana/index.html:fb-root
public/community/india/index.html:fb-root
public/community/india/karnataka/index.html:fb-root
public/community/palestine/index.html:fb-root
public/community/ireland/index.html:fb-root
public/community/global/global/index.html:fb-root
public/community/global/index.html:fb-root
public/community/denmark/index.html:fb-root
public/community/portugal/lisbon/index.html:fb-root
public/community/portugal/index.html:fb-root
public/community/new-zealand/index.html:fb-root
public/community/venezuela/index.html:fb-root
public/community/sweden/index.html:fb-root
public/community/pakistan/index.html:fb-root
public/community/belgium/gent/index.html:fb-root
public/community/belgium/index.html:fb-root
public/community/united-states/new-york/index.html:fb-root
public/community/united-states/north-dakota/index.html:fb-root
public/community/united-states/d-c/index.html:fb-root
public/community/united-states/virginia/index.html:fb-root
public/community/united-states/wisconsin/index.html:fb-root
public/community/united-states/flordia/index.html:fb-root
public/community/united-states/texas/index.html:fb-root
public/community/united-states/oregon/index.html:fb-root
public/community/united-states/illinois/index.html:fb-root
public/community/united-states/tennessee/index.html:fb-root
public/community/united-states/index.html:fb-root
public/community/united-states/california/index.html:fb-root
public/community/united-states/new-mexico/index.html:fb-root
public/community/united-states/arizona/index.html:fb-root
public/community/united-states/michigan/index.html:fb-root
public/community/united-states/florida/index.html:fb-root
public/community/united-states/new-jersey/index.html:fb-root
public/community/united-states/pennsylvania/index.html:fb-root
public/community/united-states/missouri/index.html:fb-root
public/community/united-states/washington-d-c/index.html:fb-root
public/community/united-states/alaska/index.html:fb-root
public/community/united-states/washington/index.html:fb-root
public/community/united-states/georgia/index.html:fb-root
public/community/united-states/minnesota/index.html:fb-root
public/community/united-states/maryland/index.html:fb-root
public/community/united-states/arkansas/index.html:fb-root
public/community/united-states/maine/index.html:fb-root
public/community/united-states/nebraska/index.html:fb-root
public/community/united-states/colorado/index.html:fb-root
public/community/united-states/utah/index.html:fb-root
public/community/united-states/ohio/index.html:fb-root
public/community/united-states/connecticut/index.html:fb-root
public/community/united-states/south-carolina/index.html:fb-root
public/community/united-states/massachusetts/index.html:fb-root
public/community/united-states/north-carolina/index.html:fb-root
public/community/united-states/lousiana/index.html:fb-root
public/community/index.html:fb-root
public/community/netherlands/index.html:fb-root
public/community/netherlands/nh/index.html:fb-root
public/community/czech-republic/index.html:fb-root
public/community/czech-republic/klecany/index.html:fb-root
public/community/peru/index.html:fb-root
public/community/canada/newfoundland-and-labrador/index.html:fb-root
public/community/canada/british-columbia/index.html:fb-root
public/community/canada/quebec/index.html:fb-root
public/community/canada/index.html:fb-root
public/community/canada/qc/index.html:fb-root
public/community/canada/alberta/index.html:fb-root
public/community/canada/ontario/index.html:fb-root
public/community/australia/victoria/index.html:fb-root
public/community/australia/index.html:fb-root
public/community/australia/queensland/index.html:fb-root
public/community/germany/index.html:fb-root
public/community/germany/bavaria/index.html:fb-root
public/community/germany/jesenwang/index.html:fb-root
public/community/mexico/index.html:fb-root
public/community/mexico/jalisco/index.html:fb-root
public/community/spain/index.html:fb-root
public/community/spain/alicante/index.html:fb-root
public/community/brazil/index.html:fb-root
public/community/georgia/index.html:fb-root
public/community/hungary/index.html:fb-root
public/community/austria/index.html:fb-root
public/community/norway/index.html:fb-root
public/community/slovakia/index.html:fb-root
public/community/switzerland/index.html:fb-root
public/community/israel/index.html:fb-root
public/community/romania/index.html:fb-root
public/community/poland/index.html:fb-root
public/community/philippines/metro-manila/index.html:fb-root
public/community/philippines/index.html:fb-root
public/community/italy/index.html:fb-root
public/community/italy/mi/index.html:fb-root
public/community/italy/to/index.html:fb-root
public/community/lithuania/index.html:fb-root
public/community/costa-rica/puntarenas-province/index.html:fb-root
public/community/costa-rica/index.html:fb-root
public/community/france/index.html:fb-root
public/community/united-kingdom/oxford/index.html:fb-root
public/community/united-kingdom/europe/index.html:fb-root
public/community/united-kingdom/index.html:fb-root
public/community/united-kingdom/canterbury/index.html:fb-root

When I made the change in all three places:

image

The result: 364

Matching files
public/community/slovenia/index.html:fb-root
public/community/slovenia/ljubljana/index.html:fb-root
public/community/slovenia/ljubljana/psihedelično-društvo-slovenije-/-the-psychedelic-society-of-slovenia/index.html:fb-root
public/community/india/the-psychedelic-society-of-india/index.html:fb-root
public/community/india/psychedelic-adventure/index.html:fb-root
public/community/india/psychedelic-society-india/index.html:fb-root
public/community/india/index.html:fb-root
public/community/india/karnataka/psyfamily/index.html:fb-root
public/community/india/karnataka/index.html:fb-root
public/community/palestine/index.html:fb-root
public/community/palestine/palestinian-psychedelic-society/index.html:fb-root
public/community/psychedelic-media-companies-list/index.html:fb-root
public/community/ireland/the-psychedelic-society-of-ireland/index.html:fb-root
public/community/ireland/index.html:fb-root
public/community/global/global/index.html:fb-root
public/community/global/global/ayamundo/index.html:fb-root
public/community/global/world-ayahuasca-conference/index.html:fb-root
public/community/global/index.html:fb-root
public/community/global/samadhi.today/index.html:fb-root
public/community/global/alius-research-group/index.html:fb-root
public/community/denmark/index.html:fb-root
public/community/denmark/psykedelisk-samfund-/-psychedelic-society-of-denmark/index.html:fb-root
public/community/psychedelic-service-providers-list/index.html:fb-root
public/community/portugal/kosmicare/index.html:fb-root
public/community/portugal/porto-psychedelic-society/index.html:fb-root
public/community/portugal/lisbon/index.html:fb-root
public/community/portugal/lisbon/portuguese-psychedelic-society/index.html:fb-root
public/community/portugal/index.html:fb-root
public/community/portugal/lisbon-psychedelic-society/index.html:fb-root
public/community/portugal/checkn-free-mind-to-fly/index.html:fb-root
public/community/new-zealand/index.html:fb-root
public/community/new-zealand/psychedelics-new-zealand/index.html:fb-root
public/community/venezuela/index.html:fb-root
public/community/venezuela/amazon-and-mesoamerican-ancient-indigenous-medicine-tours-project/index.html:fb-root
public/community/sweden/index.html:fb-root
public/community/sweden/nätverket-för-psykedelisk-vetenskap-swedish-network-for-psychedelic-science/index.html:fb-root
public/community/pakistan/legalize-cannabis-in-pakistan/index.html:fb-root
public/community/pakistan/index.html:fb-root
public/community/belgium/gent/index.html:fb-root
public/community/belgium/gent/psychonauten-in-gesprek/index.html:fb-root
public/community/belgium/index.html:fb-root
public/community/united-states/new-york/the-psychedelic-society-of-western-new-york/index.html:fb-root
public/community/united-states/new-york/psychedelic-education-and-continuing-care-program/index.html:fb-root
public/community/united-states/new-york/the-sanctuary-project/index.html:fb-root
public/community/united-states/new-york/index.html:fb-root
public/community/united-states/new-york/horizons-perspectives-on-psychedelics/index.html:fb-root
public/community/united-states/new-york/sacred-plants-ayam/index.html:fb-root
public/community/united-states/new-york/brooklyn-psychedelic-society/index.html:fb-root
public/community/united-states/new-york/new-york-city-psychedelic-society/index.html:fb-root
public/community/united-states/new-york/fluence/index.html:fb-root
public/community/united-states/north-dakota/fargo-moorhead-psychedelic-society/index.html:fb-root
public/community/united-states/north-dakota/index.html:fb-root
public/community/united-states/north-dakota/the-north-dakota-psychedelic-club-und/index.html:fb-root
public/community/united-states/psychedelic-seminars/index.html:fb-root
public/community/united-states/psychedelic-club/index.html:fb-root
public/community/united-states/d-c/index.html:fb-root
public/community/united-states/d-c/d.c.-psychedelic-society/index.html:fb-root
public/community/united-states/d-c/d.c.-friends-of-psychedelic-science/index.html:fb-root
public/community/united-states/virginia/psychedelic-club-of-charlottesville/index.html:fb-root
public/community/united-states/virginia/index.html:fb-root
public/community/united-states/wisconsin/omterra/index.html:fb-root
public/community/united-states/wisconsin/index.html:fb-root
public/community/united-states/flordia/the-rollins-psychedelic-club/index.html:fb-root
public/community/united-states/flordia/index.html:fb-root
public/community/united-states/texas/index.html:fb-root
public/community/united-states/texas/dallas-psychedelic-society/index.html:fb-root
public/community/united-states/texas/houston-psychedelic-society/index.html:fb-root
public/community/united-states/texas/austin-psychedelic-society/index.html:fb-root
public/community/united-states/rest-pit/index.html:fb-root
public/community/united-states/oregon/exploring-psychedelics/index.html:fb-root
public/community/united-states/oregon/peers-portland-entheogenic-exploration-and-research-society/index.html:fb-root
public/community/united-states/oregon/index.html:fb-root
public/community/united-states/oregon/portland-psychedelic-society/index.html:fb-root
public/community/united-states/oregon/psilocybin-services-initiative/index.html:fb-root
public/community/united-states/oregon/eugene-center-for-ethnobotanical-studies-ecfes/index.html:fb-root
public/community/united-states/oregon/psychedelic-society-of-eugene/index.html:fb-root
public/community/united-states/oregon/oregon-psilocybin-society/index.html:fb-root
public/community/united-states/psychedelic-meetups/index.html:fb-root
public/community/united-states/illinois/chicago-psychedelic-community/index.html:fb-root
public/community/united-states/illinois/psychedelics-and-the-future-of-psychiatry/index.html:fb-root
public/community/united-states/illinois/index.html:fb-root
public/community/united-states/illinois/psychedelic-safety-support-and-integration/index.html:fb-root
public/community/united-states/tennessee/nashville-psychedelic-society/index.html:fb-root
public/community/united-states/tennessee/index.html:fb-root
public/community/united-states/index.html:fb-root
public/community/united-states/psymposia/index.html:fb-root
public/community/united-states/california/psychedelic-club-of-ucsb/index.html:fb-root
public/community/united-states/california/seeing-machine-films/index.html:fb-root
public/community/united-states/california/jfk-university/index.html:fb-root
public/community/united-states/california/southern-california-psychedelics-research-society/index.html:fb-root
public/community/united-states/california/aware-project-rethinking-psychedelics/index.html:fb-root
public/community/united-states/california/cognitive-freedom-alliance/index.html:fb-root
public/community/united-states/california/entheo-city/index.html:fb-root
public/community/united-states/california/akasa-journeys/index.html:fb-root
public/community/united-states/california/ciis-center-for-psychedelic-therapies-and-research/index.html:fb-root
public/community/united-states/california/aware-project-rethinking-psychedelics-san-diego/index.html:fb-root
public/community/united-states/california/innerspace-integration/index.html:fb-root
public/community/united-states/california/santa-cruz-psychedelic-society/index.html:fb-root
public/community/united-states/california/womens-visionary-council/index.html:fb-root
public/community/united-states/california/sacramento-psychedelic-club/index.html:fb-root
public/community/united-states/california/mt.-tam-psychedelic-integration/index.html:fb-root
public/community/united-states/california/index.html:fb-root
public/community/united-states/california/the-meaning-response/index.html:fb-root
public/community/united-states/california/san-francisco-psychedelic-society/index.html:fb-root
public/community/united-states/california/psychedelia-psychedelic-experience-integration-los-angeles/index.html:fb-root
public/community/united-states/california/lamps-los-angeles-medicinal-plant-society/index.html:fb-root
public/community/united-states/california/erie-entheogenic-research-integration-and-education/index.html:fb-root
public/community/united-states/california/kriya-conference/index.html:fb-root
public/community/united-states/california/psychedelic-club-of-san-mateo/index.html:fb-root
public/community/united-states/california/zendo-project/index.html:fb-root
public/community/united-states/california/the-psychedelic-integration-coach/index.html:fb-root
public/community/united-states/california/monterey-psychedelic-society/index.html:fb-root
public/community/united-states/california/psychedelic-santa-cruz/index.html:fb-root
public/community/united-states/california/kriya-institute-ketamine-research-institute/index.html:fb-root
public/community/united-states/california/womens-visionary-congress/index.html:fb-root
public/community/united-states/california/entheomedicine/index.html:fb-root
public/community/united-states/new-mexico/index.html:fb-root
public/community/united-states/new-mexico/new-mexico-psychedelic-club/index.html:fb-root
public/community/united-states/psychedelic-science/index.html:fb-root
public/community/united-states/arizona/psychedelic-club-of-phoenix/index.html:fb-root
public/community/united-states/arizona/index.html:fb-root
public/community/united-states/arizona/tucson-psychedelic-society/index.html:fb-root
public/community/united-states/michigan/michigan-psychedelic-society/index.html:fb-root
public/community/united-states/michigan/transpersonal-michigan/index.html:fb-root
public/community/united-states/michigan/index.html:fb-root
public/community/united-states/michigan/grand-rapids-psychedelic-society/index.html:fb-root
public/community/united-states/florida/index.html:fb-root
public/community/united-states/florida/florida-psychedelic-society/index.html:fb-root
public/community/united-states/florida/south-florida-psychedelic-society/index.html:fb-root
public/community/united-states/new-jersey/index.html:fb-root
public/community/united-states/new-jersey/princeton-psychonautics-club/index.html:fb-root
public/community/united-states/dancesafe/index.html:fb-root
public/community/united-states/pennsylvania/phoenixville-psychedelic-society/index.html:fb-root
public/community/united-states/pennsylvania/penn-society-for-psychedelic-science/index.html:fb-root
public/community/united-states/pennsylvania/index.html:fb-root
public/community/united-states/pennsylvania/psychedelic-club-of-pittsburgh/index.html:fb-root
public/community/united-states/pennsylvania/philadelphia-psychedelic-society/index.html:fb-root
public/community/united-states/missouri/kansas-city-psychedelic-society/index.html:fb-root
public/community/united-states/missouri/index.html:fb-root
public/community/united-states/missouri/psychedelic-society-of-st.-louis/index.html:fb-root
public/community/united-states/washington-d-c/catharsis-on-the-mall/index.html:fb-root
public/community/united-states/washington-d-c/unity-conference/index.html:fb-root
public/community/united-states/washington-d-c/index.html:fb-root
public/community/united-states/alaska/index.html:fb-root
public/community/united-states/alaska/alaska-psychedelic-society/index.html:fb-root
public/community/united-states/washington/index.html:fb-root
public/community/united-states/washington/seattle-mind-travelers/index.html:fb-root
public/community/united-states/washington/port-townsend-psychedelic-society/index.html:fb-root
public/community/united-states/washington/cascadia-psychedelic-community/index.html:fb-root
public/community/united-states/washington/seattle-psychedelic-society/index.html:fb-root
public/community/united-states/students-for-sensible-drug-policy-ssdp/index.html:fb-root
public/community/united-states/georgia/reform-conference/index.html:fb-root
public/community/united-states/georgia/index.html:fb-root
public/community/united-states/georgia/psychedelic-club-at-university-of-georgia/index.html:fb-root
public/community/united-states/georgia/entheocoach/index.html:fb-root
public/community/united-states/georgia/psyatlanta/index.html:fb-root
public/community/united-states/minnesota/psychedelic-society-of-minnesota/index.html:fb-root
public/community/united-states/minnesota/index.html:fb-root
public/community/united-states/minnesota/psychedelic-parenting/index.html:fb-root
public/community/united-states/maryland/baltimore-psychedelic-society/index.html:fb-root
public/community/united-states/maryland/bloom-baltimore/index.html:fb-root
public/community/united-states/maryland/index.html:fb-root
public/community/united-states/psychedelics-philosophy/index.html:fb-root
public/community/united-states/arkansas/index.html:fb-root
public/community/united-states/arkansas/nwa-psychedelic-society/index.html:fb-root
public/community/united-states/the-third-wave/index.html:fb-root
public/community/united-states/maine/index.html:fb-root
public/community/united-states/maine/dirigo-psychedelic-society/index.html:fb-root
public/community/united-states/maine/psychedelic-club-of-maine/index.html:fb-root
public/community/united-states/nebraska/index.html:fb-root
public/community/united-states/nebraska/psychedelic-society-of-omaha/index.html:fb-root
public/community/united-states/920-coalition/index.html:fb-root
public/community/united-states/colorado/psychedelic-club-of-denver/index.html:fb-root
public/community/united-states/colorado/psychedelic-club-of-breckenridge/index.html:fb-root
public/community/united-states/colorado/magic-agency/index.html:fb-root
public/community/united-states/colorado/psychedelic-club-of-durango/index.html:fb-root
public/community/united-states/colorado/psychedelic-club-at-csu/index.html:fb-root
public/community/united-states/colorado/psychedelic-club-of-colorado-springs/index.html:fb-root
public/community/united-states/colorado/index.html:fb-root
public/community/united-states/colorado/denver-for-psilocybin/index.html:fb-root
public/community/united-states/colorado/naropa-alliance-for-psychedelic-studies/index.html:fb-root
public/community/united-states/colorado/psychedelics-today/index.html:fb-root
public/community/united-states/utah/index.html:fb-root
public/community/united-states/utah/utah-valley-psychedelic-society/index.html:fb-root
public/community/united-states/utah/east-forest/index.html:fb-root
public/community/united-states/ohio/index.html:fb-root
public/community/united-states/ohio/mind-manifest-midwest/index.html:fb-root
public/community/united-states/ohio/women-and-entheogens/index.html:fb-root
public/community/united-states/connecticut/elm-city-psychedelic-society/index.html:fb-root
public/community/united-states/connecticut/yale-psychedelic-science-group/index.html:fb-root
public/community/united-states/connecticut/western-connecticut-psychedelic-society/index.html:fb-root
public/community/united-states/connecticut/index.html:fb-root
public/community/united-states/chacruna.net/index.html:fb-root
public/community/united-states/south-carolina/index.html:fb-root
public/community/united-states/south-carolina/aftercare-project/index.html:fb-root
public/community/united-states/south-carolina/society-for-the-exploration-of-altered-states-seas/index.html:fb-root
public/community/united-states/psychedelic-grad/index.html:fb-root
public/community/united-states/ayahuasca-community/index.html:fb-root
public/community/united-states/massachusetts/harvard-undergraduate-science-of-psychedelics-club/index.html:fb-root
public/community/united-states/massachusetts/psychedelic-society-of-new-england/index.html:fb-root
public/community/united-states/massachusetts/index.html:fb-root
public/community/united-states/massachusetts/boston-entheogenic-network-ben/index.html:fb-root
public/community/united-states/north-carolina/harmonia/index.html:fb-root
public/community/united-states/north-carolina/index.html:fb-root
public/community/united-states/north-carolina/psychedelic-club-of-unc-asheville/index.html:fb-root
public/community/united-states/lousiana/index.html:fb-root
public/community/united-states/lousiana/louisiana-psychedelic-society/index.html:fb-root
public/community/united-states/psychedelics-and-philosophy/index.html:fb-root
public/community/united-states/evolver/index.html:fb-root
public/community/index.html:fb-root
public/community/psychedelic-educational-program-list/index.html:fb-root
public/community/netherlands/metamorphogenesis/index.html:fb-root
public/community/netherlands/triptherapie/index.html:fb-root
public/community/netherlands/psychedelische-therapie-nederland/index.html:fb-root
public/community/netherlands/index.html:fb-root
public/community/netherlands/tripsitter.amsterdam/index.html:fb-root
public/community/netherlands/safe-spaces-amsterdam/index.html:fb-root
public/community/netherlands/tripskelion/index.html:fb-root
public/community/netherlands/summer-of-love-3.0-third-time-lucky/index.html:fb-root
public/community/netherlands/nh/index.html:fb-root
public/community/netherlands/nh/psychedelic-insights/index.html:fb-root
public/community/netherlands/psychedelic-society-of-the-netherlands/index.html:fb-root
public/community/netherlands/truffles-therapy/index.html:fb-root
public/community/netherlands/psychedelic-integration/index.html:fb-root
public/community/czech-republic/index.html:fb-root
public/community/czech-republic/klecany/index.html:fb-root
public/community/czech-republic/klecany/czech-psychedelic-society/index.html:fb-root
public/community/peru/parign-hak-grandmas-home/index.html:fb-root
public/community/peru/index.html:fb-root
public/community/canada/newfoundland-and-labrador/psychedelic-society-of-newfoundland-and-labrador/index.html:fb-root
public/community/canada/newfoundland-and-labrador/index.html:fb-root
public/community/canada/british-columbia/vancouver-psychedelic-society/index.html:fb-root
public/community/canada/british-columbia/index.html:fb-root
public/community/canada/british-columbia/victoria-entheogen-discussions-and-support/index.html:fb-root
public/community/canada/british-columbia/victoria-association-for-psychedelic-studies/index.html:fb-root
public/community/canada/quebec/montreal-psychedelic-society-/-société-psychédélique-de-montréal/index.html:fb-root
public/community/canada/quebec/index.html:fb-root
public/community/canada/index.html:fb-root
public/community/canada/qc/index.html:fb-root
public/community/canada/qc/canada-research-chemicals/index.html:fb-root
public/community/canada/alberta/the-psychedelic-medicine-society-of-calgary/index.html:fb-root
public/community/canada/alberta/index.html:fb-root
public/community/canada/alberta/psychedelic-discussions/index.html:fb-root
public/community/canada/ontario/the-psychedelic-society-of-first-responders-and-emergency-workers/index.html:fb-root
public/community/canada/ontario/toronto-psychedelic-society/index.html:fb-root
public/community/canada/ontario/kwcg-psychedelic-society/index.html:fb-root
public/community/canada/ontario/kingston-psychedelic-society/index.html:fb-root
public/community/canada/ontario/index.html:fb-root
public/community/canada/ontario/forest-city-psychedelic-community/index.html:fb-root
public/community/canada/ontario/sudbury-psychedelic-society/index.html:fb-root
public/community/canada/ontario/toronto-west-psychotherapy/index.html:fb-root
public/community/canada/ontario/herbs-and-wonders/index.html:fb-root
public/community/canada/ontario/ottawa-psychedelic-education-network/index.html:fb-root
public/community/canada/entheogenic-research-guild-of-toronto/index.html:fb-root
public/community/australia/victoria/index.html:fb-root
public/community/australia/victoria/enpsychedelia/index.html:fb-root
public/community/australia/victoria/dancewize/index.html:fb-root
public/community/australia/victoria/australian-psychedelic-society/index.html:fb-root
public/community/australia/victoria/psychedelic-research-in-science-and-medicine-prism/index.html:fb-root
public/community/australia/victoria/entheogenesis-australis-ega/index.html:fb-root
public/community/australia/victoria/entheogenesis-australis/index.html:fb-root
public/community/australia/index.html:fb-root
public/community/australia/ssdp-australia/index.html:fb-root
public/community/australia/queensland/australian-psychedelic-society-brisbane-chapter/index.html:fb-root
public/community/australia/queensland/index.html:fb-root
public/community/germany/index.html:fb-root
public/community/germany/bavaria/index.html:fb-root
public/community/germany/bavaria/the-psychonautical-society/index.html:fb-root
public/community/germany/jesenwang/the-psychedelic-society-of-germany/index.html:fb-root
public/community/germany/jesenwang/index.html:fb-root
public/community/germany/psychedelic-society-berlin/index.html:fb-root
public/community/germany/psychonautwiki/index.html:fb-root
public/community/germany/alteredconference-altered/index.html:fb-root
public/community/global-psychedelic-society/index.html:fb-root
public/community/mexico/mind-surf/index.html:fb-root
public/community/mexico/espolea/index.html:fb-root
public/community/mexico/sociedad-psiquedelica-mexico/index.html:fb-root
public/community/mexico/index.html:fb-root
public/community/mexico/jalisco/integrations-retreats/index.html:fb-root
public/community/mexico/jalisco/index.html:fb-root
public/community/spain/psychedelic-society-barcelona/index.html:fb-root
public/community/spain/asociación-transpersonal-iberoamericana/index.html:fb-root
public/community/spain/iceers-foundation/index.html:fb-root
public/community/spain/the-psychedelic-society-of-madrid/index.html:fb-root
public/community/spain/journal-of-transpersonal-research/index.html:fb-root
public/community/spain/index.html:fb-root
public/community/spain/alicante/la-sociedad-psicodélica/index.html:fb-root
public/community/spain/alicante/index.html:fb-root
public/community/brazil/index.html:fb-root
public/community/brazil/plantando-consciencia/index.html:fb-root
public/community/psychedelic-harm-reduction-list/index.html:fb-root
public/community/georgia/index.html:fb-root
public/community/georgia/georgia-psychedelic-society/index.html:fb-root
public/community/hungary/multidiszciplináris-társaság-a-pszichedelikumok-kutatásáért/index.html:fb-root
public/community/hungary/dát2-psy-help/index.html:fb-root
public/community/hungary/index.html:fb-root
public/community/hungary/hungarian-psychedelic-community-daath.hu/index.html:fb-root
public/community/austria/index.html:fb-root
public/community/austria/psychedelic-society-vienna/index.html:fb-root
public/community/norway/index.html:fb-root
public/community/norway/emmasofia/index.html:fb-root
public/community/connect-with-a-psychedelic-society-near-you./index.html:fb-root
public/community/slovakia/index.html:fb-root
public/community/slovakia/slovak-psychedelic-society-sapas/index.html:fb-root
public/community/switzerland/index.html:fb-root
public/community/switzerland/psychedelic-society-switzerland/index.html:fb-root
public/community/psychedelic-campaign-initiative-list/index.html:fb-root
public/community/psychedelic-conferences-events-organizations/index.html:fb-root
public/community/israel/index.html:fb-root
public/community/israel/anashim-tovim/index.html:fb-root
public/community/israel/safe-shore-hof-mivtahim/index.html:fb-root
public/community/romania/sociedelic/index.html:fb-root
public/community/romania/index.html:fb-root
public/community/romania/awaken/index.html:fb-root
public/community/romania/clinica-color-mind/index.html:fb-root
public/community/poland/index.html:fb-root
public/community/poland/polskie-towarzystwo-psychodeliczne/index.html:fb-root
public/community/philippines/metro-manila/index.html:fb-root
public/community/philippines/metro-manila/nobox-philippines/index.html:fb-root
public/community/philippines/index.html:fb-root
public/community/philippines/nobox-philipines/index.html:fb-root
public/community/italy/index.html:fb-root
public/community/italy/mi/index.html:fb-root
public/community/italy/mi/società-psichedelica-italiana/index.html:fb-root
public/community/italy/to/index.html:fb-root
public/community/italy/to/psycore-the-multidisciplinary-italian-network-for-psychedelic-and-consciousness-research/index.html:fb-root
public/community/lithuania/jauna-banga-young-wave/index.html:fb-root
public/community/lithuania/index.html:fb-root
public/community/lithuania/psychedelic-society-lithuania/index.html:fb-root
public/community/costa-rica/puntarenas-province/soltara-healing-center/index.html:fb-root
public/community/costa-rica/puntarenas-province/index.html:fb-root
public/community/costa-rica/index.html:fb-root
public/community/costa-rica/sociedad-psicodélica-centroamericana/index.html:fb-root
public/community/costa-rica/sabiduría-vegetal/index.html:fb-root
public/community/france/artemoc/index.html:fb-root
public/community/france/index.html:fb-root
public/community/france/keep-smiling/index.html:fb-root
public/community/france/communauté-psychédélique-francophone/index.html:fb-root
public/community/france/communauté-psychédélique-francophone-cpf/index.html:fb-root
public/community/france/société-psychédélique-française/index.html:fb-root
public/community/france/norml-france/index.html:fb-root
public/community/france/school-for-advanced-studies-in-the-social-sciences/index.html:fb-root
public/community/united-kingdom/oxford/the-beckley-foundation/index.html:fb-root
public/community/united-kingdom/oxford/index.html:fb-root
public/community/united-kingdom/the-psychedelic-society-of-manchester/index.html:fb-root
public/community/united-kingdom/psycare-uk-welfare-and-harm-reduction/index.html:fb-root
etc.

1 Like

Thank you. That makes sense.

Would you know why partialCached is causing this issue?

When you tell Hugo to cache a partial, it caches the result of the partial the first time the partial is rendered. You may call the partial from thousands of places, but it will only be rendered once.

If you have a conditional in the partial, the conditional is evaluated the first time the partial is rendered (see previous paragraph). In your case the conditional was evaluating the current section, which changes depending on the template from which you call the partial.

If you want to cache a partial per section (or per anything else), add a 3rd argument:

{{ partialCached "foo.html" CONTEXT KEY }}

This is covered in the documentation:
https://gohugo.io/functions/partialcached/

1 Like

Oh that makes sense.

  • Cached on first load. Condition does not match.
  • The /community renders the first cached load of scripts.html, which is probably from the main index.html or elsewhere, where the condition does not match.

That makes sense. I’ll check out the documentation more.

Thanks for helping me to debug this.

I see what you mean now. Ok that makes sense.

1 Like