Coder Social home page Coder Social logo

Comments (6)

stevep avatar stevep commented on June 14, 2024

@zimdin12 Can you provide code samples for the field group and custom post type registration? Thanks.

from acf-builder.

zimdin12 avatar zimdin12 commented on June 14, 2024

That code was scattered in different classes and surrounded by not relevant code, so I thew these together into one function for better screenshot..
registerfields

I am using "jjgrainger/PostTypes": v1.1.2 for creating post types..
registerposttype

from acf-builder.

stevep avatar stevep commented on June 14, 2024

Would it be possible to paste in the php array output when you print_r() the return array from the ->build() call?

When it broke what was upgraded? The ACF builder version? Did it work in the previous version? Or just broke php 7 -> 7.1?

Also does upgrading to acf 5.6.1 help?

from acf-builder.

zimdin12 avatar zimdin12 commented on June 14, 2024

I am sorry but I cant test it anymore.. Upgrading to PHP 7.1 fixed that problem for me, but it would be nice if it would work well with PHP 7 or PHP 5.6

from acf-builder.

DalkMania avatar DalkMania commented on June 14, 2024

This seems to be an issue still.

`function codex_custom_init()
{
$args = [
'public' => true,
'label' => 'Books'
];
register_post_type('book', $args);
}
add_action('init', 'codex_custom_init', 0);

add_action('acf/init', function () {
$acf = new StoutLogic\AcfBuilder\FieldsBuilder('sparse-content', [
'key' => 'sparse-content',
'title' => 'Sparse Content'
]);
$acf->addPostObject('related_books', ['post_type' => 'book']);
$acf->setLocation('post_type', '==', 'page');
acf_add_local_field_group($acf->build());
});`

I tried the code above with no luck. Books do exist. But the dropdown in the admin is empty. Am I missing something ?

UPDATE: Sorry my bad. It was some sort of plugin conflict :)

Thanks

from acf-builder.

zimdin12 avatar zimdin12 commented on June 14, 2024

Since we have PHP 8 now and this doesn't seem to be common issue then I will close this issue

from acf-builder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.