Filters “Add me to pets’ listing”
-
This is a development domain for a humane society in Florida. Petfinder fixed my API key to show full descriptions because we are a shelter, using Petfinder listings on our website.
I want to add something (a text link) to the bottom of every listing. I added the function snippet from the documentation to my functions.php file and nothing happens:
function replace_pet_description( $description ) {
return $description . ” Add me to end of all pets’ descriptions”;
}
add_filter( ‘petf_replace_description’, ‘replace_pet_description’ );I cleared my browser cache. Tried it in functions.php in my theme file and also in my child theme; neither worked.
Can you steer me toward a fix?
Many thanks.
The page I need help with: [log in to see the link]
- The topic ‘Filters “Add me to pets’ listing”’ is closed to new replies.