Viewing 4 replies - 1 through 4 (of 4 total)
  • kmcmahon56

    (@kmcmahon56)

    I am having the same issue with bullets. How do I make them disappear? Thanks. Otherwise great plug-in.

    This isn’t as elegant of a solution as just having a well written plugin but it works. Stick in your themes custom script or you can add a hook to wp_footer as well.

    <script>
    jQuery(document).ready(function() {      
      jQuery('.rpwe-summary').each(function(){
        jQuery(this).html(jQuery(this).find('.more-link'));
      });
    });
    </script>

    I am not sure where to put this.

    Does your theme have a spot for custom script? If so it can go there. Or you can hook in to your theme’s footer by adding this in your functions.

    function my_footer_hook() {
    ?><script>
    jQuery(document).ready(function() {      
      jQuery('.rpwe-summary').each(function(){
        jQuery(this).html(jQuery(this).find('.more-link'));
      });
    });
    </script><?
    }
    add_action( 'wp_footer', 'my_footer_hook');
    • This reply was modified 7 years, 9 months ago by graftedin.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How can I remove the bullets?’ is closed to new replies.