• Resolved Brian Grover

    (@daboo2u2)


    Great little app for getting the word out. However, people aren’t signing up through the website. They aren’t clicking the “Find Out More” link, just grabbing the facts and, if interested, showing up. I wonder if it’s possible to change that boilerplate text to something like “Click to Sign-Up”.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jonathan Goldford

    (@jg-visual)

    I’m happy to help out Brian. The change is fairly straightforward, but it will require a little bit of code within your theme. To change the “Find Out More” link text, open the functions.php file within your theme and add this code to the end:

    /**
      * Update the read more text that displays for volunteer opportunities.
      *
      * By default, the link reads as "Find Out More".
      *
      * @param string $more_text The default read more text.
      * @return string The updated read more text.
      */
    function wi_update_volunteer_opp_read_more_text( $more_text ) {
    
      return 'Click to Sign Up';
    }
    add_filter( 'wivm_read_more_text', 'wi_update_volunteer_opp_read_more_text' );

    You can change the text that reads “Click to Sign Up” to whatever you’d like to display for those links. Keep in mind that the text will be used for both one-time and flexible volunteer opportunities.

    Let us know if you have any other questions. We’re happy to help.

    Thread Starter Brian Grover

    (@daboo2u2)

    Thanks for your suggestion. It worked perfectly. Now, fingers crossed, hoping people start actually signing up.

    Cheers….

    Plugin Author Jonathan Goldford

    (@jg-visual)

    Great, and good luck Brian! I hope you all get a ton of signups!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change “Find Out More” Text?’ is closed to new replies.