Hey, having just spoke to someone about this, I wa...
# suitecommerce
s
Hey, having just spoke to someone about this, I want to point out that we are slowly rolling out dynamic rendering to some sites. Dynamic rendering is a page generation strategy that changes the way the SEO Page Generator works. Essentially, it means for sites it is enabled on, NetSuite will now detect if the user is a human or bot and only generate a pre-rendered page if it thinks the user is a bot. This will give a performance boost for human users on non-cached pages. This will, however, necessitate a change in the way that you debug the page generator. In short, it looks like using the
view-source
URI will no longer in these cases. You will either need to use the DOM browser in your browser’s UI or curl. You’ll know that dynamic rendering is enabled if your page source looks like this:
Copy code
<div id="main" class="main">...</div>
Note the ellipsis instead of the empty main div. You’ll also see something like this at the base of the debug log:
Copy code
[08:53:07.154] [    +0 ms ] Dynamic Rendering and Browser request
[08:53:07.284] [  +130 ms ] Generated the frame page for the requested URL
[08:53:07.286] [    +2 ms ] The rendered frame page response - no prerendered content - has been cached
To be clear,
seodebug=T
will still work, but you can’t use it in combination with
view-source
– use your browser’s DOM or curl to get the page source.
👍🏼 1
👍🏻 1