Advertisement
Guest User

Untitled

a guest
Aug 9th, 2019
979
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. /**
  2. * Add a custom product data tab
  3. */
  4. add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
  5. function woo_new_product_tab( $tabs ) {
  6.  
  7. // Adds the new tabs
  8.  
  9. $tabs['new_tab_1'] = array(
  10. 'title' => __( 'PAGAMENTI', 'woocommerce' ),
  11. 'priority' => 11,
  12. 'callback' => 'new_tab_1'
  13. );
  14.  
  15.  
  16.  
  17. $tabs['new_tab_2'] = array(
  18. 'title' => "SPEDIZIONI",
  19. 'priority' => 12,
  20. 'callback' => 'new_tab_2'
  21. );
  22.  
  23. $tabs['new_tab_3'] = array(
  24. 'title' => "CAMBI - RESI",
  25. 'priority' => 13,
  26. 'callback' => 'new_tab_3'
  27. );
  28.  
  29. return $tabs;
  30.  
  31. }
  32.  
  33. function new_tab_1() {
  34.  
  35. // The new tab content
  36.  
  37. echo '<table>
  38. <tbody>
  39. <tr>
  40. <td style="font-size: 14px"><strong>Paypal</strong></td>
  41. <td style="color: #888888">Carta di credito, visa, master card e altre carte.</td>
  42. </tr>
  43. <tr>
  44. <td style="font-size: 14px"><strong>Bonifico bancario</strong></td>
  45. <td style="color: #888888">Vi verranno fornite tutte le coordinate alla conclusione dell’ordine (Il bonifico deve essere effettuato entro 4 ore dalla conferma dell’ordine, superato tale, l’ordine verrà annullato automaticamente dal sito)</td>
  46. </tr>
  47. <tr>
  48. <td style="font-size: 14px"><strong>Ricaricando la “NOSTRA” postepay</strong></td>
  49. <td style="color: #888888">Troverete le coordinate a fine ordine (La ricarica poste pay deve essere effettuato entro 4 ore dalla conferma dell’ordine, superato tale, l’ordine verrà annullato automaticamente dal sito) </td>
  50. </tr>
  51. <tr>
  52. <td style="font-size: 14px"><strong>Alla consegna</strong></td>
  53. <td style="color: #888888">Costo fisso di 5,99 €</td>
  54. </tr>
  55. </tbody>
  56. </table>';
  57. }
  58.  
  59. function new_tab_2() {
  60. echo'<br>
  61. Per acquisti <strong>INFERIORI</strong> a <strong>99 €</strong> con pagamento ricaricando la nostra PostePay, Bonifico o PayPal <strong>COSTO SPEDIZIONE:</strong> € <strong>5,99</strong>
  62. <br>
  63. <br>
  64. Con pagamento in CONTRASSEGNO COSTO SPEDIZIONE <strong>€ 7,99</strong>
  65. <br>
  66. <br>
  67. Per acquisti SUPERIORI ai 99,00 € con pagamento ricaricando la nostra PostePay, Bonifico o PayPal <strong>COSTO SPEDIZIONE:</strong> <strong>GRATIS</strong>
  68. <br>
  69. <br>
  70. Effetuiamo la spedizione lo stesso giorno del pagamento con <strong>consegna entro le 24 ore</strong>';
  71. }
  72.  
  73. function new_tab_3() {
  74. echo'<br>
  75. NON si effettuano CAMBI e RESI nel periodo dei SALDI.
  76. <br>
  77. <br>
  78. Per il CAMBIO (non oltre i 10 giorni) la spedizione di andata è a carico dell acquirente, appena arrivato il pacco spediamo noi a nostro carico il cambio, pagando la differenza qualora dovesse esserci.
  79. <br>
  80. <br>
  81. Per il <strong>SECONDO CAMBIO</strong> le spese sono a carico dell acquirente andata e ritorno.
  82. <br>
  83. <br>
  84. Per il <strong>RIMBORSO</strong> esso equivale ad un buono che viene fatto da noi per l intero importo del capo reso <strong>ESCLUSE</strong> le spese di spedizione.';
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement