Stas
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Repeating database error Unknown column ‘nonce_action’@jeff0504
that might be, I don’t use this plugin since there always were some troubles with it.my solution with updating database worked for me, I checked database before and ‘nonce…’ columns were missing, after DB update those columns appeared and error stopped showing up.
- This reply was modified 3 years, 5 months ago by Stas.
Forum: Plugins
In reply to: [WooCommerce] Repeating database error Unknown column ‘nonce_action’@jeff0504
WooCommerce > Status > Tools > Update databaseremember to make backup of database first
Forum: Plugins
In reply to: [Download Manager] in-theme template override is not workingyes @budimirdq
solution was buying pro version ?? there overrides works perfect
If you wanna stick to free version you just have to edit files directly in plugin’s ‘/tpls’ directory. It also accepts new template files. Just be careful not to update that plugin so you not loose your changes (or have copy of your changed/added files ready to copy back after every plugin update)
Forum: Plugins
In reply to: [WooCommerce Admin] too many redirectsI investigated it a bit more and problem appears only when some other WooCommerce plugins are also active (for example WooCommerce Booking by Automattic)
it appears with some of my custom plugins when when in ‘admin_menu’ hook I’m calling add_menu_page function more than once.
for now only solution is either deactivating WooCommerce Admin or changing user language to en_US
Forum: Plugins
In reply to: [WooCommerce Admin] too many redirectssame problem
php 7.2
when logged in and trying to get mydomain.com/wp-admin/ I’m getting ‘too many redirects’ (and I can see in Apache log a lot of 302 redirects to wp-admin/)
there is no problem if I’m trying to visit mydomain.com/wp-admin/index.php (or any other .php)
problem vanishes if admin user switches to en_US languageForum: Plugins
In reply to: [WooCommerce] Cant Translate “Shipping” String on Cart and Checkout PageSame problem, to fix it I had to modify
/wp-content/plugins/woocommerce/templates/cart/cart-shipping.phpin line 25 I changed
<th><?php echo wp_kses_post( $package_name ); ?></th>
to
<th><?php echo __(wp_kses_post( $package_name ), 'woocommerce'); ?></th>