PriMoThemes — now s2Member® (official notice)

This is now a very OLD forum system. It's in READ-ONLY mode.
All community interaction now occurs at WP Sharks™. See: new forums @ WP Sharks™

One off sales

s2Member Plugin. A Membership plugin for WordPress®.

One off sales

Postby curbsyde » December 18th, 2011, 3:38 pm

Hi There,

We use the S2 plugin as a gateway for our Video on demand service. Our main product "The North" is on Member Level1

We have two special "one off" series we want to sell on our website. My question is, if we put them on Member levels 2 and 3, then people can purchase the specials and get access to "The North" on Level1. What would the easiest way be to create a one-off member level or special one?

Thanks in advance
Joe Lloyd
www.curbsyde.com
User avatar
curbsyde
Registered User
Registered User
 
Posts: 5
Joined: December 18, 2011

Re: One off sales

Postby Eduan » December 18th, 2011, 4:11 pm

For selling content that is not affected by level access (level 4 can access level 1, 2, 3, 4 etc.) you can use Custom Capabilities (a.k.a. CCaps). Check this video for more information of CCaps: http://www.s2member.com/custom-capabilities-video/

Hope this helps. :)
Now officially accepting Professional s2Member installations along with Bruce C (a.k.a. Ace).

If you're interested in a Professional s2Member Installation, or a Custom Coding Job, you can send your request here.
User avatar
Eduan
Experienced User
Experienced User
 
Posts: 1154
Joined: August 27, 2011
Location: Taxco de Alarcón, Guerrero, México.

Re: One off sales

Postby curbsyde » December 18th, 2011, 6:36 pm

That's great, thanks for that. One question. If I decide to use custom capabilities by category, do I enter the category name, slugname, or ID in the PHP code in functions.p
User avatar
curbsyde
Registered User
Registered User
 
Posts: 5
Joined: December 18, 2011

Re: One off sales

Postby Cristián Lávaque » December 19th, 2011, 6:02 pm

Are you talking about the hack suggested in the second half of the second video for Custom Capabilities? You can use is_category or any other function to get the condition you want.

http://codex.wordpress.org/Function_Ref ... s_category
http://codex.wordpress.org/Function_Ref ... _Functions

I hope that helps. :)
Cristián Lávaque http://s2member.net
Is s2Member working for you? Please rate it Image at WordPress.org. Thanks! :)
User avatar
Cristián Lávaque
Developer
Developer
 
Posts: 6836
Joined: December 22, 2010

Re: One off sales

Postby curbsyde » December 22nd, 2011, 7:14 pm

Ok, think I'm getting there. I've altered my Functions.php with the following code..

add_action ("template_redirect", "my_custom_capabilities");

function my_custom_capabilities ()
{

if(has_tag("rawhyde") && !current_user_can ("access_s2member_ccap_rwcn"))
{
header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit ();
}

else_if(is_tag ("barkerville") && !current_user_can ("access_s2member_ccap_barkerville"))
{
header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit ();
}


Yet I'm getting a syntax error. Anything look wrong with this?
User avatar
curbsyde
Registered User
Registered User
 
Posts: 5
Joined: December 18, 2011

Re: One off sales

Postby Raam Dev » December 23rd, 2011, 2:39 pm

Hey curbsyde,

else_if should be elseif. :)
Raam Dev || Wherever you are, be there. || Please rate s2Member!
User avatar
Raam Dev
Developer
Developer
 
Posts: 810
Joined: October 26, 2011

Re: One off sales

Postby curbsyde » December 23rd, 2011, 2:55 pm

Thanks Raam. Fixed that. I get an error with line 871, something causing an issue at the end of functions.php. Not really that sure what it is. Not good with PHP stuff!

I've copied the entire altered functions.php here

Code: Select all
<?php

add_action ("template_redirect", "my_custom_capabilities");

