我想从GPL WordPress插件的底部删除一个链接...我已经安装了插件但链接仍然在它下面...
我在PHP文件中找到了代码,这里是代码...如果我删除或编辑任何代码小部件都会消失...明确建议编辑......
<script type="text/javascript">
jQuery(function() { jQuery("#calculator_widget").MortgageCalculator({ mode: "<?php echo ($instance['mode']) ? $instance['mode'] : 'widget';?>", animate: "<?php echo $instance['animate']?>", title: "<?php echo $instance['title']?>", footer: 'Powered by <?php echo get_option('loan_init')?>', intro: "<?php echo $instance['intro']?>", <?php echo get_option('calculator_code')?>});});
</script>
和php文件中的其他部分是这个...我认为这两个代码是相关的......
<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"> </script>
<script type="text/javascript" src="'.$x.'mlcalc.js"> </script>
<script type="text/javascript">
jQuery(function() { jQuery("#calculator_widget").MortgageCalculator({ mode: "normal", animate: "1", title: "'.$title.'", footer: \'Powered by '.$init.'\', intro: "'.$intro.'", '.$code.'});});
</script>
如果需要任何其他文件或完整代码,请咨询....请参阅小部件底部的链接由repaid.org提供
答案 0 :(得分:0)
2种方式.......
morgage计算器,它表示页脚,删除两者之间的内容&#39;&#39; (id说它可能需要一些价值,所以你传递空白!
<script type="text/javascript">
jQuery(function() { jQuery("#calculator_widget").MortgageCalculator({ mode: "<?php echo ($instance['mode']) ? $instance['mode'] : 'widget';?>", animate: "<?php echo $instance['animate']?>", title: "<?php echo $instance['title']?>", footer: '', intro: "<?php echo $instance['intro']?>", <?php echo get_option('calculator_code')?>});});
</script>
或
.mc-footer{display:none;}
在你的style.css。
中