Plugin Directory

Changeset 851418


Ignore:
Timestamp:
02/04/2014 07:20:59 PM (12 years ago)
Author:
william.deangelis
Message:

Updating to 1.44 to fix an issue with text templates

Location:
membership-simplified-for-oap-members-only/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • membership-simplified-for-oap-members-only/trunk/css/style.css

    r827640 r851418  
    12111211    margin-bottom: 10px;
    12121212}
     1213.text-template .post_title
     1214{
     1215    margin: 0;
     1216    padding: 0;
     1217}
     1218.text-template .posttitle_title h1
     1219{
     1220    margin-top: 0;
     1221}
    12131222
    12141223@media all and (max-width: 500px)
  • membership-simplified-for-oap-members-only/trunk/oapmembership.php

    r835156 r851418  
    44Plugin URI: http://membership.officeautopilot.com
    55Description: Membership Simplified allows you to generate membership lessons with templated content to create a unified look and feel throughout your courses. It also provides the inner workings such as navigation options, a login widget, and tinymce buttons to use when protecting any post or page content. Additionally, it sits on top of PilotPress, thus allowing you to use videos from the video manager, downloadable files from the file manager, and much more. Super easy to setup and manage! (Requires an OfficeAutopilot account and PilotPress installed)
    6 Author: William DeAngelis of OfficeAutopilot
    7 Version: Beta 1.43
    8 Release date: 1/8/2014
     6Author: William.DeAngelis, OfficeAutopilot
     7Version: Beta 1.44
     8Release date: 2/4/2014
    99Author URI: http://membership.officeautopilot.com
    1010*/
     
    741741
    742742
     743/**
     744@brief oapcontent() is a function that returns overview content in one of two templates
     745
     746##Overview
     747
     748After checking to make sure the plugin and pilotpress are both activated and properly setup, this function checks the users preferred template for displaying lesson overview content. It gets loaded by
     749
     750~~~{.php}
     751add_shortcode( 'oapcontent', 'oapcontent' );
     752~~~
     753
     754@warning This function returns one of two templates to display lesson overview content
     755@param $atts string This string passes the users desired template setting to the function
     756@return array An assortment of other functions mixed up with html (I know... not the best)
     757@author William DeAngelis <william@ontraport.com>
     758 */
    743759function oapcontent($atts)
    744760{
     
    14981514    });
    14991515    </script>
    1500     <div id="oap-content-text">
     1516    <div id="oap-content-text" class="bottom_section entry-content text-template">
    15011517        <input type="hidden" name="templatewidth" id="templatewidth" value="<?php echo get_option('template_width');?>" />
    15021518        <input type="hidden" name="pluginurl" id="pluginurl" value="<?php echo plugins_url();?>" />
  • membership-simplified-for-oap-members-only/trunk/readme.txt

    r835156 r851418  
    11=== Membership Simplified ===
    2 Contributors: OfficeAutopilot
     2Contributors: william.deangelis, OfficeAutopilot
    33Tags: Membership Plugin, Membership, OfficeAutopilot, Moonray, Ontraport, Membership Simplified
    44Requires at least: 3.0
     
    4747
    4848== Changelog ==
     49
     50= Beta 1.44 =
     51* Fixes a styling error on the text templates where it causes the sidebar to become 100% width and push the content below it.
    4952
    5053= Beta 1.43 =
Note: See TracChangeset for help on using the changeset viewer.