Nevermind, I got it working … apparently loading up the master branch into the plugins folder works. WordPress might need to get the update…
Hey, how did you get this to work? I’m having the same problem.
Go to the github repository. I think the wordpress version might have something different in it because it started working after I replaced the plugin manually in the plugins folder.
Also, the API could be an issue for you. I had to double check a couple times that it was correct in my functions.php (see the documentation)
Hi There,
Sorry for not responding here, I didn’t get any notifications! I’m on top of it now though! I think this may have been resolved since. Can you let me know if you still get any errors like this? I’m monitoring things now so I’ll fix the issues right away!
Daniel
Hi,
I’ve installed ACF and gF.
I’ve added a Custom Field, which appears in my posts and pages edit screen.
I’ve selected a font and updated.
How do I actually apply that font to elements in the post or page? No change occurs after I completed the steps above.
Hi There,
Sorry for the wait on this one! The classes used in the CSS reflect the standard classes in WordPress, although not all themes may follow this. If you need to create your own rules you’ll need to create a custom style.
First, find the element you want to apply it to and then do something like this:
.my_element {
font-family: FontYouNeed;
}
Daniel