doc: How to use WP grins with 1.5.
-
I’ve seen alot of problems with users trying to insert <?php wp_grins(); ?> into the admin CP under the edtoolbar. Well, this is how you do it. Go to wp-admin/admin-functions.php and find:
<script type="text/javascript">edToolbar();</script>
';
echo '</div>';
endif;
}Replace that with:
<script type="text/javascript">edToolbar();</script>
';
?>
<?php wp_grins(); ?>
<?php
echo '</div>';
endif;
}That should do it. Worked for me perfect. If you get errors, Post them here and Ill try to help ;).
Also,t this is a support question. I have inserted wp_grins(); to comments.php but since I have alot of emoticons, The page just like corrupts..everything like disappears (Well, not everything) and I cant do anything. How do I make it so I give
tags for like 5 smiles for each line?
- The topic ‘doc: How to use WP grins with 1.5.’ is closed to new replies.