The issue here is that the user is getting the following error.
"Toolset plugin cannot connect to toolset.com
Toolset needs to connect to its server to check for new releases and security updates. Something in the network or security settings is preventing this. Please allow outgoing communication to toolset.com to remove this notice"
Installer Log: Response = "Site key not matching"
Solution:
Go to Dashboard -> Updates and click on Check for Updates then try going back to your plugins page to see if the Toolset is still not connecting.
Problem: I would like to set up a conditional that tests the time of the most recent post edit. If the most recent edit was less than 5 minutes ago, I would like to show some content.
Solution: Use the wpv-post-date shortcode to output a Unix timestamp, subtract that value from NOW(), and compare that value against the number of seconds in 5 minutes (300) using the following syntax:
[wpv-conditional if="( (NOW() - [wpv-post-date type="modified" format="U"] ) lt 300 )"]
...the most recent edit was less than 5 minutes ago...
[/wpv-conditional]