[Plugin: WP User Frontend] Ugly post page, fields too big
-
If the new-post page is not the way it should be, just looks bad, because the fields are to big and all over the place, then below is the adjusted code I changed for the form in wpuf-add-post.php
Find where the form starts <form-name ……… until </form>Replace that with this code (removed all the ul and li, added breaks and alignment.
Regards, Ron
<p align=”left”>
<form name=”wpuf_new_post_form” action=”” method=”POST”>
<?php wp_nonce_field(‘wpuf-add-post’) ?>
<class=”wpuf-post-form”><label for=”new-post-title”>
Title <span class=”required”>*</span>
</label>
<input type=”text” name=”wpuf_post_title” id=”new-post-title” minlength=”2″>
<div class=”clear”></div><label for=”new-post-cat”>
Category:
</label>
<?php wp_dropdown_categories(‘hierarchical=1&hide_empty=0&orderby=id&show_count=0&title_li=&use_desc_for_title=1’) ?>
<div class=”clear”></div><label for=”new-post-desc”>
Description <span class=”required”>*</span>
</label>
<textarea name=”wpuf_post_content” id=”new-post-desc” cols=”65″ rows=”10″></textarea>
<div class=”clear”></div><label for=”new-post-tags”>
Tags:
</label>
<input type=”text” name=”wpuf_post_tags” id=”new-post-tags”>
<div class=”clear”></div><label></label>
<input class=”wpuf_submit” type=”submit” name=”wpuf_new_post_submit” value=”Post!”>
</form></p>
The topic ‘[Plugin: WP User Frontend] Ugly post page, fields too big’ is closed to new replies.