Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 42 total)
  • Author
    Posts
  • in reply to: Tabs content disappear #49023
    ThibautThibaut
    Participant

    Hello,

    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

    in reply to: Tabs content disappear #49015
    ThibautThibaut
    Participant

    I checked again, yes it is working on first load and save on first page but as soon as I save another page it disappears

    in reply to: Tabs content disappear #49014
    ThibautThibaut
    Participant

    Thank you! now it's working.

    in reply to: Tabs content disappear #49006
    ThibautThibaut
    Participant

    tabs-settings

    in reply to: Tabs content disappear #49005
    ThibautThibaut
    Participant

    meta-box-export.json
    nss-option.json

    in reply to: Tabs content disappear #49004
    ThibautThibaut
    Participant


    in reply to: Tabs content disappear #48981
    ThibautThibaut
    Participant

    Will do it later this week. Now having a break. Away from computer for few days.

    in reply to: Dashboard not working #31328
    ThibautThibaut
    Participant

    Hello,

    Placing the shortcode in Gutenberg for me is NOT working.

    Not sure how you managed....

    in reply to: Dashboard #30639
    ThibautThibaut
    Participant

    Here 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!

    in reply to: Relationship not working. #28086
    ThibautThibaut
    Participant

    I 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?

    in reply to: Relationship not working. #28085
    ThibautThibaut
    Participant

    if I use 'from' instead of 'to', it doesn't change anything.

    in reply to: Relationship not working. #28076
    ThibautThibaut
    Participant

    code 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.

    in reply to: URL field #28063
    ThibautThibaut
    Participant

    OK, got it, thanks! ({{ field }} is nough)

    in reply to: URL field #28062
    ThibautThibaut
    Participant

    I 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?

    in reply to: URL field #28060
    ThibautThibaut
    Participant

    how to solve this?

Viewing 15 posts - 1 through 15 (of 42 total)