Forum Replies Created
-
AuthorPosts
-
[email protected]
ParticipantHi
This problem happens again over and over, now without changing anything on the id or the group name.
I need to export all my field groups all the time because I never know when they are gone disappear.
I Increased the max-input-vars already to 5000 and still it happens.
See short video
https://www.berrycast.com/conversations/4e4661fd-5b2e-5fbe-9469-be9be9aac6d3I can't work with this insecurity. Tell me what you need to investigate this bug. It's a local installation, so you can't access it. But I can make you a backup with AIO Migration or whatever you need.
Thanks in advance for your help
François[email protected]
ParticipantHello
Thanks, I tried that already and it's not working. Right now almost nothing is working fine with Meta Box.
Just see this example
https://www.berrycast.com/conversations/a963bf4a-40c0-545e-9336-fbb41711fe7d
[email protected]
Participantok, thank you
[email protected]
ParticipantHi, thank you. So do I understand correctly this is only possible with code?
June 22, 2023 at 1:15 AM in reply to: ✅Can't use checkbox and switch field on local installations #42317[email protected]
ParticipantHello, I exported the field groups and cloned the installation freshly and then reimported the fields and for now it works fine again. I don't know the reason, because the other installation was also pretty fresh. ...Since working locally I experience more problems in general with local wp..
Thanks for your help anyway.[email protected]
Participantok, thank you. I'll try that (..although I think I tried this already, via Bricks Builder Templates)
[email protected]
ParticipantHi,
I'll send you the export of the field group by email.
This group contained only html fields.Shorty I had the same issue on a fresh wp install where I created a field group for a setting page with around 15 fields. Then all of a sudden they where gone. Can't remember if I was changing the name of the group but it's likely I did. All of the fields had NO ENTRIES, and slowly slowy I think this problem occurs more likely when there is no data or just html fields..
I'll let you know if the problem occurs again in future.
François
January 6, 2023 at 2:26 AM in reply to: ✅Predefined Values for Textareas / HTML-Code for Textfield #40137[email protected]
ParticipantHello
Thanks for your reply
1. no, I mean predefined values for textarea field (same as for text field). Is this somehow possible?
2. oh wow that's great, it works. finally I can use HTML for predefined values
3. great
[email protected]
ParticipantIt works and fixed also another bug.
Thanks a lot.
François[email protected]
Participantthank's a lot. I'll try this.
July 24, 2022 at 2:01 PM in reply to: ✅Update Post Meta after inline editing with admin columns pro #37158[email protected]
ParticipantHi
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.phpSo 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[email protected]
ParticipantHi 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[email protected]
ParticipantHi
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
December 6, 2021 at 8:04 PM in reply to: ✅Creating a custom field with value from other custom fields #32455[email protected]
ParticipantHi 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.
December 5, 2021 at 2:24 AM in reply to: ✅Creating a custom field with value from other custom fields #32426[email protected]
ParticipantHi,
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 ); } ); ?> -
AuthorPosts