• Hello!

    I want to know if I can remove the svg heart altogether, and when the favorite button is clicked it turns the word “favorite” to “favorited”.

    Thanks,
    Christian

Viewing 1 replies (of 1 total)
  • Plugin Author Takashi Matsuyama

    (@takashimatsuyama)

    Hello, @christianj40

    Thank you for your question.

    Yes, you can that with CSS.

    For example :
    Navigate to the Appearance section of your dashboard and click on Customize. Scroll down to the bottom of the page and click Additional CSS. Or, add it to your theme’s CSS.

    .ccc-favorite-post-toggle > a::before {
      font-family: 'Your font family' !important;
      content: "favorite";
    }
    .ccc-favorite-post-toggle > a.save::before {
      content: "favorited";
    }

    And, this topic is also a little closer

    You can try it by setting up a development environment. I don’t recommend using it on a public theme right away.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Favorite to Favorited’ is closed to new replies.