function my_custom_capabilities ()
   {
      
      if(has_tag("rawhyde") && !current_user_can ("access_s2member_ccap_rwcn"))
         {
            header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
            exit ();
         }
         
      elseif(has_tag ("barkerville") && !current_user_can ("access_s2member_ccap_barkerville"))
         {
            header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
            exit ();
         }   



if ( function_exists('register_sidebar') )
   register_sidebar(array('name'=>'Sidebar - Left',
   'before_title' => '<div class="widgettitle">',
   'after_title' => '</div>',
   ));
   register_sidebar(array('name'=>'Right Sidebar - Top',
   'before_title' => '<div class="widgettitle">',
   'after_title' => '</div>',
   ));
   register_sidebar(array('name'=>'Right Sidebar - Bottom Left',
   'before_title' => '<div class="widgettitle">',
   'after_title' => '</div>',
   ));
   register_sidebar(array('name'=>'Right Sidebar - Bottom Right',
   'before_title' => '<div class="widgettitle">',
   'after_title' => '</div>',
   ));

// Add support for WP 3.0 Menu Management
if (function_exists('add_theme_support')) {
   add_theme_support('menus');
}

if (function_exists('register_nav_menus')) {
   function register_my_menus() {
      register_nav_menus(
         array(
         'topnav' => __( 'Top Navigation' ),
         'catnav' => __( 'Category Navigation' )
         )
      );
   }
   

add_action( 'init', 'register_my_menus' );

}

add_filter('comments_template', 'legacy_comments');
function legacy_comments($file) {
   if ( !function_exists('wp_list_comments') )
      $file = TEMPLATEPATH . '/legacy.comments.php';
   return $file;
}

// This function creates a better tag cloud widget.
function wp_widget_tag_cloud2($args) {
   extract($args);
   $options = get_option('widget_tag_cloud2');
   $title = empty($options['title']) ? __('Tags') : $options['title'];

   echo $before_widget;
   echo $before_title . $title . $after_title;
   wp_tag_cloud('format=list');
   echo $after_widget;
}

// This function limits the number of words in the magazine home page excerpt.
function string_limit_words($string, $word_limit) {
   $words = explode(' ', $string, ($word_limit + 1));
   if(count($words) > $word_limit)
   array_pop($words);
   return implode(' ', $words);
}


// Add tag cloud widget to the Widgets panel.
if ( function_exists('register_sidebar_widget') )
    register_sidebar_widget(__('Tag Cloud'), 'wp_widget_tag_cloud2');

// Remove yucky or un-needed widgets from the Widgets panel.
function remove_yucky_widgets() {
      unregister_sidebar_widget( 'tag_cloud' );
      unregister_sidebar_widget( 'calendar' );
      unregister_sidebar_widget( 'search' );
}

add_action('widgets_init', 'remove_yucky_widgets');

// WP-Smooth Options Panel
$themename = "WP-Smooth";
$shortname = "wp_smooth";

$options = array (

// Basic Site Settings

   array(    "name" => "Basic Site Settings",
      "id" => $shortname."_basic_settings",
      "type" => "header"),

   array(    "name" => "Color Scheme",
      "id" => $shortname."_colors",
      "type" => "select",
      "std" => "green-default",
      "options" => array("default", "black", "blue", "burnt-orange", "green", "light", "pink", "plum", "purple", "red" ),
      "help" => "You have 9 different color schemes from which to select."),

   array(    "name" => "Home Page Layout",
      "id" => $shortname."_home_layout",
      "type" => "select",
      "std" => "3-column",
      "options" => array("3-column", "2-column"),
      "help" => ""),

   array(    "name" => "Single Post Layout",
      "id" => $shortname."_single_layout",
      "type" => "select",
      "std" => "3-column",
      "options" => array("3-column", "2-column"),
      "help" => ""),

   array(    "name" => "Archive Page Layout",
      "id" => $shortname."_archive_layout",
      "type" => "select",
      "std" => "3-column",
      "options" => array("3-column", "2-column"),
      "help" => ""),

   array(    "name" => "Page Layout",
      "id" => $shortname."_page_layout",
      "type" => "select",
      "std" => "3-column",
      "options" => array("3-column", "2-column"),
      "help" => ""),

   array(    "name" => "Small Sidebar Location",
      "id" => $shortname."_side_left_loc",
      "type" => "select",
      "std" => "Left of Content",
      "options" => array("Left of Content", "Right of Content"),
      "help" => ""),

   array(    "name" => "Hide Category Navigation",
      "id" => $shortname."_hide_cats",
      "type" => "select",
      "std" => "no",
      "options" => array("no", "yes"),
      "help" => "By selecting yes, you will remove the category navigation bar."),

   array(    "name" => "Featured Articles on Home Page",
      "id" => $shortname."_features_on",
      "type" => "select",
      "std" => "yes",
      "options" => array("yes", "no"),
      "help" => "By selecting no, you will remove the Featured Articles section from the home page."),

   array(    "name" => "How Many Featured Articles",
      "id" => $shortname."_features_number",
      "type" => "select",
      "std" => "6",
      "options" => array("6", "5", "4", "3", "2", "1"),
      "help" => "How many featured articles should be shown in the Featured Articles section; limited to 6."),

// Home Page Post Settings

      array(    "name" => "Home Page Post Settings",
      "id" => $shortname."_home_page_post_settings",
      "type" => "header"),

   array(    "name" => "Display Posts by Category on Home Page",
      "id" => $shortname."_home_posts_by_cat",
      "type" => "select",
      "std" => "no",
      "options" => array("no", "yes"),
      "help" => "You can display up to 4 boxes of posts on your home page; each box containing posts from a specific category. Select 'Yes' above to do so.<br /><strong>Note: Make sure your Reading Settings are set to display AT LEAST 15 posts per page. You may need to increase that number to display Other Recent Articles below the category boxes.</strong>"),

   array(    "name" => "Stack Category Boxes",
      "id" => $shortname."_home_posts_stack",
      "type" => "select",
      "std" => "no",
      "options" => array("no", "yes"),
      "help" => "By default, your category boxes will align side-by-side. Select yes, to stack the category boxes on top of each other."),

   array(    "name" => "How Many Posts In Each Category",
      "id" => $shortname."_num_home_posts_by_cat",
      "type" => "select",
      "std" => "3",
      "options" => array("3","2","4","5","6"),
      "help" => "Select the number of posts in each category."),

   array(    "name" => "Category Box 1 (top left box)",
      "id" => $shortname."_cat_box_1",
      "type" => "text",
      "help" => "Enter a CATEGORY SLUG (not the Category Name) <strong>EXACTLY</strong> as it appears on your list of categories (click the 'Categories' link under the 'Posts' tab)."),

   array(    "name" => "Category Box 1 Title",
      "id" => $shortname."_cat_box_1_title",
      "type" => "text",
      "help" => "Enter a title for Cateogry Box 1."),

   array(    "name" => "Category Box 2 (top right box)",
      "id" => $shortname."_cat_box_2",
      "type" => "text",
      "help" => "Enter a CATEGORY SLUG (not the Category Name) <strong>EXACTLY</strong> as it appears on your list of categories (click the 'Categories' link under the 'Posts' tab)."),

   array(    "name" => "Category Box 2 Title",
      "id" => $shortname."_cat_box_2_title",
      "type" => "text",
      "help" => "Enter a title for Cateogry Box 2."),

   array(    "name" => "Category Box 3 (bottom left box)",
      "id" => $shortname."_cat_box_3",
      "type" => "text",
      "help" => "Enter a CATEGORY SLUG (not the Category Name) <strong>EXACTLY</strong> as it appears on your list of categories (click the 'Categories' link under the 'Posts' tab)."),

   array(    "name" => "Category Box 3 Title",
      "id" => $shortname."_cat_box_3_title",
      "type" => "text",
      "help" => "Enter a title for Cateogry Box 3."),

   array(    "name" => "Category Box 4 (bottom right box)",
      "id" => $shortname."_cat_box_4",
      "type" => "text",
      "help" => "Enter a CATEGORY SLUG (not the Category Name) <strong>EXACTLY</strong> as it appears on your list of categories (click the 'Categories' link under the 'Posts' tab)."),

   array(    "name" => "Category Box 4 Title",
      "id" => $shortname."_cat_box_4_title",
      "type" => "text",
      "help" => "Enter a title for Cateogry Box 4."),

   array(    "name" => "List Other Recent Articles Below Categories",
      "id" => $shortname."_other_articles",
      "type" => "select",
      "std" => "yes",
      "options" => array("yes", "no"),
      "help" => "By default, Other Recent Articles will appear below your category boxes. Select no to remove them."),

// Site Title Settings

      array(    "name" => "Site Title Settings",
      "id" => $shortname."_site_title_settings",
      "type" => "header"),

      array(    "name" => "Site Title Option",
      "id" => $shortname."_site_title_option",
      "type" => "select",
      "std" => "Basic Text-Type Title",
      "options" => array("Basic Text-Type Title", "Image/Logo-Type Title"),
      "help" => "You can use simple text as your site title or you can use an image. If you have a Custom Image/Logo you'd like to use, you can enter the URL below."),

   array(    "name" => "Site Title Font Family",
      "id" => $shortname."_site_title_font_family",
      "type" => "select",
      "std" => "georgia,times,serif",
      "options" => array("georgia,times,serif", "arial,helvetica,sans-serif", "verdana,lucida,sans-serif","tahoma,geneva,sans-serif", "rockwell,georgia,serif","cambria,georgia,serif"),
      "help" => "Applies only to Basic Text-Type Title option."),

      array(    "name" => "Site Title Color",
      "id" => $shortname."_site_title_color",
      "type" => "text",
      "std" => "#ffffff",
      "help" => "Example: #ffffff. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>. Applies only to Basic Text-Type Title option."),

      array(    "name" => "Site Title Size",
      "id" => $shortname."_site_title_size",
      "type" => "text",
      "std" => "30px",
      "help" => "Enter the size of your Site Title in px (e.g. 30px). Applies only to Basic Text-Type Title option."),

   array(    "name" => "Site Title Weight",
      "id" => $shortname."_site_title_weight",
      "type" => "select",
      "std" => "normal",
      "options" => array("normal", "bold"),
      "help" => "Applies only to Basic Text-Type Title option."),

      array(    "name" => "Site Title Alignment",
      "id" => $shortname."_site_title_alignment",
      "type" => "select",
      "std" => "Left",
      "options" => array("Left", "Center", "Right"),
      "help" => "Applies only to Basic Text-Type Title option."),

   array(    "name" => "Site Title Background Color",
      "id" => $shortname."_header_bg_color",
      "std" => "#000000",
      "type" => "text",
      "help" => "Example: #000000. Leave blank to use default background. This is the entire header area behind the site title. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Custom Image/Logo URL",
      "id" => $shortname."_site_logo_url",
      "std" => "",
      "type" => "textarea",
      "help" => "Upload your logo file (logo width should not exceed 980px; height should not exceed 110px;), and enter the URL for the file location (e.g. http://www.mysite.com/images/logo.gif)."),

   array(    "name" => "Custom Image/Logo Position",
      "id" => $shortname."_site_logo_position",
      "std" => "0px 0px",
      "type" => "text",
      "help" => "The first digit is the number of pixels to move the logo from the left. Second digit is the number of pixels to move the logo from the top of the header area. If unsure, leave the default values."),

// Basic Post Settings

      array(    "name" => "Basic Post Settings",
      "id" => $shortname."_basic_post_settings",
      "type" => "header"),

   array(    "name" => "Post Excerpts or Content",
      "id" => $shortname."_post_content",
      "type" => "select",
      "std" => "Excerpts",
      "options" => array("Excerpts", "Content"),
      "help" => "On your home page and archive/category pages, you can display post excerpts or the full post content. See <a href='http://codex.wordpress.org/Glossary#Excerpt'>here</a> for more info."),

   array(    "name" => "Add Default Post Thumbnail",
      "id" => $shortname."_default_thumbs",
      "type" => "select",
      "std" => "no",
      "options" => array("no", "yes"),
      "help" => "If you don't add your own thumbnail image to a post, WP-Smooth can add a default, generic thumbnail image for you. To change the default thumbnail, select an image, rename it to def-thumb.gif, and upload it to your wp-content/images/ folder."),

   array(    "name" => "Size of Author Profile Gravatar",
      "id" => $shortname."_grav_size",
      "type" => "select",
      "std" => "36",
      "options" => array("36", "48", "60", "72", "84", "96"),
      "help" => "This is the pixel size of the Gravatar that will be used in the author profile section found at the top of the single post page."),

   array(    "name" => "Hide Author Bio on Single Post",
      "id" => $shortname."_hide_auth_bio",
      "type" => "select",
      "std" => "no",
      "options" => array("no", "yes"),
      "help" => "If you'd like to hide the author bio found at the top of the single post page, select yes above."),

// Subscription Form Settings

      array(    "name" => "Subscription Form Settings",
      "id" => $shortname."_subscription_form_settings",
      "type" => "header"),

   array(    "name" => "Use Feedburner Email",
      "id" => $shortname."_fb_email",
      "type" => "select",
      "std" => "yes",
      "options" => array("yes", "no"),
      "help" => "Feedburner Email allows publishers to deliver their content to subscribers via email. See <a href='http://www.feedburner.com/fb/a/publishers/fbemail'>here</a> for more info. Select no to use an alternate email list provider, and enter your form code below."),

   array(    "name" => "Feedburner Feed ID",
      "id" => $shortname."_fb_feed_id",
      "std" => "",
      "type" => "text",
      "help" => "See <a href='http://www.netprofitstoday.com/blog/how-to-find-your-feedburner-id/'>here</a> to find your Feedburner Feed Id ... allow people to subscribe to your site via email."),

   array(    "name" => "Alternate Email List Form Code",
      "id" => $shortname."_alt_email_code",
      "std" => "",
      "type" => "textarea",
      "help" => "If using an alternate email list provider, enter your subscription form code here."),

// Advertisement Settings

   array(    "name" => "Advertisement Settings",
      "id" => $shortname."_ad_settings",
      "type" => "header"),

   array(    "name" => "Display 468x60 Ad in Header",
      "id" => $shortname."_ad468head",
      "type" => "select",
      "std" => "yes",
      "options" => array("yes", "no"),
      "help" => "Select no to remove the 468x60 banner advertisement in the site header next to the site title. Enter your own ad code below."),

   array(    "name" => "Header 468x60 Ad Code",
      "id" => $shortname."_ad468head_code",
      "std" => "<a href='http://www.istockphoto.com/mdp8593'><img src='http://istockphoto.com/images/referral_badges/languages/english/486x60_olive.gif' alt='banner ad' /></a>",
      "type" => "textarea",
      "help" => "Replace the above code with your own advertising code."),

   array(    "name" => "Display 468x60 Ad Above Posts",
      "id" => $shortname."_ad468",
      "type" => "select",
      "std" => "yes",
      "options" => array("yes", "no"),
      "help" => "Select no to remove the 468x60 banner advertisement just above your posts. Enter your own ad code below."),

   array(    "name" => "468x60 Ad Code",
      "id" => $shortname."_ad468_code",
      "std" => "<a href='http://www.istockphoto.com/mdp8593'><img src='http://istockphoto.com/images/referral_badges/languages/english/486x60_olive.gif' alt='banner ad' /></a>",
      "type" => "textarea",
      "help" => "Replace the above code with your own advertising code."),

   array(    "name" => "Display 300x250 Ad Top Right Sidebar",
      "id" => $shortname."_ad300",
      "type" => "select",
      "std" => "no",
      "options" => array("no", "yes"),
      "help" => "Select yes to place a 300x250 banner ad at the top of the right sidebar. Enter your own ad code below."),

   array(    "name" => "Top Right Sidebar 300x250 Ad Code",
      "id" => $shortname."_ad300_code",
      "std" => "",
      "type" => "textarea",
      "help" => "Enter your ad code here."),

// Basic Style Settings

      array(    "name" => "Basic Style Settings",
      "id" => $shortname."_basic_style_settings",
      "type" => "header"),

   array(    "name" => "Body Background Color",
      "id" => $shortname."_body_backgroundcolor",
      "std" => "",
      "type" => "text",
      "help" => "#ffffff is the HTML color code for white. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Body Background Image URL",
      "id" => $shortname."_body_backgroundimage",
      "std" => "",
      "type" => "textarea",
      "help" => "If you'd like to use an image as your body background, enter the URL for its location here (e.g. http://www.mysite.com/images/background.gif)"),

   array(    "name" => "Repeat Body Background Image",
      "id" => $shortname."_body_backgroundimage_repeat",
      "type" => "select",
      "std" => "repeat",
      "options" => array("repeat", "no-repeat", "repeat-x", "repeat-y"),
      "help" => "For info on this property, see <a href='http://www.w3schools.com/css/pr_background-repeat.asp'>here</a>."),

   array(    "name" => "Body Background Image Position",
      "id" => $shortname."_body_backgroundimage_position",
      "type" => "text",
      "std" => "top left",
      "help" => "For info on this property, see <a href='http://www.w3schools.com/css/pr_background-position.asp'>here</a>."),

   array(    "name" => "Page Font Color",
      "id" => $shortname."_body_font_color",
      "std" => "#000000",
      "type" => "text",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Page Font Family",
      "id" => $shortname."_body_font_family",
      "type" => "select",
      "std" => "arial,helvetica,sans-serif",
      "options" => array("arial,helvetica,sans-serif", "georgia,times,serif", "verdana,lucida,sans-serif","tahoma,geneva,sans-serif"),
      "help" => ""),

   array(    "name" => "Page Font Size",
      "id" => $shortname."_body_font_size",
      "type" => "select",
      "std" => "9pt",
      "options" => array("9pt", "8pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Post Title Font Family",
      "id" => $shortname."_post_title_font",
      "type" => "select",
      "std" => "cambria,georgia,serif",
      "options" => array("cambria,georgia,serif", "georgia,times,serif", "arial,helvetica,sans-serif", "verdana,lucida,sans-serif","tahoma,geneva,sans-serif","rockwell,georgia,serif"),
      "help" => ""),

   array(    "name" => "Post Title Weight",
      "id" => $shortname."_post_title_weight",
      "type" => "select",
      "std" => "normal",
      "options" => array("normal", "bold"),
      "help" => ""),

// Top Nav Style Settings

   array(    "name" => "Top Navigation Style Settings",
      "id" => $shortname."_top_nav_style_settings",
      "type" => "header"),

   array(    "name" => "Top Navigation Background Color",
      "id" => $shortname."_topnav_bg_color",
      "type" => "text",
      "std" => "",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Top Navigation Font Size",
      "id" => $shortname."_topnav_size",
      "type" => "select",
      "std" => "9pt",
      "options" => array("9pt", "8pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Top Navigation Font Weight",
      "id" => $shortname."_topnav_weight",
      "type" => "select",
      "std" => "bold",
      "options" => array("bold", "normal"),
      "help" => ""),

   array(    "name" => "Top Navigation Link Color",
      "id" => $shortname."_topnav_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Top Navigation Hover Link Color",
      "id" => $shortname."_topnav_link_hover_color",
      "type" => "text",
      "std" => "",
      "help" => "#ffffff is the HTML color code for white. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Top Navigation Hover Background Color",
      "id" => $shortname."_topnav_link_hover_bg_color",
      "type" => "text",
      "std" => "",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

// Category Style Settings

   array(    "name" => "Category Navigation Style Settings",
      "id" => $shortname."_cat_nav_style_settings",
      "type" => "header"),

   array(    "name" => "Category Navigation Background Color",
      "id" => $shortname."_catnav_bg_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Category Navigation Font Size",
      "id" => $shortname."_catnav_size",
      "type" => "select",
      "std" => "8pt",
      "options" => array("8pt", "9pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Category Navigation Font Weight",
      "id" => $shortname."_catnav_weight",
      "type" => "select",
      "std" => "normal",
      "options" => array("normal", "bold"),
      "help" => ""),

   array(    "name" => "Category Navigation Link Color",
      "id" => $shortname."_catnav_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Category Navigation Hover Link Color",
      "id" => $shortname."_catnav_link_hover_color",
      "type" => "text",
      "std" => "",
      "help" => "#ffffff is the HTML color code for white. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Category Navigation Hover Background Color",
      "id" => $shortname."_catnav_link_hover_bg_color",
      "type" => "text",
      "std" => "",
      "help" => "#ffffff is the HTML color code for white. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

// Featured Style Settings

   array(    "name" => "Featured Articles Style Settings",
      "id" => $shortname."_featured_style_settings",
      "type" => "header"),

   array(    "name" => "Featured Articles Content Background Color",
      "id" => $shortname."_featured_content_bg_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Leave blank to use default image. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Featured Articles Controls Background Color",
      "id" => $shortname."_featured_controls_bg_color",
      "type" => "text",
      "std" => "#000000",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Featured Articles Font Color",
      "id" => $shortname."_featured_font_color",
      "type" => "text",
      "std" => "#ffffff",
      "help" => "#ffffff is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Featured Articles Font Size",
      "id" => $shortname."_featured_size",
      "type" => "select",
      "std" => "9pt",
      "options" => array("9pt", "8pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Featured Articles Link Color",
      "id" => $shortname."_featured_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Featured Articles Hover Link Color",
      "id" => $shortname."_featured_link_hover_color",
      "type" => "text",
      "std" => "#ffffff",
      "help" => "#ffffff is the HTML color code for white. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

// Left Sidebar Style Settings

   array(    "name" => "Left Sidebar Style Settings",
      "id" => $shortname."_left_sidebar_style_settings",
      "type" => "header"),

   array(    "name" => "Left Sidebar Font Size",
      "id" => $shortname."_left_sidebar_size",
      "type" => "select",
      "std" => "8pt",
      "options" => array("8pt", "9pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Left Sidebar Link Color",
      "id" => $shortname."_left_sidebar_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Left Sidebar Hover Link Color",
      "id" => $shortname."_left_sidebar_link_hover_color",
      "type" => "text",
      "std" => "#000000",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

// Main Content Style Settings

   array(    "name" => "Main Content Style Settings",
      "id" => $shortname."_content_style_settings",
      "type" => "header"),

   array(    "name" => "Main Content Font Size",
      "id" => $shortname."_content_size",
      "type" => "select",
      "std" => "9pt",
      "options" => array("9pt", "8pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Main Content Link Color",
      "id" => $shortname."_content_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Main Content Hover Link Color",
      "id" => $shortname."_content_link_hover_color",
      "type" => "text",
      "std" => "#000000",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

// Right Sidebar Style Settings

   array(    "name" => "Right Sidebar Style Settings",
      "id" => $shortname."_right_sidebar_style_settings",
      "type" => "header"),

   array(    "name" => "Right Sidebar Font Size",
      "id" => $shortname."_right_sidebar_size",
      "type" => "select",
      "std" => "9pt",
      "options" => array("9pt", "8pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Right Sidebar Link Color",
      "id" => $shortname."_right_sidebar_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #000000. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Right Sidebar Hover Link Color",
      "id" => $shortname."_right_sidebar_hover_link_color",
      "type" => "text",
      "std" => "#000000",
      "help" => "#000000 is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

// Footer Style Settings

   array(    "name" => "Footer Style Settings",
      "id" => $shortname."_footer_style_settings",
      "type" => "header"),

   array(    "name" => "Footer Font Size",
      "id" => $shortname."_footer_font_size",
      "type" => "select",
      "std" => "8pt",
      "options" => array("8pt", "9pt", "10pt", "11pt", "12pt"),
      "help" => ""),

   array(    "name" => "Footer Font Color",
      "id" => $shortname."_footer_font_color",
      "type" => "text",
      "std" => "#ffffff",
      "help" => "#ffffff is the HTML color code for white. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Footer Link Color",
      "id" => $shortname."_footer_link_color",
      "type" => "text",
      "std" => "",
      "help" => "Example: #ffffff. Find color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),

   array(    "name" => "Footer Hover Link Color",
      "id" => $shortname."_footer_hover_link_color",
      "type" => "text",
      "std" => "",
      "help" => "#ffffff is the HTML color code for black. More color codes <a href='http://www.htmlcolorcodes.org'>here</a>."),
);

function mytheme_add_admin() {

    global $themename, $shortname, $options;

    if ( $_GET['page'] == basename(__FILE__) ) {

        if ( 'save' == $_REQUEST['action'] ) {

                foreach ($options as $value) {
                    update_option( $value['id'], $_REQUEST[ $value['id'] ] ); }

                foreach ($options as $value) {
                    if( isset( $_REQUEST[ $value['id'] ] ) ) { update_option( $value['id'], $_REQUEST[ $value['id'] ]  ); } else { delete_option( $value['id'] ); } }

                header("Location: themes.php?page=functions.php&saved=true");
                die;

        } else if( 'reset' == $_REQUEST['action'] ) {

            foreach ($options as $value) {
                delete_option( $value['id'] ); }

            header("Location: themes.php?page=functions.php&reset=true");
            die;

        }
    }

    add_theme_page($themename." Options", "WP-Smooth Theme Settings", 'edit_themes', basename(__FILE__), 'mytheme_admin');

}

function mytheme_admin() {

    global $themename, $shortname, $options;

    if ( $_REQUEST['saved'] ) echo '<div id="message" class="updated fade"><p><strong>'.$themename.' settings saved.</strong></p></div>';
    if ( $_REQUEST['reset'] ) echo '<div id="message" class="updated fade"><p><strong>'.$themename.' settings reset.</strong></p></div>';

?>
<div class="wrap" id="backtotop">
<h2><?php echo $themename; ?> Theme Settings</h2>

<p style="width:70%;"><strong>Thanks so much for your purchase of WP-Smooth!</strong> A great deal of time, energy and brain power went into making this theme as simple and flexible as possible (within reason, of course).</p>

<p style="width:70%;"><strong>Below, you'll find oodles of optional settings for the theme</strong>. If you're in a hurry, WP-Smooth will function just fine without changing any of the default values below (although you may want to go ahead and fill in your <a href="#<?php echo $shortname; ?>_subscription_form_settings">Subscription Form Settings</a>).</p>

<p style="width:70%;"><strong>On the other hand, if you're in the mood to tinker</strong>, go ahead and change some of the settings just to see what sort of site you can create for yourself.</p>

<p style="width:70%;"><strong>If you run into trouble and don't know what to do</strong>, feel free to contact Solostream via <a href="http://www.solostream.com/support">the support forum</a>.</p>

<p style="width:70%;"><strong>Wherever you see 'Save Changes' it will save changes for ALL theme settings.</strong></p>

<ol>
   <li><a href="#<?php echo $shortname; ?>_basic_settings">Basic Site Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_home_page_post_settings">Home Page Post Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_site_title_settings">Site Title Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_basic_post_settings">Basic Post Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_subscription_form_settings">Subscription Form Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_ad_settings">Advertisement Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_basic_style_settings">Basic Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_top_nav_style_settings">Top Navigation Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_cat_nav_style_settings">Category Navigation Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_featured_style_settings">Featured Articles Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_left_sidebar_style_settings">Left Sidebar Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_content_style_settings">Main Content Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_right_sidebar_style_settings">Right Sidebar Style Settings</a></li>
   <li><a href="#<?php echo $shortname; ?>_footer_style_settings">Footer Style Settings</a></li>
</ol>

<form method="post">

<table class="optiontable">

<?php foreach ($options as $value) {

if ($value['type'] == "text") { ?>

<tr valign="top">
    <th scope="row" style="text-align:left;"><?php echo $value['name']; ?>:</th>
    <td>
        <input name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" type="<?php echo $value['type']; ?>" value="<?php if ( get_settings( $value['id'] ) != "") { echo get_settings( $value['id'] ); } else { echo $value['std']; } ?>" />
   <div style="font-size:8pt;padding-bottom:10px;"><?php echo $value['help']; ?></div>
    </td>
</tr>

<?php } elseif ($value['type'] == "header") { ?>
<tr colspan=2><td>
<p class="submit">
   <input name="save" type="submit" value="<?php _e('Save Changes'); ?>" />
   <input type="hidden" name="action" value="save" />
</p>
</td></tr>
<tr colspan=2><td><a href="#backtotop"><?php _e("Go to Top"); ?></a></td></tr>
<tr>
   <td colspan=2><h3 id="<?php echo $value['id']; ?>" style="text-align:left;padding-bottom:5px;border-bottom:1px solid #ccc;font-family:georgia,times,serif;margin-bottom:10px;font-size:16pt;color:#666;font-weight:normal;"><?php echo $value['name']; ?></h3></td>
</tr>

<?php } elseif ($value['type'] == "textarea") { ?>

<tr valign="top">
    <th scope="row" style="text-align:left;"><?php echo $value['name']; ?>:</th>
    <td>
      <textarea name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" rows="3" cols="90"><?php if ( get_settings( $value['id'] ) != "") { echo stripslashes(get_settings( $value['id'] ) ); } else { echo stripslashes($value['std'] ); } ?></textarea>
      <div style="font-size:8pt;padding-bottom:10px;"><?php echo $value['help']; ?></div>
    </td>
</tr>

<?php } elseif ($value['type'] == "select") { ?>

    <tr valign="top">
        <th scope="row" style="text-align:left;"><?php echo $value['name']; ?>:</th>
        <td>
            <select name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>">
                <?php foreach ($value['options'] as $option) { ?>
                <option<?php if ( get_settings( $value['id'] ) == $option) { echo ' selected="selected"'; } elseif ($option == $value['std']) { echo ' selected="selected"'; } ?>><?php echo $option; ?></option>
                <?php } ?>
            </select>
      <div style="font-size:8pt;padding-bottom:10px;"><?php echo $value['help']; ?></div>
        </td>
    </tr>

<?php
}
}
?>

</table>

<p class="submit">
   <input name="save" type="submit" value="<?php _e('Save Changes'); ?>" />
   <input type="hidden" name="action" value="save" />
</p>
</form>
<form method="post">
   <p class="submit" style="float:right;">
      <input name="reset" type="submit" value="<?php _e('Delete all Data and Reset to Default Settings'); ?>" />
      <input type="hidden" name="action" value="reset" />
   </p>
</form>

<?php
}

function mytheme_wp_head() { ?>
<link href="<?php bloginfo('template_directory'); ?>/style.php" rel="stylesheet" type="text/css" />
<?php }

add_action('wp_head', 'mytheme_wp_head');
add_action('admin_menu', 'mytheme_add_admin');
?>
User avatar
curbsyde
Registered User
Registered User
 
Posts: 5
Joined: December 18, 2011

Re: One off sales

Postby Raam Dev » December 23rd, 2011, 3:11 pm

Hey curbsyde,

Can you quadruple-check that there are no spaces at the very end of your functions.php file? There should be absolutely no spaces after the very last ?> tag. This is an extremely common problem and it trips me up all the time!
Raam Dev || Wherever you are, be there. || Please rate s2Member!
User avatar
Raam Dev
Developer
Developer
 
Posts: 810
Joined: October 26, 2011

Re: One off sales

Postby curbsyde » December 23rd, 2011, 4:48 pm

Yep, its on the last line. Just can't seem to figure it out. I have been able to use the shortcodes within posts to do what I need done. Though figuring out the functions.php hack would be best long term.
User avatar
curbsyde
Registered User
Registered User
 
Posts: 5
Joined: December 18, 2011

Re: One off sales

Postby Raam Dev » December 23rd, 2011, 11:42 pm

Your my_custom_capabilities() function is missing the closing curly bracket at the end:

Code: Select all
function my_custom_capabilities ()
   {
      
      if
(has_tag("rawhyde") && !current_user_can ("access_s2member_ccap_rwcn"))
         {
            header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
            exit ();
         }
         
      elseif
(has_tag ("barkerville") && !current_user_can ("access_s2member_ccap_barkerville"))
         {
            header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
            exit ();
         }   


 


should be:

Code: Select all
function my_custom_capabilities ()
   {
      
      if
(has_tag("rawhyde") && !current_user_can ("access_s2member_ccap_rwcn"))
         {
            header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
            exit ();
         }
         
      elseif
(has_tag ("barkerville") && !current_user_can ("access_s2member_ccap_barkerville"))
         {
            header ("Location: ". S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
            exit ();
         }   

}
 
Raam Dev || Wherever you are, be there. || Please rate s2Member!
User avatar
Raam Dev
Developer
Developer
 
Posts: 810
Joined: October 26, 2011


Return to s2Member Plugin

Who is online

Users browsing this forum: Majestic-12 [Bot] and 1 guest

cron