sr293
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Update errorsHello @jminint. Sorry you are experiencing an issue. It’s possible that a compatibility issue may exist with one of the active plugins in your environment loading a different version of a library we use. As a test I would recommend deactivating each of the plugins on your site one at a time to determine if a compatibility issue exists. Plugins that optimize and/or offload resources may be a good place to start. Also, if you are using an older version of PHP, I would recommend updating this to 8+ if possible.
- This reply was modified 2 years, 11 months ago by sr293.
Hello @orbs. You could create a page for each client and then password protect each page using a different password or user-role. Here is a link to more information about protecting a whole page/post: https://patrickposner.dev/passster/docs/how-to-protect-a-whole-page-post/
Also, here is a link to protecting content based on a user-role: https://patrickposner.dev/passster/tutorials/wordpress-restrict-content-role/
If you would like the logo at the top of the page to change based on the protected page, you may want to setup a custom page template in WordPress for each client page.
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] how to convert a specific pageHello @byannas. Thanks for your question. You can use the single export option in Simply Static to export a specific page or post. Here is a link to more information on the option: https://simplystatic.com/docs/how-to-update-content-on-your-static-website/#Single-Exports
Hello @jameswithsupersonic if you would like to have Simply Static automatically generate an export after a post or page has been published you could try using the following filter, which will trigger a single page export:
add_filter( ‘ssp_single_auto_export’,’__return_true’ );
Below is a link to more code snippets that may be of help: https://simplystatic.com/docs/code-snippets/
Hello @espermedia. Sorry you are experiencing an issue using Passster. It sounds like you may be using Passster in combination with the default WordPress password protection to protect your content. If so, Passster will not override the default solution but will add its own in addition. If possible, I would suggest using Passster and disabling the default WordPress password protection. Below is a link to more information on protecting a whole page or post and the different settings available.
https://patrickposner.dev/passster/docs/how-to-protect-a-whole-page-post/
Forum: Plugins
In reply to: [Qyrr - simply and modern QR-Code creation] Create QR Codes via REST APIHello @askdirk. I’m sorry to hear you are experiencing an issue with Qyrr. For Pro version support, could you please send our support team an email? This will allow us to fully investigate the matter.
Hello @stephensdavis. On the child pages you will still need to activate Passster protection and enter the same parent password in the child “password” input box. You may also need to disable the “Use Ajax” option if you are using a page builder or protecting the entire page.
Hello @shinedesign. You can password protect several sections of content on your page by creating multiple Protected Areas in Passster and adding them using a shortcode in Bricks. Below is a link to an article showing the steps using Elementor, but they should be the same for Bricks.
https://patrickposner.dev/passster/tutorials/how-to-password-protect-content-in-elementor/
Hello @deviltwin01. I’m sorry you are experiencing an time out issue while trying to generate the static pages for your site. Typically this type of error can be caused by a firewall or other security feature in your hosting environment that blocks some of the requests made by Simply Static. If you are using a security plugin, I would suggest disabling it and running an export again to see if this resolves the issue for you. I would also recommend enabling the Simply Static debug log option available at the bottle of the Simply Static > Diagnostics page. The debug log may help identify the cause of the error that is occurring. Below is more information about the Simply Static diagnostics feature.
https://simplystatic.com/docs/problems-with-local-development/#Diagnostics
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Homepage link not workingHello @sergejsk. I’m sorry to hear you are experiencing an issue with the href tag of the site title block in your header. I just did a quick test on my side using the twenty twenty three theme, a custom block header, and the site title block. The URL in my test was able to parse correctly. A couple of items to try:
- Disable any optimization and caching plugins that may be active in your WordPress install or on the server and try generating the site again to see if this resolves the issue.
- You may want to try using another block, such as the heading block, and manually adding the URL.
- You may also want to try adjusting the Destination URLs in the General Tab under Simply Static > Settings
Hello @matthewsrick. I’m sorry to hear you are having an issue exporting your website. 171k+ is a very large export. It’s possible that you may be running out of resources in your hosting environment or a long-running process is being stopped. You may want to contact your hosting provider to see if they see any errors, possibly related to resource availability or long-running processes being halted.
Hello @xelramos. You may want to try using the Include/Exclude feature in Simply Static to manually include your Elementor 404 during site generation. Here is more information about this option: https://simplystatic.com/docs/add-missing-files-to-your-static-website/#How-to-fix
Hello jameswithsupersonic, thank you for your questions and interest in Simply Static. Simply Static works like a real user (or a Google Bot). By default, all published pages with a visibility of “public” will be included in the export. Since a private page is not publicly available it will result in a 404 error (page not found) when the generator tries to access it. For a page to be exported, its visibility will need to be set to public.
More info on how to add missing pages: https://simplystatic.com/docs/add-missing-files-to-your-static-website/
To trigger an action on completion of an action in WordPress, you could explore the code snippets section on the Simply Static website.
https://simplystatic.com/docs/code-snippets/
One of the snippets you might be interested in is running an export after publishing a post.