latest stable versions: v150827 (changelog)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

About: Santi Azpilicueta

Sorry, I've not written a description yet. I'll get to it soon!


My Latest Replies (From Various Topics)

Viewing 5 replies - 1 through 5 (of 5 total)
Author Replies
Author Replies
Posted: Monday Mar 12th, 2012 at 10:59 pm #7940

There is a very big search button at the very top… and it searches through both forums decently.

But I must agree with you that the previous forum search was way better, particularly with the advanced search capabilities. Hopefully they will find a way to improve the search in this one… sometimes google search just stops working (I personally have to change browsers or clear cookies to keep searchging)

Posted: Tuesday Mar 6th, 2012 at 4:51 am #7438

Wow, cool, I have to look into javascript Globals in detail!

My guess is this will not allow to override this setting with the shortcode… You would have to override it with inline javascript I guess, correct?

Thanks!

Posted: Wednesday Feb 29th, 2012 at 6:16 am #6756

I have had very similar problems here… but finally solved so I will post my story to help others:
Playlist could not be loaded due to crossdomain policy restrictions
– Cloudfront installation corrupted crossdomain.xlm.
– Reinstalled manually as per above
– The file was downloadable
– had crossdomain errors with video players

Finally the issue was the player (OptimizePress), as per Cristián´s post. I got rid of the issue by simply using the advanced mod_rewrite as in /wp-content/plugins/s2member-files/myvideo.mp4 instead of the original link with query string /?s2_member_file_download=myvideo.mp4

Additionally, I dug a different solution that worked too: /?s2member_file_download/myvideo.mp4&type=video

Go wonder why Jw player talks about crossdomains…

Thanks Cristián, and as always, thank you Jason, for your support and for the fabulous plugin!

PS. By the way, does setting the crossdomain file to your domain bring an addional layer of security?

Posted: Monday Feb 20th, 2012 at 7:52 pm #5768

Yeah, I suspected it had to be something that simple…

Thanks a bunch, Jason! You are awesome.

Posted: Saturday Feb 18th, 2012 at 3:14 pm #5603

No, that was not the idea, the idea is to First subscribe to my list, and then become a free member, if they are so inclined.

I did figure it out anyway, so I will post for the benefit of anybody that comes across this dilemma.

Short answer to my question above was “yes”, as I figured out from this forum response from Cristián. Nevertheless, there was a problem: Aweber sends back in the query string the variable name and WP does not like it, it yields a 404. So here are the steps I took to solve this problem:

  1. In theme functions, I added:
    add_action('init','change_querystring_name');	
    
    function change_querystring_name() {
    if(isset($_GET['name'])){
    	$_GET['aname'] = $_GET['name'];
    	unset($_GET['name']);
    	}
    }

    That take care of the 404 when you post back from Aweber, plus it allows you to use ‘aname’ variable in the code.

  2. As suggested above, open a copy of wp-content/pluging/s2member-pro/includes/templates/forms/paypal-registration-form.php
  3. Modify to your liking, including, for example
    <input name="[email]" [...] value=" [php echo $_GET['email']; ] "> 
  4. Save on your theme folder and call from shortcode as per my original question.

Hope this helps someone.

  • This reply was modified 4 years, 10 months ago by  Santi Azpilicueta.
  • This reply was modified 4 years, 10 months ago by  Santi Azpilicueta.
  • This reply was modified 4 years, 10 months ago by  Santi Azpilicueta. Reason: Making code readable (php was being stripped out)
Viewing 5 replies - 1 through 5 (of 5 total)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Contacting s2Member: Please use our Support Center for bug reports, pre-sale questions & technical assistance.