Changeset 2079539
- Timestamp:
- 05/03/2019 12:20:19 AM (7 years ago)
- Location:
- content-repeater/trunk
- Files:
-
- 4 edited
-
assets/css/cr-styles.css (modified) (1 diff)
-
content-repeater.php (modified) (3 diffs)
-
includes/admin-page.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
content-repeater/trunk/assets/css/cr-styles.css
r2051274 r2079539 1 1 *, *:before, *:after {} 2 2 3 .twentytwenty-container img { 4 width: 100%; 5 } 3 6 .pswp { 4 7 z-index: 999999 !important; -
content-repeater/trunk/content-repeater.php
r2069760 r2079539 3 3 * Plugin Name: Content Repeater 4 4 * Description: Quickly set up custom content like Testimonials, Coupons, Products, Flipboxes, Portals, Portfolios, Before & Afters, etc. and display it in interesting ways: Ajax Reload, Masonry, Isotope, Slick Slider, Single Row. 5 * Version: 1.0.1 05 * Version: 1.0.11 6 6 * Author: Denis Buka 7 7 * Text Domain: content-repeater … … 657 657 $matches_single[1] = isset($matches_single[1]) ? $matches_single[1] : array(); 658 658 $merged = array_merge($matches[1], $matches_single[1]); 659 foreach($merged as $kk=>$vv) { // display meta boxes only if Template has meta fields660 if(!in_array($vv, array('post_id','post_url','post_title','post_image'))) { 659 foreach($merged as $kk=>$vv) { 660 // if(!in_array($vv, array('post_id','post_url','post_title','post_image'))) { // display meta boxes only if Template has meta fields 661 661 add_meta_box( 662 662 'cr-meta-boxes', … … 669 669 add_action( 'save_post_' . $type, array( 'Rptr_Class', 'save_meta_box_data' ) ); 670 670 break; 671 }671 // } 672 672 } 673 673 } -
content-repeater/trunk/includes/admin-page.php
r2045559 r2079539 187 187 'name' => 'rptr_options[nosyntax]', 188 188 'value' => 'Yes', 189 'current' => (isset($options['nosyntax']) ? $options['nosyntax'] : ' Yes'),189 'current' => (isset($options['nosyntax']) ? $options['nosyntax'] : 'No'), 190 190 'descr' => "Disable Template editor syntax highlighting", 191 191 'classes' => 'cr-checkbox' -
content-repeater/trunk/readme.txt
r2069760 r2079539 94 94 = 1.0.10 = 95 95 fix Testimonials template loading 96 = 1.0.11 = 97 fix meta boxes
Note: See TracChangeset
for help on using the changeset viewer.