Changeset 2331869
- Timestamp:
- 06/28/2020 06:47:00 AM (6 years ago)
- Location:
- multi-rating/trunk
- Files:
-
- 3 edited
-
includes/auto-placement.php (modified) (3 diffs)
-
multi-rating.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
multi-rating/trunk/includes/auto-placement.php
r2331585 r2331869 32 32 $rating_results_position = get_post_meta( $post->ID, Multi_Rating::RATING_RESULTS_POSITION_POST_META, true ); 33 33 34 if ( $rating_form_position != Multi_Rating::DO_NOT_SHOW ) {35 34 if ( $rating_form_position != Multi_Rating::DO_NOT_SHOW && ! ( $rating_form_position == '' && ! MR_Utils::check_post_type_enabled( $post_id ) ) ) { 35 36 36 // use default rating form position 37 37 if ( $rating_form_position == '' ) { … … 48 48 } 49 49 50 if ( $rating_results_position != Multi_Rating::DO_NOT_SHOW ) {50 if ( $rating_results_position != Multi_Rating::DO_NOT_SHOW && ! ( $rating_results_position == '' && ! MR_Utils::check_post_type_enabled( $post_id ) ) ) { 51 51 52 52 // use default rating results position … … 118 118 119 119 $rating_results_position = get_post_meta( $post->ID, Multi_Rating::RATING_RESULTS_POSITION_POST_META, true ); 120 if ( $rating_results_position == Multi_Rating::DO_NOT_SHOW ) {120 if ( $rating_results_position == Multi_Rating::DO_NOT_SHOW || ( $rating_results_position == '' && ! MR_Utils::check_post_type_enabled( $post_id ) ) ) { 121 121 return $title; 122 122 } -
multi-rating/trunk/multi-rating.php
r2331585 r2331869 4 4 Plugin URI: http://wordpress.org/plugins/multi-rating/ 5 5 Description: A powerful rating system and review plugin for WordPress. 6 Version: 5.0 6 Version: 5.0.1 7 7 Author: Daniel Powney 8 8 Author URI: http://danielpowney.com … … 34 34 */ 35 35 const 36 VERSION = '5.0 ',36 VERSION = '5.0.1', 37 37 ID = 'multi-rating', 38 38 -
multi-rating/trunk/readme.txt
r2331596 r2331869 86 86 87 87 == Changelog == 88 89 = 5.0.1 (28/06/2020) = 90 Fix: Auto placement post type issue 88 91 89 92 = 5.0 (27/06/2020) =
Note: See TracChangeset
for help on using the changeset viewer.