Questions tagged [carbon-fields-2]

5 questions
3
votes
1 answer

How to retrieve field values from "Carbon Fields 2.1.0" WP-plugin? At which phase are they accessible?

First I downloaded https://carbonfields.net/zip/latest/ and installed the plugin at WP backend. I also activated it as well. For this test case I use the "Twenty Sixteen" template with a fresh WordPress installation without any other plugins…
Axel
  • 3,331
  • 11
  • 35
  • 58
2
votes
2 answers

use Carbon Fields in custom plugin class

I have a plugin which has no functionality so far. This is the current structure:
Mykyta Dudariev
  • 462
  • 5
  • 17
1
vote
1 answer

wordpress carbon fields get category list and products in plugin fields

I am using carbon fields in my custom plugin to make some fields. There I need couple of different fields with field where user can select category from a list of woocommerce product category. So for that I made my code like this
NewUser
  • 12,713
  • 39
  • 142
  • 236
0
votes
1 answer

WordPress Custom type post unable to edit in admin panel

I have to come into a custom theme that is 5 years old, and it has a careers page. But the post cannot be edited. I have been looking through the theme files where the post type is registered to see if it's a permission issue, but everything seems…
Martin Rojas
  • 123
  • 1
  • 6
0
votes
1 answer

Accessing carbon_get_post_meta value inside of a namespace

How can I access a Carbon Fields value using the function carbon_get_post_meta from within a namespace? If I do: if ( function_exists( 'carbon_get_post_meta' ) ): echo 'true'; else: echo 'false'; endif; Then I get false, but if I check for…