Support Forum » User Profile

Forum Replies Created

Viewing 9 posts - 46 through 54 (of 54 total)
  • Author
    Posts
  • goninski@gmail.com[email protected]
    Participant

    Hi

    I checked the support forum of ACP and found this post
    https://www.admincolumns.com/forums/topic/update-term-during-acp-editing-saved-action/

    ...which finally endet to the same post I already found on github
    https://github.com/codepress/admin-columns-hooks/blob/master/acp-editing-saved.php

    So at least it makes me more confident this solution will work. Takes a bit time for me to test/implement, ..still at beginner level 🙂

    Have a nice day
    François

    in reply to: Getting Number Field in WP Grid Builder Block Filter #37136
    goninski@gmail.com[email protected]
    Participant

    Hi Long

    Thanks for your reply.

    I found the reason: I needed to add ->ID at the end, so

    '$go_price = rwmb_meta( 'fg_sale_price', '', $object>ID );'

    But I don't know why it was working with normal text fields.
    However, now it's working fine 🙂

    Thanks and regards
    François

    in reply to: View: Permalink for CPT #32899
    goninski@gmail.com[email protected]
    Participant

    Hi
    Thanks for the snippet. It works now.
    But I do not understand why for this custom query in one case I need to use the wp function and in other cases not (eg. post.post_title)? Is there a simple answer?

    Thanks

    goninski@gmail.com[email protected]
    Participant

    Hi and thank you.

    Unfortunately the code is not working. I see I need to leverage my php knowledge urgently to get things like this work.

    Hava a nice day.

    goninski@gmail.com[email protected]
    Participant

    Hi,

    Thanks for your hint. Unfortunately this to high for me. I can't see where to change to code to get the term id on backend.

    This is my code. I don't know if you can provide the correct snippet.
    If not, thanks anyway. I understand.

    <?php
    add_action( 'rwmb_after_save_post', function( $post_id ) {
    
    $terms = get_the_terms( get_queried_object_id(), 'artists' );
    foreach ( $terms as $term ) {
        $term_name = rwmb_meta( 'fg_meta_artist_name', ['object_type' => 'term'], $term->term_id );
        $term_name_first = rwmb_meta( 'fg_meta_artist_name_first', ['object_type' => 'term'], $term->term_id );
    
        $value = $term_name_first;
    }
            update_post_meta( $post_id, 'fg_taxo_object_artist_names', $value );
    } );
    ?>
    goninski@gmail.com[email protected]
    Participant

    Hello

    Yes the 1st code is implemented on the single post template (cpt) (php code block in oxygen builder).

    The 2nd Code is in a code snippet and should update the field 'fg_taxo_object_artist_names' after saving a post in the editor (no frontend submission).

    But the field is not updatet. I guess the field values of the taxonomies are not fetched?
    (why is it working on frontend but not on backend?)

    Hope I was able to explain more clear.

    goninski@gmail.com[email protected]
    Participant

    Hello

    I was basicly succesfull with your help. One thing is not working though:

    When using this code on frontend of the post, it is working fine and showing the first name of the artist (fetched from custom taxonomy field):


    <?php
    $terms = get_the_terms( get_queried_object_id(), 'artists' );

    foreach ( $terms as $term ) {
    $term_name = rwmb_meta( 'fg_meta_artist_name', ['object_type' => 'term'], $term->term_id );
    $term_name_first = rwmb_meta( 'fg_meta_artist_name_first', ['object_type' => 'term'], $term->term_id );

    $value $term_name_first;
    echo $value;
    }

    ?>

    When trying to fill an empty custom field (text) with the same value, the field it not filled up:


    <?php
    add_action( 'rwmb_after_save_post', function( $post_id ) {

    < code from above (without echo) >

    update_post_meta( $post_id, 'fg_taxo_object_artist_names', $value );
    } );

    ?>

    Both fields are text fields.
    Do you see any reason why this is not working?

    Thanks a lot in advance.
    Regards, François

    in reply to: Showing Custom Fields of related Terms in Single Post #32134
    goninski@gmail.com[email protected]
    Participant

    thanks a lot. that was very helpful.

    goninski@gmail.com[email protected]
    Participant

    great, I'll try. Thanks a lot !

Viewing 9 posts - 46 through 54 (of 54 total)