Cristián Lávaque

Forum Replies Created

Viewing 13 posts - 101 through 113 (of 113 total)
  • Author
    Posts
  • in reply to: %%item_name%% not populated #413

    That’s odd. I see that the email starts with “Thank you” but the template says “Thanks”. It may be you’re looking at a different template.

    Could you expand the confirmation email panels and take a screenshot to show me? WP Admin -> s2Member -> PayPal Options -> * Confirmation Email

    Looking forward to your update. 🙂

    in reply to: Redirect if user does not have the correct ccap #395

    Great! 😀

    in reply to: Redirect if user does not have the correct ccap #386

    Thanks!

    Okay, I wrote a new simpler one, and tested it to confirm it works.
    http://s2member.net/?_s2member_vars=ccap..ccap..element..page..4286

    <?php
    if (!empty($_REQUEST['_s2member_vars']) && strpos($_REQUEST['_s2member_vars'], 'ccap..ccap..element') !== false) {
       header('Location: http://scrapbookcampus.com/creative-scrap/creative-scrap-register/');
       exit;
    }

    🙂

    in reply to: API not sticking #385

    Opened an issue for this too: https://github.com/websharks/s2member/issues/786

    in reply to: API not sticking #384

    Yes, all good questions. I’m updating Jason about that hoping he’ll share his thoughts.

    in reply to: Redirect if user does not have the correct ccap #380

    No, the PHP closing tag is not required there.

    Hmm… What is the ccap you’re using for that? Can I have a link to a page protected with it to see what the MOP vars are when redirected?

    Thanks!

    in reply to: API not sticking #379

    Yeah, I know what you mean… That’s why I notified Jason, in case it’s something we can pinpoint and do something about to prevent it under whatever rare combination of factors that causes it.

    Here’s something I’d like you to try, if possible… Would you add a list to the levels below 4 even if you’re not using them? I wanna see if skipping one or more in that settings panel, could be related.

    Looking forward to your update. 🙂

    in reply to: Redirect if user does not have the correct ccap #375

    Well, you could customize the behavior in different ways…

    You can change the Membership Options Page’s content with conditionals, using the MOP Vars. WP Admin -> s2Member -> Scripting -> Membership Options Page Variables

    Or, you could try a must-use plugin that checks if the required access is the ccap you’re talking about, and redirect the person to another page instead. Or do the redirection in the page with a conditional and a JavaScript redirection.

    Maybe somthing like this: In /wp-content/mu-plugins/s2mop-redir.php

    <?php
    if (!empty($_REQUEST['_s2member_vars']))
       @list($restriction_type, $requirement_type, $requirement_type_value, $seeking_type, $seeking_type_value, $seeking_uri)
            = explode("..", stripslashes((string)$_REQUEST["_s2member_vars"]));
    
    if (!empty($seeking_value) && $seeking_value == 'yourccaphere' ) {
       header('Location: http://www.yoursite.com/yourccapsalespage');
       exit;
    }

    Not tested, but I hope it helps. 🙂

    in reply to: API not sticking #373

    Well done on testing more variables to notice that it’s the browser.

    That’s a very interesting behavior. Yes, it’s very odd that the browser would affect some sites and not others. I don’t know what’s doing it. Maybe one of the extensions? Do you have the same s2Member version in all those different installations?

    I guess that when you see that, you can open Firefox to check what it really is…

    in reply to: API not sticking #369

    Yeah, I know it would be very weird, but just to confirm, could you test logging out of LastPass and trying to reproduce that behavior in the form again? It’s just that I can’t think of anything else causing it yet. :/

    Hopefully Jason may have ideas for other things to check.

    in reply to: API not sticking #367

    So good to have you here! 😀

    Yes, this forum is fine for s2Member Pro or free.

    Thank you for the video, it was very helpful to understand the behavior you are seeing. I haven’t seen other reports like it yet.

    This is just a guess, but maybe LastPass is populating the form as if it were a login or registration one? I see the message at the top of the page and find it odd for that form. Could you test logging out of LastPass and test again?

    I sort of remember a LastPass related problem with the WP user profile edit form recently…

    I’ll ask Jason about this.

    in reply to: Welcome to s2Member.net! :) #365

    Thanks man! 😀

    in reply to: Welcome to s2Member.net! :) #362

    Thank you! It’s great to be back and have you here. 😀

Viewing 13 posts - 101 through 113 (of 113 total)