Changeset 1787753
- Timestamp:
- 12/15/2017 05:02:08 PM (8 years ago)
- Location:
- marketing-optimizer
- Files:
-
- 3 added
- 3 deleted
- 6 edited
-
assets/banner-1544x500.jpg (deleted)
-
assets/banner-772x250.jpg (deleted)
-
assets/icon.svg (deleted)
-
assets/screenshot-1.png (modified) (previous)
-
assets/screenshot-2.png (modified) (previous)
-
assets/screenshot-3.png (modified) (previous)
-
assets/screenshot-7.png (added)
-
assets/screenshot-8.png (added)
-
assets/screenshot-9.png (added)
-
trunk/includes/class.mo_post_type.php (modified) (1 diff)
-
trunk/marketing-optimizer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
marketing-optimizer/trunk/includes/class.mo_post_type.php
r1744151 r1787753 526 526 */ 527 527 public function mo_get_variation_content_for_editor($content, $post_id) { 528 528 529 global $post; 530 $mo_obj = $this->get_obj_by_type($post_id); 531 $v_id = $mo_obj->get_current_variation(); 532 529 533 if (get_post_type($post_id) === $this->get_mo_pt_post_type()) { 530 $mo_obj = $this->get_obj_by_type($post_id); 531 $v_id = $mo_obj->get_current_variation(); 532 534 533 535 try { 534 536 $content_tmp = $mo_obj->get_variation_property($v_id, 'content'); 535 $content = ($content_tmp =="" && $v_id==0)?$post->post_content:$content_tmp;537 $content = ($content_tmp && $v_id===0)?$post->post_content:$content_tmp; 536 538 } catch (Exception $e) { 537 539 $content = ''; 538 540 } 541 539 542 return $content; 540 } 543 544 } 545 541 546 return $content; 542 547 } -
marketing-optimizer/trunk/marketing-optimizer.php
r1748179 r1787753 3 3 * Plugin Name: Marketing Optimizer for Wordpress Plugin 4 4 * URI: http://www.marketingoptimizer.com/?apcid=8381 5 * Version: 20171 0175 * Version: 20171215 6 6 * Description: Create Landing Pages for Wordpress 7 7 * Author: Marketing Optimizer, customercare@marketingoptimizer.com … … 23 23 CONST MO_DIRECTORY = 'marketing-optimizer'; 24 24 25 public static $plugin_version = '20171 017';25 public static $plugin_version = '20171215'; 26 26 27 27 public static $plugin_name = 'marketing-optimizer'; -
marketing-optimizer/trunk/readme.txt
r1748179 r1787753 104 104 5. Landing Pages A/B Testing 105 105 6. Landing Pages Templates 106 7. Phone Tracking Settings 107 8. Landing Pages / Pop Up / Call-To-Action Settings 108 9. Shortcodes 106 109 107 110 == Changelog == 111 = Version 20171215 = 112 * #bugFix fixed error with Divi theme page builder, switching between front-end visual editor and regular page editor lost content 108 113 = Version 20171017 = 109 114 * #enhancement WordPress landing page banner and icon assets
Note: See TracChangeset
for help on using the changeset viewer.