dlsstudios
Forum Replies Created
-
Forum: Plugins
In reply to: [Sign-up Sheets] Two Slots taken by 1 personCan you post a link to the sign-up sheet where this is happening? If not, can you tell me which version of the plugin you are running?
Forum: Plugins
In reply to: [Sign-up Sheets] Where do I edit a Sign-up Sheet?For customizations to styling we recommend using CSS to override any of your default styles coming from your theme. All frontend sign-up elements within the content of the page should be wrapped with a plugin specific class.
For example, to change the size of the title of the sheet on the sheet detail page, it is using an H2 html tag and the sheet is wrapped in a DIV with a class of
dls-sus-sheetso you could add something like this….dls-sus-sheet H2 { font-size: 0.6em; }Otherwise, it pulls the style for that H2 from the CSS in your active theme.
Forum: Plugins
In reply to: [Sign-up Sheets] Where do I edit a Sign-up Sheet?To edit the sign-up sheet, you can hover over the sheet you would like to edit after clicking the “Sign-up Sheets” menu item. One of the options that will appear should be “Edit” that you can click to get in and edit details on the sheet.
Forum: Plugins
In reply to: [Sign-up Sheets] Auto Email Confirmation not workingCan you try deactivating and then reactivating the plugin and let us know if you are still having this issue?
Are you able to test if your WordPress install sends other emails such as when you do a password reset or when a new user registers or any other general system email?
Forum: Plugins
In reply to: [Sign-up Sheets] FEATURE REQUEST- Add Sign-Up button on postsThat’s a great idea. We have added this to our wish list of possible future enhancements, but can’t guarantee when or if it will be included. However, if you are interested in having this added immediately, please email us through our Request for Quote form and we can provide an estimate for adding this feature right away. Thanks!
Forum: Plugins
In reply to: [Sign-up Sheets] Feature Request for proThat’s a great idea! We will add this to our wish list of future enhancements, but can’t guarantee when or if it will be implemented. However, if you are interested in having this feature added right away, please feel free to submit the details of the features you would like on our Request for Quote form and we can provide an estimate for including this within the plugin.
It’s this one… http://wordpress.org/plugins/wp-login-security-2/
That plugin only has two settings. The one we have turned on is to just enable the plugin. It’s function is to require email authentication when a user logs in from an new IP.
Could something have changed with the way sessions are being handled between EDD 1.4.4.3 and 1.9.9.2 that would cause it to try and login or run the
admin_initaction when trying to add an item to the cart?Yes, it does.
Looks like this has now been fixed with the latest update. Thanks!
Any update on if this PHP Notice will be corrected in the plugin? On v5.0.6 we are getting this in our logs…
PHP Notice: Undefined variable: res in /path/to/wordpress/wp-content/plugins/wordfence/lib/wordfenceClass.php on line 455It appears that
$resis never defined in theajax_logHuman_callback()method.Thanks!
Forum: Plugins
In reply to: Problem with wp file monitor plussTo correct that specific error with admin_alert you can…
- edit the file /wordpress-file-monitor-plus/classes/wpfmp.class.php and edit
- search for the line with
public function admin_alert - add
staticto the beginning of that line so it readsstatic public function admin_alert
It sounds like you may have turned on debug mode at some point? or upgraded WordPress which caused this error to pop up. If this is a production site I would recommend you turn off debug mode by setting
WP_DEBUGtofalsein your wp-config.php file so users aren’t seeing these detailed error messages.define('WP_DEBUG', false);Forum: Plugins
In reply to: [Sign-up Sheets] Error 500 – Crash on activationHi Jared,
Can you check your PHP logs to see what error it threw when it failed? Alternatively you should be able to enable debugging in the admin and try and activate the plugin again and you will see the specific error on the screen.
To enable debugging you can set this line to true in your wp-config.php file. Just remember to set to false when you are done.
define('WP_DEBUG', true);Forum: Plugins
In reply to: [Sign-up Sheets] Who can sign up?Anyone can sign-up whether they are registered or non-registered users. There currently is not a way to restrict this within the plugin itself. However, you can create pages that are accessible to only registered users and just put the sign-up sheet short code to that page. This can be restricted programmatically or you can use a plugin like https://wordpress.org/plugins/wordpress-access-control/
If you would like to restrict access specially on the sign-up sheets we are available for custom work and could add this feature. Just send us an email on our Request for Quote form at the URL below with any specifics on how you are hoping it would work for your purposes and we can provide you a quote.
http://www.dlssoftwarestudios.com/contact-us
If you have any other questions, please don’t hesitate to ask.
Forum: Plugins
In reply to: [Sign-up Sheets] How do you publish a sign up sheet once you create itYou can create any page or post where you would like it to appear and enter the shortcode into the content area of that page/post.