Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: page.php
<div class="container"> <div class="inner-heading"><h1><?php echo $pTitle; ?></h1> </div> </div> <!-- About_Body --> <section class="green_inner_sec green_about"> <div class="container"> <div class="row form-group"> <?php if($pageImg!=''){ $class_col = 'col-xl-7'; $class_hide = ''; }else{ $class_col = 'col-xl-12'; $class_hide = 'd-none'; } ?> <div class="<?php echo $class_hide; ?> col-xl-5 col-lg-12 col-md-12 text-center"> <div class="about_img_bx"> <img src="<?php echo base_url()."uplds".$this->data['rsStngs']->Theme."/".$pageImg; ?>" class="img-fluid"> </div> </div> <div class="<?php echo $class_col; ?> col-lg-12 col-md-12"> <div class="about_feature_cont"> <?php echo $pText; ?> </div> </div> </div> <div class="row"> <?php if($pageViewType == 'videos') { ?> <?php foreach($pageVideos as $pageVideo) { ?> <div class="col-lg-6 col-md-12 form-group"> <h3><?= $pageVideo->Title; ?></h3> <iframe width="420" height="315" src="https://www.youtube.com/embed/<?= $pageVideo->YouTubeLnk; ?>"> </iframe> <?= $pageVideo->Description; ?> </div> <?php } ?> <?php }else if($pageViewType == 'downloads'){ ?> <table id="datatable" class="table table-striped table-bordered dt-responsive nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;"> <thead> <tr> <th width="40%">Title</th> <th width="60%">File To Download</th> </tr> </thead> <tbody> <? foreach($pageDownloads as $pageDownload) { ?> <tr> <td><? echo stripslashes($pageDownload->Title); ?></td> <td> <? if($pageDownload->FileURL != '') { ?> <a download="" style="text-decoration:underline;" href="<?php echo base_url("uplds$THEME/".$pageDownload->FileURL); ?>">Download File</a> <? } else echo '-'; ?> </td> </tr> <? } if(empty($pageDownloads)) { ?> <tr> <td colspan="2" align="center">No records found!</td> </tr> <?php } ?> </tbody> </table> <?php } ?> </div> </div> </section> <!-- About_Body_end -->