erminiomendes 0 Denunciar post Postado Julho 29, 2020 Ola, estou fazendo uma modificaçao em um plugin em wordpress, porem nao manjo muito de PHP, vou tentar ser breve... tenho esse cod: add_action('dokan_product_edit_after_product_tags','show_on_edit_page',99,2); function show_on_edit_page($post, $post_id){ $new_field = get_post_meta( $post_id, 'new_field', true ); ?> <div class="dokan-form-group"> <input type="hidden" name="new_field" id="dokan-edit-product-id" value="<?php echo esc_attr( $post_id ); ?>"/> <label for="new_field" class="form-label"><?php esc_html_e( 'Charity', 'dokan-lite' ); ?></label> <?php dokan_post_input_box( $post_id, 'new_field', array( 'placeholder' => __( 'Choose your charity', 'dokan-lite' ),'value' => $new_field)); ?> <div class="dokan-product-title-alert dokan-hide"> <?php esc_html_e( 'Please enter charity!', 'dokan-lite' ); ?> </div> </div> <?php } e preciso add nesse new_field a seguinte informacao: id="charityField" readonly data-toggle="modal" data-target="#myModal" pois estou populando esse new_field através de uma pagina filho (modal) onde ele ira escolher uma opcao de uma lista que vem do meu banco de dados. alguem consegue me ajudar? please! Compartilhar este post Link para o post Compartilhar em outros sites