Sribeiro
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] Billing Details as Shipping DetailsOk Just submitted a ticket. Where can I add the credentials? Just as a comment?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Billing Details as Shipping Details@angelleye that’s what I figured… but even with the “Billing Address” disabled, it still fills the billing address with the shipping address from Paypal. It was working fine for over a year, and now with all these recent updates to woocommerce and plugins, it no longer works as previously – at least for me. I have not installed any new plugins or made any core edits to the site that would affect/ interfere with the Paypal response. Would giving you guys admin credentials help in looking into this issue?
Thanks.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Billing Details as Shipping Details@angelleye, sorry but it still remains the same. Just so I’m clear, the latest version from GitHub is – Version 1.4.4 correct?
Also, should the “Billing Address” in the settings be checked or unchecked?
Thank you!
Forum: Plugins
In reply to: [PayPal for WooCommerce] Billing Details as Shipping Details@angelleye I do not have any caching plugins in this particular website. The only caching would be occurring in the browser and I cleared all sessions, and cookies a bunch of times and still I get the shipping address being posted as the billing address in the confirmation page and the shipping address remains blank. Thank you for looking into this.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Billing Details as Shipping DetailsThank You @angelleye
I have just updated the plugin and I am still getting the same results – or close to similar. Now the billing portion of the confirmation page is always the shipping address from Paypal and the shipping form in the confirmation page is always blank. I have tried it with the “Billing Address” in the settings checked and unchecked. Can it be something in the settings that I am missing?
Serge
Forum: Plugins
In reply to: [PayPal for WooCommerce] Billing Details as Shipping DetailsThanks for the quick reply.
Let explain in more detail… If I am shipping an order to my parents (for example) I enter my info in PayPal’s billing portion of the form and then enter my parent’s info in the shipping portion of the form. It all passes in PayPal, but when comes back to my site, the billing details has my name but my parent’s address. And sometimes it fills the ship form with the shipping info from PayPal and sometimes it does not – even when I use the exact same information in the testing.I have “Billing Address” in the settings unchecked.
I also cleared the WC Transients, Expired transients, Customer sessions.I hope this clarifies it a little better this issue.
Serge
- This reply was modified 7 years, 10 months ago by Sribeiro.
Forum: Plugins
In reply to: [WooCommerce] CSS@f5atualizese Prazer em ajudar.
Forum: Plugins
In reply to: [WooCommerce] CSSNa raiz do teu tema tem a fixa style.css, estas a por o teu css nessa fixa ou noutra fixa?
Normalmente o que eu fasso, crio uma pasta chamamda CSS ou Styles, depois crio diferente fixas para cada se??o do site. Por exemplo, home.css, about.css, nav.css etc etc… Depois dai eu chamo todas a diferente fixas na principal style.css com o import -> @import url(‘css/home.css’); .
- This reply was modified 7 years, 12 months ago by Sribeiro.
Forum: Plugins
In reply to: [WooCommerce] Cart page does not fully loadI don’t think so…. do you mean WordPress specific or in general?
Forum: Plugins
In reply to: [WooCommerce] Shipping Zone Database ErrorThanks anphira, I have wp_woocommerce_shipping_zone_shipping_methods table in the database, and I am currently upgrading the MySQL version as we speak.
Why would I still get that error message in the debug logs if the table exists? It is empty, but it exists.
Sergio
Forum: Fixing WordPress
In reply to: Index page showing one more post than the following pagesYup, that was it. Thank you so much.
Forum: Plugins
In reply to: [WooCommerce] Displaying shipping cost in the "Orders" listObrigado.
Forum: Plugins
In reply to: [WooCommerce] How to add product categories to pageYou can go to the WooCommerce / Settings / Products / Display and under Shop Page Display you can choose what to display on the Shop page.
Hope this helps.
Forum: Plugins
In reply to: [WooCommerce] Displaying shipping cost in the "Orders" listDoes this look correct Claudio?
function add_shipping_column($columns){ $new_columns = (is_array($columns)) ? $columns : array(); $new_columns['shipping'] = 'Shipping'; return $new_columns; } add_filter( 'manage_edit-shop_order_columns', 'add_shipping_column' ); function print_shipping_cost($column){ global $post, $the_order; if ( empty( $the_order ) || $the_order->id != $post->ID ) { $the_order = wc_get_order( $post->ID ); } $order = wc_get_order( $post ); if ( $column == 'shipping' ) { echo $order->get_total_shipping(); } } add_action( 'manage_shop_order_posts_custom_column', 'print_shipping_cost', 2 );
Forum: Plugins
In reply to: [Ni WooCommerce Sales Report] Including shipping costsCan you point me to the documentation for this in woocommerce? I can try to do it as well, and send you the files if I get it working.