Javier
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Page Framework] Manage two or more custom post within the APF menusHi,
I auto answered, The magic is created by the argument ‘show_in_menu’.
class My_new_custom_post extends My_plugin_AdminPageFramework_PostType { /** * Use this method to set up the post type. * * ALternatevely, you may use the set_up_{instantiated class name} method, which also is called at the end of the constructor. */ public function setUp() { $this->setArguments( array( // argument - for the arguments, see https://codex.www.ads-software.com/Function_Reference/register_post_type#Arguments 'show_in_menu' => 'My_plugin_slug_main', 'submenu_order_manage' => 20, ) ); } }
Happy coding and best regards.
I think it’s not a VAT problem, I have two stores checked, one with VAT included and one without it, I think the issue is more for the decimals ….
Mike Jolley, i would pray the maximum attention to this problem, we all use continuously having to create orders manually or correct them when adding or deleting lines. We are standing!
Best regards and thanks for your great work. (Y)
If it is from 3.3.2 to 3.3.1 I think there are no problems ….
In all the ways I would recommend waiting without editing orders, orders and other jobs in the store seem to be fine in version 3.3.2
I guess they’re checking …
Mike Jolley will tell us something as soon as he has a solution.
It seems to be a problem of decimals, if the price is an integer it stores the values, if it is a decimal it is not saved.
Try to create an order, add a product and change the price of integer to decimals and vice versa, then either it does not save it or it does bad calculations …
Hi Mike,
I will try to review what you are saying, it is happening from this morning that I updated to the latest version, I have returned to V3.3.1 and let create the orders well again.
I will try another clean and updated installation from V3.3.1 to V3.3.2. and I will inform you as quickly as possible.
Thank you very much for your prompt response.
Forum: Plugins
In reply to: [WooCommerce] Product shortcodes not working in 3.3.1.I do not think, I have several facilities with different themes and the same problem.
Forum: Plugins
In reply to: [WooCommerce] Product shortcodes not working in 3.3.1.Hi,
I have exactly the same problem, in the main page I do not work the shortcodes, in any other place without problems.
Instead of teaching the products, teach the categories!
Best regards.
- This reply was modified 7 years ago by Javier.
Hi,
Sorry to take a long time to answer, I was testing with the installed plugins.
I found the problem, you were right, it was another plugin.
Customize my account page by YITH is the cause.
With disabling allowing to change the download in the plugin configuration the problem was solved.
Thank you very much for your attention and I hope that it will serve other users who are facing the same problem.
Best regards
Any comments or news about the exposed?
hi,
The first avatar puts it well and is the chosen in the configuration, from there it puts one of gravatar that gives error.
He does it like logged in without logging …
First avatar:
<img src="https://cd1.distincion.eu/wp-content/uploads/2017/10/Gravatar-DEF-32x32-135x135.jpg" width="60" height="60" alt="" class="avatar avatar-60wp-user-avatar wp-user-avatar-60 alignnone photo avatar-default">
the following avatars:
<img alt="" src="https://secure.gravatar.com/avatar/273a749c4b9ba0ae8e1b087ccb08c268?s=60&d=wp_user_avatar&r=g" srcset="https://secure.gravatar.com/avatar/273a749c4b9ba0ae8e1b087ccb08c268?s=120&d=wp_user_avatar&r=g 2x" class="avatar avatar-60 photo" height="60" width="60">
In the administration area I get errors in the comments section:
HEAD https://www.gravatar.com/avatar/d8954b224bb79cbe5fc0c73d86a65275 ?d=404 404 Not Found + WP_User_Avatar_Functions->wpua_has_gravatar() wp-content/plugins/wp-user-avatar/includes/class-wp-user-avatar-functions.php:123 Plugin: wp-user-avatar 5 0,1517
These errors are monitored with Query Monitor, I recommend it if you do not use it.
If you need any other information ask me
Best regards and thanks for your attention.
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Total calculate errorForum: Plugins
In reply to: [Pay for Payment for WooCommerce] Problem after update to woocommerce 3.2Hi,
Find:
private function __construct() { //add_action( 'woocommerce_cart_calculate_fees' , array($this,'add_pay4payment' ) , 99 ); // make sure this is the last fee eing added //add_action( 'woocommerce_calculate_totals' , array($this,'calculate_pay4payment' ) , 99 ); add_action( 'woocommerce_cart_calculate_fees' , array($this,'add_pay4payment' ) , 99 ); add_action( 'woocommerce_review_order_after_submit' , array($this,'print_autoload_js') ); add_action( 'admin_init' , array( &$this , 'check_wc_version' ) ); add_action( 'plugins_loaded' , array( &$this , 'load_textdomain' ) ); }
Best regards.
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Problem after update to woocommerce 3.2Hello,
Solution for the problem:
Edit file /plugins/woocommerce-pay-for-payment/woocommerce-payforpayment.php
comment line 50:
//add_action( 'woocommerce_calculate_totals' , array($this,'calculate_pay4payment' ) , 99 );
Add $this->calculate_pay4payment( ); in line 84:
function add_pay4payment( $cart ) { $this->calculate_pay4payment( ); if ( ! is_null($this->_fee) ) { $cart->add_fee( $this->_fee->fee_title , $this->_fee->cost , $this->_fee->taxable , $this->_fee->tax_class ); } }
This found for my.
Best regards.
Same problem in several pages that I maintain.
It is a problem of Woocommerce, I have tested it in several configurations.
My clients can not create new products.