DavidM
Forum Replies Created
-
Forum: Reviews
In reply to: [Appointments] Works beautifully!I did at the time of the review, yes. I don’t work there now but I stand behind my words. The plugin works and does as it says on the tin. ??
I did always wish it had timezone integration, though I realize timezone conversion for appointments may not be needed in most cases.
Cheers,
DavidForum: Plugins
In reply to: [Custom Sidebars - Dynamic Sidebar Widget Area Manager] Interface conflictHiya @the Wachamacallit,
Hope you’re doing well today! Sorry you’ve had an issue with this one, it does sound from your description like there’s some sort of JavaScript conflict, which does usually indicate a conflict with another plugin or the theme.
You can try opening your browser’s console on that page (CTRL-J on Chrome for Windows) and see if an error message shows when making changes. However, it usually takes a fair amount of investigating to figure out what’s actually causing the conflict. That’s typically why it’s advised to just disable plugins one-by-one and/or try the default WP theme to find the conflict. It’s easier and quicker that way.
It’s also possible to setup a test on a local machine using a WAMP install, that way you could try it out with minimal plugins/theme.
If it’s not too much trouble though, quickly deactivating all your plugins and switching to Twenty Sixteen theme, then trying the options on that page, could help to get it sorted fast.
Just to check too, this is the theme you’re using, correct?
https://www.ads-software.com/themes/indibiz/Cheers,
DavidForum: Plugins
In reply to: [CoursePress Learning Management System] Coursepress spamming emailsHeya @breindahl,
Hmm, sounds like a tough one to nail down if it’s emailing arbitrarily. Does it seem totally random? Or is it, as you were saying, only when you do stuff on the site, that it’s sending the emails?
Is there any chance you could try it with other plugins deactivated? To see if maybe another plugin is somehow triggering signup/enrollment?
Cheers,
DavidHi @janthonyallen,
Hope you’re doing well today! ??
I haven’t actually tried it myself, but it looks like that plugin uses standard WordPress functions, as does CoursePress. So I think it might work with:
[post_thumbnail]
Have you tried that?
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] StripeHi @erickbstelpaso,
I hope you won’t mind my jumping in here (I like to help out where possible).
The Stripe gateway included with this free version is the Stripe Single Gateway. I wonder if that might be the issue, since it’s designed just for single payments?
There’s a bit mentioned about that here:
https://www.ads-software.com/support/topic/stripe-single-gateway-causing-502-errors?replies=2Or if that’s not the issue, did you maybe have the API keys reversed? Sometimes people inadvertently enter their Sandbox/Test keys instead of Live keys.
Is that maybe the case?
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] Confirm new members before they can access secure contentHi Cliff,
Hope you won’t mind my jumping in here. I don’t know of a built-in way to handle this currently but as one possibility, you could keep your main membership(s) private and then manually move users to the appropriate membership after receiving notice of signups.
Or you could maybe give it a go with this plugin:
https://www.ads-software.com/plugins/new-user-approve/That’s mentioned here along with some other helpful tidbits:
https://premium.wpmudev.org/forums/topic/memberships-need-to-be-approvedPerhaps that plugin will work for you?
Cheers,
DavidForum: Plugins
In reply to: [Google Maps All In One] Pro version InfoHi @alexdex,
I realize this was from a couple months ago now, but I wanted to mention a few things. www.ads-software.com disallows support of commercial software as noted here:
https://codex.www.ads-software.com/Forum_Welcome#Commercial_ProductsHowever, I’m sure the team would love to answer your questions here:
https://premium.wpmudev.org/contact/As for your final question, it is possible with the pro version to include BuddyPress members on maps. But I’m not aware of a specific solution that displays the map on the activity page. It could always be done with custom code, but I don’t know of an out-of-the-box solution for it, myself.
Hope that helps. ??
Cheers,
DavidForum: Reviews
In reply to: [Membership 2] Good Plugin. On the right track!Hey @natcom509,
Aw, that’s really cool of you to take the time to post this. I used to work for the company and yeah, it took tons of time and effort to get this plugin to where it’s at now. I love how it works, myself. Glad it works well for you too. ??
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] adding input field on registration pageHi there @sportstars,
Hope your day’s going well!
You could try Cimy User Extra Fields to add to the registration:
https://www.ads-software.com/plugins/cimy-user-extra-fields/That’s mentioned here along with a few other helpful tips:
https://premium.wpmudev.org/forums/topic/adding-custom-registration-fields-to-membership-pro-2Perhaps that’ll sort it for you?
Cheers,
DavidForum: Plugins
In reply to: [MarketPress - WordPress eCommerce] Is AmEx a Supported Form of Payment?Hi @jlmkl,
I hope you’re doing great today! Good catch with this one, I searched the Simplify gateway files and found this on line 85 of
\wordpress-ecommerce\marketpress-includes\plugins-gateway\simplify.php:$content .= '<div class="span4"><label for="cc-cvc">' . __('CVC', 'mp') . ': </label><input class="input-block-level" id="cc-cvc" type="text" maxlength="3" autocomplete="off" value="" placeholder="' . __('CVC', 'mp') . '" /></div>';
The maxlength=”3″ appears to be the issue.
You should be able to replace that like so:
$content .= '<div class="span4"><label for="cc-cvc">' . __('CVC', 'mp') . ': </label><input class="input-block-level" id="cc-cvc" type="text" maxlength="4" autocomplete="off" value="" placeholder="' . __('CVC', 'mp') . '" /></div>';
I’ll try and notify the developers so they can look into and update it if that sorts it.
Perhaps that tiny edit will help with it for now though?
Cheers,
DavidHi @hsl222,
Hope you’re well today! You could try adding that bit of PHP code below the wp_head call like so:
<?php wp_head();?> <?php global $post; if ($post->post_parent && post_password_required($post->post_parent)) wp_redirect(get_permalink($post->post_parent)); ?>
It’s also possible to add that code via the wp_head hook. It could be done using a tiny custom plugin that way.
In any case though, I think the above would work just fine. The reason it didn’t work before is because you needed the <?php ?> tags. The snippet above includes that.
Perhaps that’ll do the trick?
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] Mmebership 2 and Appointments plugins problem?Hi @ilianskia, hope you won’t mind my adding here. You can post screenshots to any free service and then share a link here.
I’ve used this screenshot tool to great effect myself:
https://chrome.google.com/webstore/detail/awesome-screenshot-screen/nlipoenfbbikpbjkfpfillcgkoblgpmjYou could use any file-sharing service though; Google Drive, DropBox, etc.
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] Members 2 Login Shortcode is not workingHi @riandelacruz,
Hope you’re well today! ??
Membership actually uses the following shortcode:
[ms-membership-login]Were you maybe using a different membership plugin previously?
Assuming you’re using Membership, could you try adding the above shortcode instead and seeing how that works?
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] Deleting inactive members from member listHi @stirltech,
I hope you’re doing well today. ??
The plugin doesn’t have a bulk delete option for users but users can be deleted from the User menu page. There are some ideas to help find inactive users, mentioned in the following:
https://premium.wpmudev.org/forums/topic/deleting-membersusers-accounts-that-are-inactiveAnd besides the plugin mentioned there, there’s also this helpful one:
https://www.ads-software.com/plugins/amr-users/Perhaps one of those might help you get the inactives deleted?
Cheers,
DavidForum: Plugins
In reply to: [Membership 2] tariffsHi @egupop,
Hope you’re doing well! The plugin uses a wrapper id for the taxes as follows:
#ms-taxamo-wrapperSo it’s possible to use that to change the styling of the taxes.
Could you describe more specifically how you’d like it to look though? Maybe provide a screenshot illustrating that or showing how it currently looks on your site?
Cheers,
David