• Skip to primary navigation
  • Skip to main content

WP Discuss

Wordpress Research & Analytic

  • Submit
  • Disclaimers
  • About
  • DMCA
  • Privacy Policy
  • Contact

Monedas antiguas de estados unidos

  • No categories
  • All

The orders in WooCommerce admin are hidden (they have the “hidden” CSS class)

December 31, 2018 by Leave a Comment

I have recently moved one WordPress site from an online hosting to a VPS where I have full root access. Everything seems to be working fine. However, on the WooCommerce admin, the orders are hidden - that is, they have the "hidden" CSS class and thus they are not displayed. Here is a screenshot WooCommerce orders page: Here is the HTML code of one table row, with sensitive information removed: <tr id="post-CENSORED" class="iedit author-other level-0 post-CENSORED type-shop_order status-wc-pending post-password-required hentry"> <th scope="row" class="check-column"> <label class="screen-reader-text" for="cb-select-CENSORED">Elige Order – diciembre 28, 2018 @ 12:43 AM</label> <input id="cb-select-CENSORED" type="checkbox" name="post[]" value="CENSORED"> <div class="locked-indicator"> <span class="locked-indicator-icon" aria-hidden="true"></span> <span class="screen-reader-text">“Order – diciembre 28, 2018 @ 12:43 … [Read more...] about The orders in WooCommerce admin are hidden (they have the “hidden” CSS class)

Learn More

saving dropdown menu data on custom post type

December 2, 2014 by Leave a Comment

I'm following this tutorial on how to make a custom field. I already used it before and it worked, but I only did it for text inputs. Now I'd like to make a drop down menu and I'm unable. The thing shows up as expected but it is just not saving... Can you spot what I'm missing? add_action( 'add_meta_boxes', 'cd_meta_box_add' ); function cd_meta_box_add() { add_meta_box( 'sobreOProjeto', 'Sobre o projeto', 'projeto_callback', 'Projetos', 'normal', 'default' ); } function projeto_callback($post) { global $post; $values = get_post_custom( $post->ID ); $text = isset( $values['ano'] ) ? esc_attr( $values['ano'][0] ) : ''; $selected = isset( $values['estadoDaObra'] ) ? esc_attr( $values['estadoDaObra'][0] ) : ''; $check = isset( $values['institucional'] ) ? esc_attr( $values['institucional'][0] ) : ''; wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' ); ?> <p> <label for="ano">Ano de Criação</label> <input type="text" name="ano" id="ano" … [Read more...] about saving dropdown menu data on custom post type

Learn More

Post Office Savings Bank, Types of savings accounts, Post Savings Bank, html5 dropdown menu, post office savings account, jquery dropdown menu, 4 customer personality types, post office savings, post 0ffice savings, post office savings schemes

How to edit woocommerce checkout fields

May 21, 2019 by Leave a Comment

I want to make a dynamic select where the user will put state, there will appear the cities of this state, then will put city and will appear the universities of this city for him to choose, how can I do this? I've done this in php, but the code I used in php does not work inside the function to add in the field of woocommerce function novo_campo_woocommerce( $checkout ) { echo '<select id="estados" class="form-control" name="estados"> <option selected disabled>Escolha seu estado</option>'; $conexao = new PDO('mysql:host=localhost;dbname=teste', 'user', 'password'); $sql = ('SELECT * FROM tb_estado ORDER BY nome ASC'); $sql = $conexao->prepare($sql); $sql->execute(); $lista = $sql->fetchAll(); for ($i=0; $i < count($lista); $i++) { $uf = $lista[$i]['uf']; $nome = $lista[$i]['nome']; echo "<option value='$uf'>$nome</option>"; } echo '</select>'; echo '<select class="form-control" name="cidades" id="cidades" required> <option … [Read more...] about How to edit woocommerce checkout fields

Learn More

woocommerce_checkout how to edit, woocommerce custom fields, woocommerce checkout manager, woocommerce checkout 500 internal server error, simplify woocommerce checkout, customising woocommerce checkout page, modify woocommerce checkout page, contact form 7 woocommerce checkout, do_action( 'woocommerce_checkout_billing' ), wp_ajax_ woocommerce _ checkout

Contact form 7 not clickable on iphone

June 22, 2019 by Leave a Comment

The below form (webpage here), built using Contact form 7 is not clickable on iPhone. I can't find out why. Would you be able to help? <div class="one-third"> [select* Title "Title" "Mr." "Mrs." "Miss."] </div> <div class="one-third"> [text* firstname placeholder "First Name"] </div> <div class="one-third last"> [text* Lastname placeholder "Last Name"] </div> <div class="one-half"> [text company placeholder "Company"] </div> <div class="one-half last"> [select* country "Country" "United Kingdom" "Afghanistan" "Albania" "Algeria" "American Samoa" "Andorra" "Angola" "Anguilla" "Antigua and Barbuda" "Argentina" "Armenia" "Armenia" "Aruba" "Australia" "Austria" "Azerbaijan" "Azerbaijan" "Bahamas" "Bahrain" "Bangladesh" "Barbados" "Belarus" "Belgium" "Belize" "Benin" "Bermuda" "Bhutan" "Bolivia" "Bonaire" "Bosnia and Herzegovina" "Botswana" "Bouvet Island (Bouvetoya)" "Brazil" "British Indian Ocean Territory (Chagos Archipelago)" … [Read more...] about Contact form 7 not clickable on iphone

Learn More

ninja forms or contact form 7, ninja forms vs contact form 7, contact form 7 ninja forms, ninja forms contact form, contacts to sim iphone, contacts default account iphone, whatsapp contacts not syncing iphone, when contact was created iphone, contacts transfer from iphone to android, contacts transfer from iphone to iphone

pagination on wordpress and not showing all results

August 21, 2019 by Leave a Comment

I have this page that shows posts from a range of years selected of a form on a previous page. the first results display the 10 posts as set in args(post_by_page => 10); if there are more posts I use wp_pagenavi() plugin. But it doesn't display the rest of the posts. <?php if(isset($_POST['paisx']) && !empty($_POST['paisx'])){ $pais = $_POST['paisx']; $pais_explode = explode('|', $pais); /*echo "El id es: "; echo $pais_explode[0]; echo "El pais: "; echo $pais_explode[1]; */ } if(isset($_POST['nivellegislativo']) && !empty($_POST['nivellegislativo'])){ $nivelley = $_POST['nivellegislativo']; $result_explode = explode('|', $nivelley); /*echo "El nivel legislativo: "; echo $nivelley[0];*/} if(isset($_POST['MisEstados']) && !empty($_POST['MisEstados'])){ $estado = $_POST['MisEstados']; $estado_explode = explode('|', $estado); /*echo "El id del estado es: "; echo $estado_explode[0]; echo $estado_explode[1];*/ } //$fechaaprobacion = … [Read more...] about pagination on wordpress and not showing all results

Learn More

dressage show results, the voice results show tonight, maury show dna results

Copyright © 2021 WP Discuss. Power by Wordpress.