Edit File: pm39.php
<?php if (class_exists('CSF')) { CSF::createWidget( 'orun_widget_post_module_39', array( 'title' => esc_html__('Oruno - Boşluk Modülü', 'orun'), 'class' => 'orun-widget-fields', 'classname' => 'orun_widget_post_module_39', 'description' => esc_html__('Bloklar arası belirli bir mesafe boşluk yaratmak isterseniz kullanabileceğiniz modülümüz.', 'orun'), 'fields' => array( array( 'id' => 'title', 'type' => 'text', 'title' => esc_html__('Modül Başlığı:', 'orun'), 'subtitle' => esc_html__('Yazı modülünün başlığını girin.', 'orun'), 'help' => esc_html__('Yazı modülünün başlığını girin. Boş bırakırsanız modülün başlığı görünmez.', 'orun'), ), array( 'id' => 'bosluk', 'type' => 'textarea', 'title' => esc_html__('Boşluk yüksekliği', 'orun'), 'subtitle' => esc_html__('Boşluk yüksekliğini giriniz.', 'orun'), 'default' => '<p>A45-day money-back guarantee<br><strong>$2.05/month</strong><br><span>Save 85%</span><br>Secure up to 8 devices</p>', ), ), ) ); if (!function_exists('orun_widget_post_module_39')) { function orun_widget_post_module_39($args, $instance) { if (!empty($instance['title'])) { echo $args['before_title'] . apply_filters('widget_title', $instance['title']) . $args['after_title']; } ?> <div class="space" style="height:<?php echo wp_kses_post($instance['bosluk'])?>px"> </div> <?php } } } ?>