Plugin Directory

Changeset 1071877


Ignore:
Timestamp:
01/20/2015 06:55:51 PM (11 years ago)
Author:
ishimwe
Message:

Updated to version 3.0.4

Location:
sidebar-post/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sidebar-post/trunk/css/spost.css

    r1069866 r1071877  
    77.spost_box{ border-top: #060 6px solid; border-bottom:#060 3px solid; background:#DFF4E1; padding-bottom:10px; padding: 3px;}
    88#wp_sidebarpost_main button{ cursor: pointer; margin-bottom: 10px;}
    9 #spostLogin{ width: 175px; height: 45px; padding: 8px 25px; border-radius:5px; border:none; font-size:24px;}
    10 #spostRegister{ width: 175px; height: 45px; padding: 8px 25px;border-radius:5px; border:none;  font-size:24px}
    11 .separatorHorizontal{ background:url(../images/separator-horizontal.png) no-repeat center; height: 50px; width:300px;}
     9#spostLogin{ width: 200px; height: 45px; padding: 8px 25px; border-radius:5px; border:none; font-size:24px;}
     10#spostRegister{ width: 200px; height: 45px; padding: 8px 25px;border-radius:5px; border:none;  font-size:24px}
     11.separatorHorizontal{ background:url(../images/separator-horizontal.png) no-repeat center; height: 50px; width:200px;
     12margin:30px auto}
     13 
    1214#or{ width:50px; height:35px; border-radius:25px; margin-left:auto; margin-right:auto; text-align:center; padding-top:12px; font-size:18px}
    13 .mustLog, .mustLogRegister{margin-left:auto; margin-right:auto; width:50%;}
     15.mustLog, .mustLogRegister{margin-left:auto; margin-right:auto; width:50%; width:200px;}
    1416
    1517#loginRegisterHidden{ background:#003; height: 500px; width:500px; display: none; position: fixed; top:32; right:0}
  • sidebar-post/trunk/readme.txt

    r1070696 r1071877  
    11=== Plugin Name ===
    2 Contributors: ishimwe,janvierdesigns
     2Contributors: ishimwe,wpcoding.ca
    33Donate link: http://www.wpcoding.ca/donate
    44Tags: post,sidebar, sidebar post, wordpress, posting, wordpress MU, MU
    55Requires at least: Wordpress 3.0
    66Tested up to: Wordpress 4.1
    7 Stable tag: 3.0.3
     7Stable tag: 3.0.4
    88
    99This plugin allows your visitors (logged in OR Not) to submit posts to your site via a simple sidebar widget form.
     
    1313
    1414This plugin allows your visitors (logged in OR Not) to submit posts to your site via a sidebar widget form, or a custom shortcode in a page or post of your choice.
    15 This is a very easy way to get your visitors to engage on your website. We will have a premium module that will allow users whose emails don't exist in the database to be added immediately.
    16 It comes  with a javascript form validation (user can't submit post if some fields are empty), and once the post has been submitted it is saved as a draft.
     15This is a very easy way to get your visitors to engage on your website. The idea came from a client who wanted a way to let members of their congregation post articles in the main church's website
     16Some of the niches this plugin can be useful include:
     17
     18* Blogging website with many contributors
     19* Community webstes with user participation/interativity
     20* Forum like websites that don't want to use a fully featured forum module/plugin
     21* Classified ads website where users post and review others' posts
     22
     23and more
    1724
    1825This plugin is fully localizable with .po file included. The .mo for  Français is included
     
    2027You can join/follow the discussion about the plugin on its home page at http://www.wpcoding.ca/forums/forum/plugins/sidebar-post/
    2128
    22 Twitter: https://twitter.com/wpcodingca
    23 Facebook: https://www.facebook.com/wpcoding.ca
    24 Github: https://github.com/wordpresscoding
     29* Twitter: https://twitter.com/wpcodingca
     30* Facebook: https://www.facebook.com/wpcoding.ca
     31* Github: https://github.com/wpcodingca
    2532
    2633== Installation ==
     
    7077* Added Default Post user
    7178
     79=3.0.4=
     80
     81* Fixed formatting issues
     82
    7283== Upgrade Notice ==
    7384
  • sidebar-post/trunk/sidebar_post.php

    r1070696 r1071877  
    44Plugin URI: http://www.wpcoding.ca
    55Description: This plugin places a posting form in the sidebar
    6 Version: 3.0.3
     6Version: 3.0.4
    77Author: Janvier M @ WpCoding .Ca
    88Author URI: http://www.wpcoding.ca
     
    1818global $shortname;
    1919$shortname = "spost_";
    20 define('SPOST_VERSION','3.0.3');
    21 define('SPOST_DATABASE_VERSION','3.0.3');
    22 define('SPOST_BUILD','01182015');
     20define('SPOST_VERSION','3.0.4');
     21define('SPOST_DATABASE_VERSION','3.0.4');
     22define('SPOST_BUILD','01202015');
    2323define('SOFTWARE_NAME',__('Sidebar Post','spost'));
    2424define( 'SPOST_PLUGIN_DIR', WP_PLUGIN_DIR . '/sidebar-post' );
     
    129129    </form>
    130130    <?php else: ?>
     131    <div id="loginButtons">
    131132    <div class="mustLog">
    132133        <button name="spostLogin" id="spostLogin" onclick="location.href='<?php echo get_bloginfo('home'); ?>/wp-login.php'"><?php _e('Login','spost'); ?></button>
     
    138139        <button name="spostRegister" id="spostRegister" onclick="location.href='<?php echo get_bloginfo('home'); ?>/wp-login.php?action=register'"><?php _e('Register','spost'); ?></button>
    139140    </div><div class="clearall"></div>
     141    </div>
    140142    <?php endif; ?>
    141143</div>
     
    344346 
    345347    $one = add_menu_page(__('Sidebar Post','spost'),__('Sidebar Post','spost'),'switch_themes', "spost", "spost_admin_fx", SPOST_PLUGIN_URL.'/images/icon.png', '5.4');
    346     $mainsettings = add_submenu_page('spost', __('Main Settings','spost'), __('Main Settings','spost'), 'switch_themes', 'spost-main-settings', 'spost_main_options' );
     348    $mainsettings = add_submenu_page('spost', __('Advanced Settings','spost'), __('Advanced Settings','spost'), 'switch_themes', 'spost-main-settings', 'spost_other_admin_options' );
    347349    $uninstallspost = add_submenu_page('spost', __('Uninstall','spost'), __('Uninstall','spost'), 'switch_themes', 'spost-uninstall', 'spost_uninstall_fx' );
    348350    $loginattemps = add_submenu_page('spost', __('Documentation','spost'), __('Documentation','spost'), 'switch_themes', 'spost-documentation', 'spost_documentation_fx' );
     
    527529
    528530}
    529 function spost_main_options(){?>
     531function spost_other_admin_options(){?>
    530532<div id="spostContainer">
    531533<form id="spostForm1" enctype="multipart/form-data" method="post" action="">
    532534    <div class="spostRow" id="theHeader">
    533         <h1><?php _e('Sidebar Post - Admin Main Settings','spost'); ?></h1>
     535        <h1><?php _e('Sidebar Post - Avanced Settings','spost'); ?></h1>
    534536        <div class="clearall"></div>
    535537    </div><div class="clearall"></div>
Note: See TracChangeset for help on using the changeset viewer.