dlsstudios
Forum Replies Created
-
Forum: Plugins
In reply to: [Sign-up Sheets] Pro version – signup names not displayingThank you for the additional information. This issue appears to be caused by the caching plugin you have installed. It most likely just had an old version of that page before more people signed up. I would suggest turning off caching for the sign-up sheets page(s) (in your case it would probably just be the /volunteers/ page) and that should solve it.
Forum: Plugins
In reply to: [Sign-up Sheets] Pro version – signup names not displayingDuplicate of this this issue.
Forum: Plugins
In reply to: [Sign-up Sheets] Pro version – signup names not displayingHi tajackson,
I haven’t been able to replicate this issue yet on my end, but we are looking into in. In the meantime, can you please verify what version of the plugin you are using as well as your WordPress version number?
Forum: Plugins
In reply to: [Theme My Login] Change Registration LinkPlease disregard the first reference to
$parsed_link['query'] == 'action=register';Actual code should be…/** * Change register link in Theme My Login * * @param string $link * @param string $action * @param string $query */ function dls_change_register_link($link, $action=null, $query=null) { $parsed_link = parse_url($link); if ($parsed_link['query'] == 'action=register') { $link = 'YOUR REGISTER LINK HERE'; } return $link; } add_filter('tml_page_link', 'dls_change_register_link');Forum: Plugins
In reply to: [Theme My Login] Change Registration LinkTry putting something like this in your functions.php…
/** * Change register link in Theme My Login * * @param string $link * @param string $action * @param string $query */ function dls_change_register_link($link, $action=null, $query=null) { $parsed_link = parse_url($link); $parsed_link['query'] == 'action=register'; if ($parsed_link['query'] == 'action=register') { $link = 'YOUR REGISTER LINK HERE'; } return $link; } add_filter('tml_page_link', 'dls_change_register_link');Forum: Plugins
In reply to: [Sign-up Sheets] Different emails for different addresses?Currently that’s not a feature in the Lite or Pro versions of the plugin, but that’s a great idea! I will add this to our wish list of possible future updates, but I can’t guarantee when or if it will be able to be implemented. If you would like us to develop this for you as a custom addition, please send the request through our “Request a Free Quote” form on our website… http://www.dlssoftwarestudios.com/
Forum: Plugins
In reply to: [Sign-up Sheets] Theme issue and feature request – .cssHi Matt,
Thank you for the feedback.
CSS classes have been included on many of the different elements of the plugin typically prefixed by
.dls-sus-If you are looking to change the styling of elements inside the sign-up form you should be able to reference them in your theme’s CSS file. For example, to add a big purple border to the email input field you can do this….dls-sus-signup-form INPUT.signup_email { border: 5px solid purple }The reCaptcha widget can also be referenced… something like…
.dls-sus-signup-form #recaptcha_widget_div { }Forum: Plugins
In reply to: [Sign-up Sheets] Requestsnxnla,
Your suggestion to allow categories for each sheet has now been added to our Pro version of the Sign-up Sheets plugin! For more information and to get the Pro version you can go here… https://www.dlssoftwarestudios.com/sign-up-sheets-wordpress-plugin/
Forum: Plugins
In reply to: [Sign-up Sheets] Feature requestHi Rod,
Thank you for the suggestions. I have added them to our wish list and will try and post an update here if any of these get added onto future versions.
Thanks!
Forum: Plugins
In reply to: [Sign-up Sheets] doesn't show settingsCan you please post the link to the cookie plugin you are using?
Forum: Plugins
In reply to: [Sign-up Sheets] Rich Text BoxThanks for the inquiry. This is on our wishlist of possible future updates.
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] SSL supportIn the current version it will throw an error since it’s pulling the twitter js (and others) from an insecure URL. In dd-class.php you will need to change the two references from…
http://platform.twitter.com/widgets.jsto this to pull the https when needed…
//platform.twitter.com/widgets.jsNote that there are other references to
http://so you will need to change it to//anytime the code is pulling file (like a js, css, image file, etc).The downside is that until this becomes implemented into the core code of the plugin, anytime you install an upgrade of this plugin you will have to go back in and manually change these references.
Forum: Plugins
In reply to: [Sign-up Sheets] Inserting a Sheet in a Post or on a PageLee_G,
The ability to customize the “sign up” link is not currently a feature of this plugin. However, I will add your request to our wish list of possible future upgrades.
Forum: Plugins
In reply to: [Sign-up Sheets] CaptchaI wanted to update you that the ability to use reCAPTCHA is now a part of our new Pro version of this plugin (among other features). For more information, please visit… http://www.dlssoftwarestudios.com/sign-up-sheets-wordpress-plugin/
Forum: Plugins
In reply to: [Sign-up Sheets] Auto-reply emailI wanted to give an update to let you know we have just incorporated carbon copies on all emails as one of the many new features in our Pro version of the plugin which was just released. For more information, please feel free to visit…
http://www.dlssoftwarestudios.com/sign-up-sheets-wordpress-plugin/