上线价格标签测试

hotfix/paypal-note
Jimmy Liow 2 years ago
parent 79192d5628
commit c6e902cd26

@ -1544,6 +1544,16 @@ class Information extends CI_Controller
true true
); );
$information->ic_content = str_replace('<!--@LANTERN-GP-FORM@-->', $gp_form_content, $information->ic_content); $information->ic_content = str_replace('<!--@LANTERN-GP-FORM@-->', $gp_form_content, $information->ic_content);
$price_tag_list = $this->parse_price_tag($information->ic_content);
foreach ($price_tag_list as $price_tag) {
$information->ic_content = str_replace(
$price_tag['placeholder'],
$price_tag['price_number'],
$information->ic_content
);
}
} }
// why-us 相关的标签 // why-us 相关的标签
$why_us_mobile = $this->load->view($template_path . '-why-us-mobile', false, true); $why_us_mobile = $this->load->view($template_path . '-why-us-mobile', false, true);

Loading…
Cancel
Save