Forum Replies Created
-
AuthorPosts
-
Thibaut
ParticipantHello,
Yes I remove toggle for other pages and deleted settings page and recreated one but still no luck.
I will send you login details later today.
thanks
Thibaut
ParticipantI checked again, yes it is working on first load and save on first page but as soon as I save another page it disappears
Thibaut
ParticipantThank you! now it's working.
Thibaut
ParticipantThibaut
ParticipantThibaut
ParticipantThibaut
ParticipantWill do it later this week. Now having a break. Away from computer for few days.
Thibaut
ParticipantHello,
Placing the shortcode in Gutenberg for me is NOT working.
Not sure how you managed....
Thibaut
ParticipantHere the reply of Oxygen...
"The integration introduced in Oxygen 3.9 covers only the core Meta Box fields for dynamic data usage. We haven't yet addressed all of the functionalities added by the various add-ons, nor can I comment on whether we will in the future."
Now what is your solution????
I expect now the frontend dashboard to be solved by Metabox ASAP, I have several sites impacted with no solution, sorry to say but this is not acceptable!
Thibaut
ParticipantI had to change publisher-book to book publisher also.
Now I am confused.
publisher-book with to is not the same as book-publisher with from?
Thibaut
Participantif I use 'from' instead of 'to', it doesn't change anything.
Thibaut
Participantcode that create the relationnship (sorry not sure if this is what you mean by get the code, I just extracted the php function from the relationship in metabox)
<div> <?php add_action( 'mb_relationships_init', 'your_prefix_function_name' ); function your_prefix_function_name() { MB_Relationships_API::register( [ 'id' => 'publisher-book', 'reciprocal' => true, 'from' => [ 'object_type' => 'post', 'post_type' => 'publisher', 'meta_box' => [ 'priority' => 'high', 'style' => 'seamless', ], 'field' => [ 'name' => 'Publisher', ], ], 'to' => [ 'object_type' => 'post', 'post_type' => 'book', 'meta_box' => [ 'priority' => 'high', 'style' => 'seamless', ], 'field' => [ 'name' => 'Books', 'add_button' => 'Add books', ], ], ] ); } </div> code that get the books <div> <div class="container3"> {% set relationship = attribute( relationships, 'publisher-book' ) %} {% for post in relationship.to %} <div class="container4"> <a href="{{ post.url }}"> <img src="{{ post.thumbnail.medium.url }}" width="{{ post.thumbnail.medium.width }}" height="{{ post.thumbnail.medium.height }}" alt="{{ post.thumbnail.medium.alt }}" /> <h4>{{ post.title }}</h4></a> </div> {% endfor %} </div> </div>thank you.
Thibaut
ParticipantOK, got it, thanks! ({{ field }} is nough)
Thibaut
ParticipantI changed url to publisher-url in MySql, so the data are back into the post but still the above functions returns 0, what should b the function to return the url?
Thibaut
Participanthow to solve this?
-
AuthorPosts