Forum Replies Created
-
AuthorPosts
-
[email protected]
ParticipantYes it is installed with cpt and custom fields but no sign of the link....it is a local installation, can this be the reason?
[email protected]
ParticipantNever mind, reverted to php 7.4 and is now all good, thanks anyway
[email protected]
ParticipantHi Long,
I might have misunderstood the use of the extension.
I imagined that I could export the json file from a site and import it on a new site where metabox is installed....
After reding your comment I think that is nont possible, right?[email protected]
ParticipantNever mind, found a solution, thanks
[email protected]
ParticipantSorry, I forgot to mention that It Is set in the settings.....I did set it to zero...that Is the problem
...[email protected]
ParticipantHi Long,
I tried to deactivate all plugins except Oxygen,Metabox and Metabox AIO, no luck...
Although I use the visual version of metabox, If I go to "Generate PHP" to grab the code the result is as follows:<?php add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' ); function your_prefix_function_name( $meta_boxes ) { $prefix = ''; $meta_boxes[] = [ 'title' => __( 'Prezzo vendita', 'your-text-domain' ), 'id' => 'prezzo-vendita', 'post_types' => ['vendita'], 'fields' => [ [ 'name' => __( 'VALORE VENDITA', 'your-text-domain' ), 'id' => $prefix . 'valore_vendita', 'type' => 'number', 'step' => 'any', 'required' => true, 'admin_columns' => 'after Title', ], ], ]; return $meta_boxes; }It is a development site, if you want the credentials pls let me know
[email protected]
ParticipantHi Long,
I decided to ask here so I won't be opening another thread...
The standard value for a number field doens't work for me either, I set to 0 but is empty when I create a new post...
Any clue?Angelo
-
AuthorPosts