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.

Raam Dev

Staff Member

My Latest Replies (From Various Topics)

Viewing 25 replies - 901 through 925 (of 2,567 total)
Author Replies
Author Replies
Posted: Tuesday Sep 4th, 2012 at 8:24 pm #24092
Raam Dev
Username: Raam
Staff Member

Hi Soosie,

Is that sample line you posted one of the users that should’ve been updated to Level 0? In the line you posted above, the level is currently set to Level 4 (s2member_level4).

If that’s not the case, could you please share with us one of the lines that you updated to Level 0?

Posted: Tuesday Sep 4th, 2012 at 8:21 pm #24091
Raam Dev
Username: Raam
Staff Member

James,

If you want to protect all new topics, then you should add /Forum/topic/ to the Level 1 URI restriction. That will protect everything that starts with /Forum/topic/, including /Forum/topic/9212-trading-lab-notes/.

Posted: Tuesday Sep 4th, 2012 at 8:19 pm #24090
Raam Dev
Username: Raam
Staff Member

Then the next thing I suspect is a problem with the .htaccess file on your server. I recommend contacting your web host and asking them what might be causing this problem for you. The web host will be able to look at the server logs and determine what errors are causing this problem.

Posted: Tuesday Sep 4th, 2012 at 8:17 pm #24089
Raam Dev
Username: Raam
Staff Member

Hi Wayne,

Can you please share the button shortcode that you generated within s2Member?

Posted: Tuesday Sep 4th, 2012 at 12:36 am #24003
Raam Dev
Username: Raam
Staff Member

Hi Maksym,

That’s strange. It sounds like it might be a problem with the server configuration.

Please download this Server Check Tool, upload the PHP file to your WordPress directory, and then load the URL to the file in your browser. It will run a bunch of tests to determine if there’s anything amiss on the server-side.

Posted: Tuesday Sep 4th, 2012 at 12:34 am #24002
Raam Dev
Username: Raam
Staff Member

Hi Jamie,

s2Member is a WordPress plugin and everything is accessed through a web browser, including authentication. If your iPad app can access the content on your site through HTTP/HTTPS, and authenticate that way as well, then you should have no problem using it with an iPad app.

s2Member restricts access to WordPress posts/pages (and optionally downloadable files). Authentication uses the WordPress user authentication system.

With regards to setting up a protected page per client, please see Video » s2Member (Client Portals?).

Posted: Tuesday Sep 4th, 2012 at 12:30 am #24000
Raam Dev
Username: Raam
Staff Member

Hi Soosie,

When you say it will not update the members addresses, what exactly happens? Does it say anything when you run the import?

Could you copy/paste a full line from the import file (preferably one that you’re having a problem with) and share that here with us? That will help us determine if there’s a problem with the format.

Posted: Tuesday Sep 4th, 2012 at 12:29 am #23999
Raam Dev
Username: Raam
Staff Member

This should redirect 503’s to that page:

<?php
add_action('ws_plugin__s2member_during_ip_restrictions_ok_no', 's2hack_exit_503_func');

function s2hack_exit_503_func($vars)
{
	unset($__refs, $__v); # s2Member does this within /includes/classes/ip-restrictions.inc.php above it's exit(), so you should too.
	header("Location: http://b4thestreet.com/en/ip-restrictions/");
}
?>

You’ll add that to wp-content/mu-plugins/s2hacks.php (create the file and directory if they don’t already exist).

Posted: Tuesday Sep 4th, 2012 at 12:25 am #23998
Raam Dev
Username: Raam
Staff Member

Adding this to your CSS file should fix that:

#sidebar-me { display: none; }
Posted: Tuesday Sep 4th, 2012 at 12:21 am #23997
Raam Dev
Username: Raam
Staff Member

Hi Jorge,

As per the documentation in Dashboard -› s2Member® -› Import/Export -› User/Member Importation:

If you fill the ID field, the Import routine will update an account matching the ID you specify ( so long as the account ID does NOT belong to an Administrator, this is for security ). When importing new Users/Members, you can leave the ID field empty; don’t remove it, just leave it empty ( i.e. “” ). Example: “”,”Username”,”First Name”,”Last Name”,”Display Name”,”Email”

So, since you’re trying to import into a site that doesn’t have any of those users, you need to remove the values from the ID column so that s2Member knows to recreate those users (as opposed to updating them, which is what it’s trying to do).

Posted: Tuesday Sep 4th, 2012 at 12:17 am #23995
Raam Dev
Username: Raam
Staff Member

Hi James,

I suggest using URI Restrictions for this and setting restrictions based on the URL: Dashboard -› s2Member® -› Restriction Options -› URI Access Restrictions.

Posted: Tuesday Sep 4th, 2012 at 12:15 am #23992
Raam Dev
Username: Raam
Staff Member

Hi Dieter,

You should have no problem storing files in subdirectories.

