Forum Replies Created
-
AuthorPosts
-
Fetch DesignsKeymaster
Yes, I see it! Thanks for following up. I’ll review and get back to you on this.
Fetch DesignsKeymasterHi Andrew,
I was just waiting to hear back from you from my reply on if the documentation I posted on templates resolved the issue for you or if you can post a link to a page where you are experiencing the issue I can take a look and see if I can assist from this end. Just let me know.
Fetch DesignsKeymasterIt sounds like the Beaver theme may use a different page structure that isn’t compatible with the plugin. I would suggest checking out Overriding Templates in Your Theme. There is likely a fairly easy fix by just editing the “wrappers” to match whatever your theme is using. On that link, refer to the section with the heading “Most Common reason to Edit Template Files”.
If you run into issues, can you please provide a link to one of your sign-up sheet pages that has this issue and I can try and take a closer look. If you would prefer the link not display publicly in this forum, you can click the “Set as private reply” before submitting your response.
Fetch DesignsKeymasterAre you able to check to see if there are any errors being logged when you get that error? If you have
WP_DEBUG
enabled in your wp-config.php file you can find this on your sever at wp-content/debug.log and then look for any reference to “sign-up-sheet”. If you find an error logged at the same time you tested editing in the admin and it failed, then can you please send me the exact error you are seeing?It might also be helpful if you can please confirm which versions you are running of the following… WordPress, Sign-up Sheets Pro Plugin, and PHP. If it is easier, you can send us a copy of your “System Information” which is found under Sign-up Sheets > Help in your admin. You can post it as a reply in this form and just make sure to check the “Set as private reply” before submitting. Or if you prefer, you can send it through out Contact Form.
Fetch DesignsKeymasterI responded to your direct email originally, but looks like I forgot to update the forum here so sorry for the delay on that. In answer to your question…
In the Pro version you can update the “Current Sign-up Sheets” to any text using the shortcode such as… [sign_up_sheet list_title=”Volunteer Opportunities”]
In both version, to hide that heading you can use something like the following…
.page-id-22 h2 {
display: none;
}The .page-id-22 is an example of a class for the page you wish to suppress in my example the page id is “22” but you can update that as needed (this is a class in the
tag).There is currently no class specifically defined on that heading at the moment, but this is expected to be added in a future version of both the Free and Pro plugins.
Fetch DesignsKeymasterYou can try and debug on your end by switching back to one of the built-in themes that comes with WordPress like Twenty Twenty. If that solves the issue there is a conflict with the theme that I can look into further. If that doesn’t work, please try and disable your plugins one by one and retest until the issue is resolved. That should help identify which plugin (if any) are causing a conflict. If you have any other questions, please let me know.
Fetch DesignsKeymasterYes, if you could either upgrade to 2.1.4.7 for testing purposes or setting up a staging site that would be helpful.
Fetch DesignsKeymasterI reviewed and was unable to reproduce. In the scenario you mentioned, once the person submits the second signup for the same slot it should produce a message asking them to confirm “You have already signed up for this task. Do you want to sign up again?” I suspect there may be a theme or other type of conflict that is suppressing this message. Can you provide a url where this is occurring so I can test on your site?
If you need to keep the URL private, you can click “Set as private reply” before clicking the “Submit” button here on this forum to prevent your reply from being viewed publicly.
Fetch DesignsKeymasterThank you for the additional information. I will take a closer look and get back to you on this.
Fetch DesignsKeymasterOne thing you can try is to increase the memory limit on your site temporarily while the migration runs. You can do so by adding the code below to your wp-config.php file…
define( 'WP_MEMORY_LIMIT', '256M' );
The above code is an example and you can adjust the amount
256M
depending on your site and amount of data. If you rerun the migration and notice it gets to a higher percent but still gets stuck, try increasing the limit again. Once the migration is complete you can remove this from your wp-config.php as the migration will only need to be run once.You can view your current memory limit within the WordPress admin under Tools > Site Health > Info (tab) > Server (accordion heading)
Please let me know if this resolves the issue otherwise I can debug further.
Fetch DesignsKeymasterTo help debug this, can you clarify what specific error message is being thrown when this happens?
Fetch DesignsKeymasterIf you want to limit to only certain sign-up sheets, you can get the sheet ID by using
$task->post_parent
which will be the post_id of the sheet for the task that the user signed up for.Fetch DesignsKeymasterThere are two actions that are run after a signup and right before the current redirect back to the sheet page..
dlssus_form_post_process
anddlssus_form_post_process_{TASK_ID}
You should be able to tap into one of these to handle your redirect by adding something along the lines of the code below in your theme’s functions.php file…
function my_custom_sus_redirect($task, $signup_id) { if (empty($signup_id)) { return; // skip redirect if no new signup was created } wp_redirect($some_url); // TODO: replace $some_url with the thank you page exit; } add_action('dlssus_form_post_process', 'my_custom_sus_redirect', 10, 2);
If you run into any trouble, please let me know.
Fetch DesignsKeymasterI checked and it looks like those two words are not currently translatable, but I will add that to the list of fixes for the next version of the plugin. Thanks for calling it out! If you notice anything else, please let me know.
Fetch DesignsKeymasterCan you confirm where you are placing your translation and the name of the files? Sign-up Sheets Pro uses the text domain
fdsus
so you would place the files (if using fr_FR) under…wp-content/languages/plugins/fdsus-fr_FR.mo
wp-content/languages/plugins/fdsus-fr_FR.po -
AuthorPosts