Changeset 999334
- Timestamp:
- 09/30/2014 05:29:03 PM (12 years ago)
- Location:
- because/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (2 diffs)
-
public/assets/css/public.css (modified) (3 diffs)
-
public/assets/js/public.js (modified) (2 diffs)
-
public/class-social-polling.php (modified) (2 diffs)
-
public/includes/templates/sp_comments.php (modified) (1 diff)
-
social-polling.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
because/trunk/README.txt
r996791 r999334 7 7 Tested up to: 4.0 8 8 <<<<<<< .mine 9 Stable tag: 1.3. 29 Stable tag: 1.3.3 10 10 ======= 11 Stable tag: 1.3. 211 Stable tag: 1.3.3 12 12 >>>>>>> .r969865 13 13 License: GPLv2 or later … … 18 18 == Description == 19 19 20 Content providers created comment sections to engage audiences. However, most websites see comment rates of less than 1%, and three-quarters of those are off-topic ortoxic remarks.20 Many websites contain comment sections to encourage user interaction and feedback. Unfortunately, those sections are often riddled with tiring explanations, narrow-minded views and potentially toxic remarks. 21 21 22 Because is a new commenting platform that increases audience engagement by providing new avenues for channelling audience discussions.22 At Because we see this as an opportunity for change. With our “poll and discuss” method, users are able to submit their own ideas, thoughts and feelings within a given character limit. This encourages clear and concise responses to every post. In addition, users benefit from a platform that welcomes many perspectives, giving users a voice in commenting they've never had before. 23 23 24 At Because, we've found a way to increase audience engagement and decrease irrelevant interactions. 25 We empower the audience to give their opinion, and give content providers the discussion their content deserves! 24 But we’re not stopping there. We recognize the potential for content managers to use information provided by a more engaged user base for advertising, site traffic monitoring and content feedback. By better serving users, Because can better serve sites. 25 26 We’re giving users a voice. And websites a choice. 26 27 27 28 == Installation == -
because/trunk/public/assets/css/public.css
r996791 r999334 233 233 margin-bottom:0px; 234 234 word-wrap:break-word; 235 235 margin-left:45px; 236 236 } 237 237 … … 392 392 { 393 393 border-bottom: 1px solid #ccc; 394 min-height: 90px;394 min-height: 100px; 395 395 } 396 396 … … 401 401 padding:0; 402 402 height:auto; 403 width:20px ;403 width:20px!important; 404 404 } 405 405 -
because/trunk/public/assets/js/public.js
r996791 r999334 164 164 }, 2000); 165 165 166 $('#social_polling_see_results_wrapper').html('You Already Voted');166 //$('#social_polling_see_results_wrapper').html('You Already Voted'); 167 167 168 168 … … 229 229 230 230 231 232 document.getElementById('comment').placeholder = 'Why did you vote like that?'; 233 234 235 231 //change placeholder text, commented out for now but might need it again 232 233 //document.getElementById('comment').placeholder = 'Why did you vote like that?'; 234 235 236 $("#textarea") 237 .focus(function() { 238 if (this.value === this.defaultValue) { 239 this.value = ''; 240 } 241 }) 242 .blur(function() { 243 if (this.value === '') { 244 this.value = this.defaultValue; 245 } 246 }); 236 247 237 248 -
because/trunk/public/class-social-polling.php
r996791 r999334 455 455 456 456 457 //Lets take our post_id and use this to get our t o possible answers.457 //Lets take our post_id and use this to get our two possible answers. 458 458 $answers = array(); 459 459 $answer_1 = get_post_meta($post_id,'_social_polling_answer_one_field',true ); … … 587 587 <div id="social_polling_see_results_wrapper"><?php echo _e( 'Vote to see results', 'myplugin_textdomain' ); ?></div> 588 588 589 589 <div id="social_polling_already_voted_wrapper">Note: You have already voted on this poll</div> 590 590 591 591 -
because/trunk/public/includes/templates/sp_comments.php
r952982 r999334 87 87 88 88 <?php comment_form(); ?> 89 89 $active = get_post_meta($post->ID, 'social_polling_active_field', true ) == 'yes' ? true : false; 90 if ($active){ 91 $args = array( 92 'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" value="abcdefghj">Why did you vote the way you did?</textarea></p>' 93 ); 94 comment_form($args); 95 } 96 else{ 97 comment_form($args); 98 } 90 99 </div><!-- #comments --> -
because/trunk/social-polling.php
r996791 r999334 34 34 35 35 <<<<<<< .mine 36 * Version: 1.3. 236 * Version: 1.3.3 37 37 ======= 38 * Version: 1.3. 238 * Version: 1.3.3 39 39 >>>>>>> .r969865 40 40
Note: See TracChangeset
for help on using the changeset viewer.