Posted: Tuesday Sep 4th, 2012 at 12:12 am #23991
Raam Dev
Username: Raam
Staff Member

Hi Derek,

I haven’t seen s2Member Custom Registration Fields synced with MailChimp, however it should be possible through a hack. You’d probably need to write some code that extracts the field content like this and then use MailChimp’s API to update the data on MailChimp’s side.

Posted: Monday Sep 3rd, 2012 at 11:58 pm #23990
Raam Dev
Username: Raam
Staff Member

Glad to hear you figured it out, Ulrich! Thank you for the update. :)

Posted: Monday Sep 3rd, 2012 at 11:58 pm #23989
Raam Dev
Username: Raam
Staff Member

Hi Robert,

This thread on interacting with the Custom Registration Fields via PHP should be helpful.

Posted: Monday Sep 3rd, 2012 at 11:54 pm #23988
Raam Dev
Username: Raam
Staff Member

Hi Cheryl,

s2Member does not currently provide any built-in reporting features, however there is a 3rd party plugin designed to work with s2Member that provides some reporting stats:

http://wordpress.org/extend/plugins/stats-for-s2member/

Otherwise, if you’d like to create your own reporting functionality, a programmer could be hired to create something that would use the s2Member Notifications feature (Dashboard -› s2Member® -› API / Notifications) to generate such reports.

Posted: Monday Sep 3rd, 2012 at 11:45 pm #23986
Raam Dev
Username: Raam
Staff Member

Hi June,

You can add something like this to your theme’s style.css file:

div.ws-plugin--s2member-pro-login-widget > form input { width: 90% !important; }
Posted: Monday Sep 3rd, 2012 at 11:27 pm #23983
Raam Dev
Username: Raam
Staff Member

Hi Alex,

That would be a PayPal thing. By default, you’ll receive an email at your PayPal address whenever someone makes a payment.

s2Member has a similar feature: Dashboard -› s2Member® -› API / Notifications -› Payment Notifications. At the bottom of that section you can enter an email address to receive notifications.

Posted: Monday Sep 3rd, 2012 at 11:23 pm #23982
Raam Dev
Username: Raam
Staff Member

Alex,

If you can go back and enable the 3rd party access and test again, I recommend doing that. I believe it’s not required, but I could be wrong.

Also please download this Server Check Tool, upload the PHP file to your WordPress directory, and then load the URL to the file in your browser. It will run a bunch of tests to determine if there’s anything amiss on the server-side.

Posted: Monday Sep 3rd, 2012 at 10:44 pm #23980
Raam Dev
Username: Raam
Staff Member

Hi Charles,

Our support is limited to the scope of our support policy, that’s why Cristian suggested hiring a developer.

I reviewed the thread where Bruce offered suggestions and he is correct. This will require a bit of CSS coding. If giving you the CSS code were simple, we would be happy to do that, however it requires working with your existing CSS styles and understanding how your theme and other plugins may be affecting the styling.

Normally those checkboxes are on separate lines. If you disable all other plugins and activate the default WordPress theme (e.g., TwentyEleven), you’ll see that those checkboxes will appear on their own lines, not one after the other like in your screenshot.

Posted: Monday Sep 3rd, 2012 at 9:34 pm #23976
Raam Dev
Username: Raam
Staff Member

Hello Tunc,

s2Member does not have any built-in affilate functionality, however we integrate with iDevAffiliate and ShareASale. You can find details about integrating s2Member with these two affiliate systems in Dashboard -› s2Member® -› API / Tracking. We also have a video on iDevAffilate integration.

Posted: Monday Sep 3rd, 2012 at 9:28 pm #23974
Raam Dev
Username: Raam
Staff Member

Hi Thomas,

Good question! I will consult with the lead developer on this and get back to you. Thank you for your patience.

Posted: Monday Sep 3rd, 2012 at 9:25 pm #23973
Raam Dev
Username: Raam
Staff Member

Hi Alex,

Thank you for sharing your solution! I heard back from the lead developer and recommended something very similar:

<?php
	echo c_ws_plugin__s2member_utils_cur::convert(10.00, 'ZAR', 'USD');
?>

The parameters are as follows: amount, from, to

Awarded Alex the Helpful badge.
Posted: Monday Sep 3rd, 2012 at 9:16 pm #23972
Raam Dev
Username: Raam
Staff Member

Susan,

I recommend getting a domain pointed to your account and then testing again. You may have issues if you’re using the temporary URL to test protected videos hosted on Amazon S3.

Posted: Monday Sep 3rd, 2012 at 9:04 pm #23971
Raam Dev
Username: Raam
Staff Member

Hi Daisy,

You would enter multiple ccaps in the metabox comma-delimited, without spaces.

For example: ccap1,ccap2,ccap3

Please see Custom Capabilities for more information.

Viewing 25 replies - 901 through 925 (of 2,567 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.