juryduty
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Download Counter] Note about 404 errors (How to Fix)Thank you so much for this! I was going nuts trying to figure out why it wasn’t working. Recommend adding this note somewhere in the Plugin’s settings pages.
Forum: Plugins
In reply to: [Gist for Elementor] ? about sending form data to GistYes @mdc2957. Simply create an automation in Gist that says to send an email when a certain tag is applied.
Thank you both! Everything works this morning. Leaving stellar reviews now!
First of all–WOW–I’ve been using WordPress for nearly a decade and usually when reporting an issue on a plugin, you never hear anything back…and you both not only responded within hours, but also found the issue and are updating the plugins! I’m SO impressed! Thank you so much. These are both top quality plugins and I can’t imagine not using both.
For the end user, here’s a workaround I found until the updates come out:
Both plugins allow you to choose what areas on the backend the analytics appear (in addition to the plugin’s comprehensive analytics page). The default for both is “posts” and “pages.”
By simply removing “posts” and “pages” from one of the plugins, everything works again. This of course isn’t ideal as one plugin reports social analytics, and the other page analytics for individual posts/pages, but it does resolve the conflict so that the plugins can stay active until the update comes out.
Much thanks again for the stellar support from both.
Any ideas???
LOL so I’m gonna take it that I can’t do this. ??
Any ideas???
Bumping….
I figured it out. I had installed bbpress and it was defaulting users to “Participants” instead of “Subscribers.” And that kept them from having correct access.
That helps tremendously! The shortcode works great, but it only puts the username, password and email on the page.
How can I add the credit card fields? Is there a perimeter for the shortcode?
Just wanted to throw another vote in for supporting multiple levels. To me, this would be a killer feature. Right now, using PMPro, I’m trying to figure out how to monetize and because it “replaces” levels, it’s limiting my options. As a workaround, I’m looking at just starting with two levels and letting users sign up for A and then later get A+B. But this gets messy the more you add.
Having multiple levels really would be an awesome feature. Will purchasing paid support help move this feature up? ?? (Planning to do this anyway!)
OK, just to follow up, you’re right! It worked beautifully. For anyone following this discussion, here are some things to watch out for: You can set checked member levels on individual posts as well as categories when you create the levels. I had checked both in some cases giving me false positives.
Anyway, that said, this php works great to protect items outside of the post content itself. For me, I had videos outside the post content. So here’s the php I ended up using. This hides the video if they don’t have access to the post AND displays a large graphic of a video that says “You don’t have access to this” in its place. Feel free to use it!
<?php if(pmpro_has_membership_access()) { ?>
<div class=”video-wrap”>
[Insert code for video here.]
</div>
<?php } else { ?>
<div class=”video-wrap”>
<img src=”link-to-video-image/no-access-warning-here.png”>
</div>
<?php } ?>Hope this helps someone.
Edit: Nevermind. I was able to resolve the other issue I had with using php to show content and it fixed this.
Hmmm…I’m going to test it again then. That’s exactly what I want. I tested it and it seemed to be allowing anyone in as long as they were a member. I’ll report back what I find.
I’m just verifying if PMPro is exactly what will work for me. If so, I’ll be signing up for support for sure–if nothing else, just to support this great plugin. Pardon my hesitation, but I just paid $120 for another membership plugin that doesn’t work quite right with my setup and I can’t get a refund since it’s code. ?? I just don’t want to rush into it LOL
This function seems to work to check and see if you have ANY form of membership, but not a specific level.
So using this tag still lets a “silver” member see content marked with this code on a “gold” level page.
Is there a way to have it check against the level of the post–without hard-coding in a level? Does that make sense?
I appreciate your attentiveness to your community.