Changeset 1400490
- Timestamp:
- 04/20/2016 02:37:11 PM (10 years ago)
- Location:
- voter-plugin/trunk
- Files:
-
- 5 edited
-
css/voter.css (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
voter.php (modified) (1 diff)
-
voter_functions.php (modified) (4 diffs)
-
voter_widgets_shorcodes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
voter-plugin/trunk/css/voter.css
r1397330 r1400490 1 .aheadzen_voter_css{background-repeat:no-repeat;width:auto;height:auto;display: block;padding:0;}1 .aheadzen_voter_css{background-repeat:no-repeat;width:auto;height:auto;display:inline;padding:0;} 2 2 3 3 .aheadzen_vote.helpful_vote {font-size: 80%; clear: both;display: inline-block;margin:10px 0 0; font-size;80%; padding-bottom:10px;} … … 75 75 .aheadzen_vote a.aheadzen_voter_css, .aheadzen_vote a.aheadzen_vote{float:none;} 76 76 ul.voter_top_list{list-style:none;} 77 ul.voter_top_list li {clear: both;float: none;padding-bottom: 10px;padding-top: 9px; border:none !important;}77 ul.voter_top_list li {clear: both;float: none;padding-bottom: 10px;padding-top: 9px; border:none;} 78 78 ul.voter_top_list li img{clear: both;display: inline-block;float: left;margin-bottom: 5px;margin-right: 10px; width: 50px; height: 50px;} 79 79 ul.voter_top_list li a{text-decoration:none;} 80 ul.voter_top_list li::before{content:'';margin:0;} 80 ul.voter_top_list.image li::before,ul.voter_top_list.titleimage li::before{content:'';margin:0;} 81 ul.voter_top_list.image li,ul.voter_top_list.titleimage li{border:none !important;} -
voter-plugin/trunk/readme.txt
r1397330 r1400490 459 459 = 3.0.15 = 460 460 * top voted list - problem - solved. 461 462 = 3.0.16 = 463 * top voted list - css problem for some themems - problem solved. -
voter-plugin/trunk/voter.php
r1397330 r1400490 8 8 Text Domain: aheadzen 9 9 Domain Path: /language 10 Version: 3.0.1 510 Version: 3.0.16 11 11 12 12 Copyright: © 2014-2015 ASK-ORACLE.COM -
voter-plugin/trunk/voter_functions.php
r1397330 r1400490 177 177 178 178 $voting_options = get_option('aheadzen_voter_display_options'); 179 179 $buttonStyle = ''; 180 180 $post_type_arr = array('page','post','product','custompost','comment','activity','profile','groups','topic','topic-reply'); 181 181 if($params['type'] && in_array($params['type'],$post_type_arr)){ … … 185 185 $voting_options = get_option('aheadzen_voter_display_options_'.$params['type']); 186 186 } 187 if($params['type']=='activity')$buttonStyle = ' button bp-primary-action '; 188 187 189 }else{ 188 190 global $post; … … 222 224 $class_up .= $votetype; 223 225 $class_down .= $votetype; 224 226 227 $class_up .= $buttonStyle; 228 $class_down .= $buttonStyle; 229 225 230 if($voting_options=='likeunlike'){ 226 231 $votestr.= '<div id="aheadzen_voting_'.$params['secondary_item_id'].'_'.$params['item_id'].'_'.$params['component'].'" class="aheadzen_vote like_unlike_vote">'; … … 1003 1008 } 1004 1009 if($final_arr){ 1005 $return .= '<ul class="voter_top_list list_'.$type.'">';1010 $return .= '<ul class="voter_top_list item-list list_'.$type.'" >'; 1006 1011 $return .= implode(' ',$final_arr); 1007 1012 $return .= '</ul>'; -
voter-plugin/trunk/voter_widgets_shorcodes.php
r1372853 r1400490 20 20 function aheadzen_voter_widget() { 21 21 //Constructor 22 $widget_ops = array('classname' => ' widgetaheadzen_voter widget_categories', 'description' => __('Display top voted posts,pages,products,groups,members etc...','aheadzen') );22 $widget_ops = array('classname' => 'buddypress aheadzen_voter widget_categories', 'description' => __('Display top voted posts,pages,products,groups,members etc...','aheadzen') ); 23 23 $this->__construct('aheadzen_voter','Top Listings Voter Plugin', $widget_ops); 24 24 }
Note: See TracChangeset
for help on using the changeset viewer.