Changeset 1803986
- Timestamp:
- 01/16/2018 07:14:28 PM (8 years ago)
- Location:
- voting-platform-feelbacks/trunk
- Files:
-
- 1 deleted
- 2 edited
-
readme.txt (modified) (4 diffs)
-
settings-page.php (deleted)
-
vicomi-feelbacks.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
voting-platform-feelbacks/trunk/readme.txt
r1803617 r1803986 6 6 Requires at least: 2.8 or higher 7 7 Tested up to: 4.9.1 8 Stable tag: 2.0 18 Stable tag: 2.02 9 9 10 10 WHAT'S YOUR REACTION? With Feelback Reactions your audience can express how they are feeling about your content. … … 166 166 == Changelog == 167 167 168 = 2.0 1=168 = 2.02 = 169 169 * Moved plugin location links to the admin sidebar 170 170 * Created a settings sub page in addition to the plugin dashboard sub page … … 183 183 * Fix Registration 184 184 185 = 1.42 =186 * Tested for version 4.8.2187 188 189 185 == Upgrade Notice == 190 186 191 = 2.0 1=187 = 2.02 = 192 188 * Moved plugin location links to the admin sidebar 193 189 * Created a settings sub page in addition to the plugin dashboard sub page … … 206 202 * Fix Registration 207 203 208 = 1.42 =209 * Tested for version 4.8.2210 211 204 == For more Info == 212 205 -
voting-platform-feelbacks/trunk/vicomi-feelbacks.php
r1803617 r1803986 5 5 Description: Feelbacks is a new voting engagement widget that allows users to express their feelings about your content 6 6 Author: Vicomi <support@vicomi.com> 7 Version: 2.0 17 Version: 2.02 8 8 Author URI: http://vicomi.com/ 9 9 */ 10 10 11 11 require_once(dirname(__FILE__) . '/lib/vc-api.php'); 12 define('VICOMI_FEELBACKS_V', '2.0 1');12 define('VICOMI_FEELBACKS_V', '2.02'); 13 13 include_once(dirname(__FILE__) . '/settings-page.php'); 14 14 … … 205 205 $vicomi_checkboxes_selected = get_option('vicomi_checkboxes',false); 206 206 }else{ 207 $vicomi_checkboxes_selected = array('page','post' ,'product'); /* default values like we set in the settings page */207 $vicomi_checkboxes_selected = array('page','post'); /* default values like we set in the settings page */ 208 208 } 209 209 … … 237 237 $show_vicomoki_fellbacks = true; 238 238 } 239 if(in_array('product',$vicomi_checkboxes_selected) && (is_product()) && (!$exclude_this_page)){240 $show_vicomoki_fellbacks = true;241 }239 // if(in_array('product',$vicomi_checkboxes_selected) && (is_product()) && (!$exclude_this_page)){ 240 // $show_vicomoki_fellbacks = true; 241 // } 242 242 243 243 $curent_post_type = get_post_type(); 244 $basic_cpt_array = ['post','page','archive',' product','attachment'];244 $basic_cpt_array = ['post','page','archive','attachment']; 245 245 if(in_array($curent_post_type,$vicomi_checkboxes_selected) && !in_array($curent_post_type,$basic_cpt_array) && (!$exclude_this_page)){ 246 246 $show_vicomoki_fellbacks = true;
Note: See TracChangeset
for help on using the changeset viewer.