Forum Replies Created

Viewing 15 replies - 1 through 15 (of 43 total)
  • For me the error came from the address registered by contact-form in the action tag of the form, the theme works with preloading pages, so he used the preloading address according to the conditions of access to the page.

    Here is the filter used to counter this error:

    function change_wpcf7_url($url){
    	if (strpos($url, 'semplice') !== false) {
        	$remove_unit_tag = explode('#',$url);
       		$new_url = '/contact'.'#'.$remove_unit_tag[1];
       		return $new_url;
       	}
        return $url;
    }
    
    add_filter('wpcf7_form_action_url', 'change_wpcf7_url');
    

    “semplice” is the theme name and “contact” is the page endpoint i need

    I hope it will help you

    • This reply was modified 5 years, 4 months ago by barbeapapier.
    Thread Starter barbeapapier

    (@barbeapapier)

    Problem resolved by disable Dynamic Pricing WooCommerce plugin.

    Thread Starter barbeapapier

    (@barbeapapier)

    Hi,
    I’ve another problem, many customer get blank_page on login, I’ve see in debug.log and i found this:

    [08-Apr-2018 13:51:51 UTC] PHP Fatal error:  Uncaught Error: Call to a member function has_weight() on null in /var/www/vhosts/ns334252.ip-5-196-64.eu/httpdocs/wp-content/plugins/woocommerce/includes/class-wc-cart.php:676
    Stack trace:
    #0 /var/www/vhosts/ns334252.ip-5-196-64.eu/httpdocs/wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-cart.php(121): WC_Cart->get_cart_contents_weight()
    #1 /var/www/vhosts/ns334252.ip-5-196-64.eu/httpdocs/wp-content/plugins/colissimo-delivery-integration/includes/WC-colissimo-shipping-zone.php(498): WC_Legacy_Cart->__get('cart_contents_w...')
    #2 /var/www/vhosts/ns334252.ip-5-196-64.eu/httpdocs/wp-content/plugins/colissimo-delivery-integration/includes/WC-colissimo-shipping-zone.php(223): Class_Colissimo_Shipping_Function->calculate_shipping(Array, Object(Class_Colissimo_Shipping))
    #3 /var/www/vhosts/ns334252.ip-5-196-64.eu/httpdocs/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php(207): Class_Colissimo_Shipping->calculate_shipping(Array)
    #4 /var/www/vhosts/ns334252.ip-5-196-64.e in /var/www/vhosts/ns334252.ip-5-196-64.eu/httpdocs/wp-content/plugins/woocommerce/includes/class-wc-cart.php on line 676

    I think it’s possible caused by an empty cart and line 498 in WC-colissimo-shipping-zone.php : $weight = (float)$woocommerce->cart->cart_contents_weight;
    I’ve change to this: $weight = ($woocommerce->cart->is_empty) ? 0 : (float)$woocommerce->cart->cart_contents_weight;.
    I think it’s better to check if cart is not empty before calculate the cart weight.
    Can you help me if you see another problem in the 5 lines of log?
    Thank’s

    Didier

    • This reply was modified 6 years, 7 months ago by barbeapapier.
    Thread Starter barbeapapier

    (@barbeapapier)

    Ok,
    Where I can find filters now?

    I think crashes comes with the Gmap JS, can I send you my filters to see if anything is wrong?

    (My last update on filters come from thé v2 of CDI)

    Thanks

    Didier

    Thread Starter barbeapapier

    (@barbeapapier)

    je vous ai envoyé mes paramètres par mail, via le lien du plugin. [email protected]

    barbeapapier

    (@barbeapapier)

    voilà la commande initiale de initMap, même si elle ne change pas le problème de mon c?té.

    
            var map;
            function initMap() {
              map = new google.maps.Map(document.getElementById('googlemapsopen'));
            }
    Thread Starter barbeapapier

    (@barbeapapier)

    Ok un début de solution a été trouvé avec le Support la Poste.
    Les pays qui présentaient cette erreur ne sont pas éligible au type de produit DOM ou DOS, mais au type COLI . En forcant le Type de Produit dans la Page de la Commande et en retournant dans le Tunnel cela fonctionne.
    à Voir comment faire pour que la méthode de livraison pour ces pays puisse passer directement en COLI.

    Merci par avance du retour.

    Thread Starter barbeapapier

    (@barbeapapier)

    Malheureusement le problème reste le même..
    Après changement du numéro en +3934

    Thread Starter barbeapapier

    (@barbeapapier)

    Voilà le retour du debug.log

    <addressee>
                <address>
                  <companyName>Gaia -1131-</companyName>
                  <lastName>Gaia</lastName>
                  <firstName>Chiesa</firstName>
                  <line1/>
                  <line2>Via Cenisio 18</line2>
                  <countryCode>IT</countryCode>
                  <city>Milano MI</city>
                  <zipCode>20100</zipCode>
                  <phoneNumber>00393498143770</phoneNumber>
                  <mobileNumber>00393498143770</mobileNumber>
                  <email>[email protected]</email>
                </address>
              </addressee>
    [28-Oct-2016 13:19:27 UTC] *** Debug CDI - Line 263 file /homepages/5/d649710850/htdocs/wp-content/plugins/colissimo-delivery-integration/includes/WC-gateway-colissimo-auto.php ***: <?xml version="1.0"?>
    <soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
      <soap:Body>
        <ns2:generateLabelResponse xmlns:ns2="https://sls.ws.coliposte.fr">
          <return>
            <messages>
              <id>30207</id>
              <messageContent>Le code pays du destinataire est incorrect</messageContent>
              <type>ERROR</type>
            </messages>
          </return>
        </ns2:generateLabelResponse>
      </soap:Body>
    </soap:Envelope>
    Thread Starter barbeapapier

    (@barbeapapier)

    où puis je trouver ces deux étiquettes ?

    je confirme l’envoi fonctionne pour un colis vers la belgique si le numéro commence par +324

    Le problème ne viens que sur un téléphone pour envoi à l’étranger.
    Si téléphone en 06 aucuns soucis.
    J’ai sortit la commande du Tunnel et essayé avec une autre pour colis en France et là pas de soucis.

    • This reply was modified 8 years, 1 month ago by barbeapapier.

    Après vérification des paramètres expéditeur, et nouvel essai retour de l’erreur du mobile …μ

    Error stop processing at order #1099 - 30221 : Le numéro de portable du destinataire est incorrect

    Thread Starter barbeapapier

    (@barbeapapier)

    Cela devrait être automatique de part le faire d’avoir une version en A4
    Mais rien à l’impression..

    J’ai le même problème aujourd’hui, il s’agit d’un numéro de téléphone portable Belge et donc commen?ant par 04…
    Aucuns caractères invisibles à signaler..
    Comment faire ?

    Après vérification du code dan WC-gateway-colissimo-auto.php et sans aucunes modifications l’erreur passe à :
    Error stop processing at order #1099 - 30108 : Le code postal de l'expéditeur ne correspond pas au pays

    Comment faire ?

    • This reply was modified 8 years, 1 month ago by barbeapapier.
    • This reply was modified 8 years, 1 month ago by barbeapapier.
Viewing 15 replies - 1 through 15 (of 43 total)