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.

Home Forums Bruce

Bruce

Staff Member

My Latest Replies (From Various Topics)

Viewing 25 replies - 2,226 through 2,250 (of 2,703 total)
Author Replies
Author Replies
Posted: Thursday Dec 27th, 2012 at 3:21 pm #35569
Bruce
Username: Bruce
Staff Member

Hi there,

That sounds like something theme-specific. What theme are you currently using?

Posted: Thursday Dec 27th, 2012 at 3:19 pm #35568
Bruce
Username: Bruce
Staff Member

Hi there,

s2Member’s IP/Login Restrictions (Dashboard -› s2Member® -› Restriction Options -› Brute Force IP/Login Restrictions) don’t work this way. You can find info on how it works in your WordPress Dashboard. If you’d like to set a system up like this, you could with some custom code.

Posted: Thursday Dec 27th, 2012 at 3:17 pm #35567
Bruce
Username: Bruce
Staff Member

Hi there,

In Dashboard -› s2Member® -› PayPal® Options -› PayPal® IPN Integration under More Information:

*Quick Tip* In addition to the default IPN settings inside your PayPal® account, the IPN URL is also set on a per-transaction basis by the special PayPal® Button Code that s2Member provides you with. In other words, if you have multiple sites operating on one PayPal® account, that’s OK. s2Member dynamically sets the IPN URL for each transaction. The result is that the IPN URL configured from within your PayPal® account, becomes the default, which is then overwritten on a per-transaction basis. In fact, PayPal® recently updated their system to support IPN URL preservation. One PayPal® account can handle multiple sites, all using different IPN URLs.

So if your other shopping cart needs to have the IPN URL set up differently, that’s okay. s2Member should override this on a per-transaction basis. The same goes for PayPal PDT.

Posted: Thursday Dec 27th, 2012 at 3:13 pm #35565
Bruce
Username: Bruce
Staff Member

After they signup, they are redirected to the page they were on but now have access to all the content.

Do you already have this set up? You need to see Dashboard -› s2Member® -› API / Scripting -› Membership Options Page Variables (MOP Vars) and Knowledge Base » Using variables in a shortcode if not.

1. If I protect them by level, it doesnt show the list of the other options.

This should be the correct way to do this. You should protect your pages that should redirect to the Membership Options Page by level, so that if the user is allowed access if they have the correct level. Can you elaborate a bit more on what this is causing to happen? I’m not sure I understand.

2. If I put content outside of the code, when the customer subscribes and comes back, they still see the misc information that took them to the membership option page.

What do you mean by this? Are you changing the content of the page with conditionals?

3. If I protect by page – blocks all content, post-wont display popup video, tag or category

This will happen if you’re protecting the page for Specific Post/Page sales. You’ll want to set up restriction in Dashboard -› s2Member® -› Restriction Options -› Post Access Restrictions by level. Is this the way you did this?

Posted: Thursday Dec 27th, 2012 at 3:06 pm #35564
Bruce
Username: Bruce
Staff Member

works fine it returns the selected language value from qtranslate (f.ex. de,en,es)

Based on the errors you posted, it looks like your function may be echo‘ing the data back, instead of return‘ing it. Can you post the code for the function?

Posted: Thursday Dec 27th, 2012 at 3:03 pm #35562
Bruce
Username: Bruce
Staff Member

Hi Sacha,

As of now we have no plans for integrating Paymill, but I will put in a request to our dev team.

I’ll get back to you if I hear anything more on this.

Posted: Thursday Dec 27th, 2012 at 3:00 pm #35561
Bruce
Username: Bruce
Staff Member

Hi there,

This isn’t something that s2Member is in control of. You’ll need to set up some special JavaScript with AJAX to get this working correctly, outside of s2Member. This page might help:

http://www.gravityhelp.com/documentation/page/Using_the_Gravity_Forms_%22gform_validation%22_Hook

Posted: Thursday Dec 27th, 2012 at 2:57 pm #35560
Bruce
Username: Bruce
Staff Member

Hey quick question does s2member use cookies for registration in any type of way? thanks

Yes, s2Member saves the permission to access the registration page within cookies that are set through the link in the Email members should receive.

please also as I said payments are going threw but the only problem I have is that when a user tries to cancel from there paypal account for the recurring billing.

Have you tried checking out Dashboard -› s2Member® -› PayPal® Pro Forms -› Billing Cancellation Forms?

Posted: Thursday Dec 27th, 2012 at 2:54 pm #35559
Bruce
Username: Bruce
Staff Member

Hi there,

It looks like this line isn’t working correctly, as in the function is not returning anything:

$lang_prv=qtrans_getLanguage();

The first error with the undefined variable $html is unrelated I believe.

Posted: Thursday Dec 27th, 2012 at 2:49 pm #35558
Bruce
Username: Bruce
Staff Member

Hi there,

You’ll want to set up a custom registration field (Dashboard -› s2Member® -› General Options -› Registration/Profile Fields) with the ID street_address.

Posted: Thursday Dec 27th, 2012 at 2:47 pm #35557
Bruce
Username: Bruce
Staff Member
Posted: Thursday Dec 27th, 2012 at 2:45 pm #35556
Bruce
Username: Bruce
Staff Member

Hi Buck,

The Lost Your Password feature is something that’s handled in WordPress’s processes. These processes are made within /wp-login.php, and you could edit them within this file. However, I would suggest using the ‘wp_mail’ filter instead. This filter is set up in /wp-inclues/pluggable.php on line 216.

Check this psuedo-code to get started:

add_filter('wp_mail', 's2hack_change_lost_password');

function s2hack_change_lost_password($vars) {
	if($vars['subject'] === 'Subject For Forgot Password') {
		// change the variable values
	}
	
	return $vars;
}

You may also want to check the WordPress forums for info on if anybody else has done this in the past. I haven’t worked with doing this in the past, and I’m not sure exactly what is passed into the wp_mail() function.

Posted: Wednesday Dec 26th, 2012 at 9:24 pm #35533
Bruce
Username: Bruce
Staff Member

Hi Aaron,

s2Member currently does not support this functionality, but you can alter the appearance of the Pro Login Widget if you know a little PHP. s2Member sets up the Login Widget under /s2member-pro/includes/classes/login-widget.inc.php. To keep s2Member from overwriting the file every time you upgrade, you may want to copy the file and create a Must Use Plugin from it with the altered code. s2Member allows you to overwrite its classes this way.

Posted: Monday Dec 24th, 2012 at 3:53 pm #35479
Bruce
Username: Bruce
Staff Member

Hi Leo,

Thanks for the info. Glad to hear that you’ve found a workaround. Could you post a link to the topic in which you wrote the details for this?

Posted: Monday Dec 24th, 2012 at 3:51 pm #35478
Bruce
Username: Bruce
Staff Member

Hi William,

You’ll want to edit the file /s2member-pro/classes/gateways/paypal/paypal-form-in.inc.php on line 292 to change this for PayPal. This is where %%custom_fields%% is set.

Posted: Monday Dec 24th, 2012 at 3:43 pm #35477
Bruce
Username: Bruce
Staff Member

Melissa,

Can you try disabling each plugin, and running a test purchase at 0.01? I believe that one of these plugins is casugin the error. My guess would be one of the following has an incompatibility:

AWeber Web Forms
Blubrry PowerPress
Official StatCounter Plugin
Pretty Link Pro

The link in your first post:

http://www.digitalscrapbookinghq.com/?s2member_paypal_return=1&tx=66N01032WN2033535&st=Completed&amt=14.00&cc=USD&cm=www%2edigitalscrapbookinghq%2ecom&item_number=sp:4705:43800

is currently returning the correct value. This link has already been used once and returns this error after it has been used again.

Do you have the full log files for your transactions? If not, enable logging under Dashboard -› s2Member® -› PayPal® Options -› Account Details -› Logging so that we can take a look at the logs and see why this is happening.

Posted: Sunday Dec 23rd, 2012 at 3:36 am #35416
Bruce
Username: Bruce
Staff Member

Hi Benjamin,

I’m not sure if GetResponse’s API will handle this, but s2Member allows you to pass the amount charged to the user (%%regular%%). Perhaps you could check to see if this amount is set, and add the user to a different group based on this amount?

Posted: Sunday Dec 23rd, 2012 at 3:33 am #35415
Bruce
Username: Bruce
Staff Member

Hi Rob,

A few questions:

Can you post a link to the page you have this set up with?

Can you try uploading a small video file somewhere that’s not protected on your site, and see if JWPlayer will play that file?

s2Member recently updated to work with JWPlayer 6. Do you have the current version of s2Member installed?

Posted: Sunday Dec 23rd, 2012 at 3:28 am #35414
Bruce
Username: Bruce
Staff Member

Hi Melissa,

Are you running any plugins that could be filtering queries? Can you post a list of the plugins you’re currently running?

Posted: Sunday Dec 23rd, 2012 at 3:26 am #35413
Bruce
Username: Bruce
Staff Member

Hi Ross,

You might want to check your theme’s changelog for any changes regarding jQuery or other JavaScript features. By what you’ve said in your first post, the file is being sent by Amazon, but is not actually being played, correct?

Posted: Sunday Dec 23rd, 2012 at 3:23 am #35412
Bruce
Username: Bruce
Staff Member

Hi KH,

Currently s2Member doesn’t support this feature, but you could implement this through a little creative JavaScript. If you’d like to send us a link to your signup page, we may be able to point you in the right direction.

Posted: Sunday Dec 23rd, 2012 at 3:20 am #35410
Bruce
Username: Bruce
Staff Member

Hi TJ,

I will put in a request to have this modified if possible. However I believe that the issue probably has something to do with the way that your theme is creating each of these links. I will ask Jason if he can shed some light on to what might be causing this.

Posted: Sunday Dec 23rd, 2012 at 3:15 am #35408
Bruce
Username: Bruce
Staff Member

Can I use the success attribute in the buy now buttons shortcode

Yes. The Buy Now Pro Form supports the success attribute.

Posted: Sunday Dec 23rd, 2012 at 3:11 am #35407
Bruce
Username: Bruce
Staff Member

Hi TJ,

This is something that s2Member does as a way to make browsers such as Internet Explorer not throw errors saying that the page is not secure. You might want to check out your theme’s code and see if there’s a difference in how the theme is requesting the site’s homepage. You can try changing this within your theme if you’d like it to be that way.

Posted: Sunday Dec 23rd, 2012 at 3:07 am #35406
Bruce
Username: Bruce
Staff Member

Hi Bejamin,

You’ll need to edit your theme to change when navigation bars are shown. s2Member currently does not natively support restricting access to navigation bars. If you’re not comfortable working with the code in your theme, we suggest posting a job on Elance.com or jobs.wordpress.net.

Viewing 25 replies - 2,226 through 2,250 (of 2,703 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.