questionabout
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] refunds not working properlyYou are right! I should’ve checked the merchant account before posting, refund for shipping was in fact manual when I switched status to refunded.
Thank you for quick support!Alin, please enable an option (a check mark or something) for this feature, visitors info and links for referrals was the main reason why I had this plugin, please add this feature. You can disable it by default but have an option to turn it on.
Thank you!Forum: Plugins
In reply to: [WooCommerce] PHP Max Input Vars: 2000Here is what my hosting says:
Upon further checks I noticed that the function that displays the variable is this one:<td><?php _e( 'PHP Max Input Vars', 'woocommerce' ); ?>:</td> <td><?php echo ini_get('max_input_vars'); ?></td>However I unsure where woocommerce gets this value from. I do not see it defined neither in the database nor in a file on the current server. What I would advise you is to contact woocommerce support team and ask them to check the case for you.
Forum: Plugins
In reply to: [WooCommerce] PHP Max Input Vars: 2000My guess is if `<?php
phpinfo();` is showing a correct value and wordpress is not showing a correct value then it is one of the config files for wordpress that does that?
There is .htaccess in all folders, checked them, but nothing that looks like input_varsForum: Plugins
In reply to: [WooCommerce] PHP Max Input Vars: 2000Well, I couldn’t find anything that is overwriting the max input vars, I added:
</IfModule> <IfModule mod_php5.c> php_value max_input_vars 6000 </IfModule>to htaccess file, but that doesn’t help woocommerce.
I contacted host, they said server is not based on suhosin and php_value max_input_vars are indeed 6000 if we go to the *.php file with the code to test it.
They also restarted Apache.I also noticed that I can’t increase memory through php.ini, but I was able to increase memory through wp-config file, is there a code to do the same with max input vars in wp-config file?
Forum: Plugins
In reply to: [WooCommerce] PHP Max Input Vars: 2000To add, it is both 6000 for Local and Master Value (there are 2 columns)
PHP Version 5.3.29
Forum: Plugins
In reply to: [WooCommerce] PHP Max Input Vars: 2000in System Status it says: 2000
in phpinfo file that I opened in browser it says: 6000
Forum: Plugins
In reply to: [WooCommerce Product FAQs] moving out from TabsHi! Anyone here can help with this?
I am not into programming and I am trying to move the FAQ tab below product description (away from tabs)
So far I am trying to do this:function woocommerce_template_product_faq() { faq_tab_content(); } add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_product_faq', 13 );It doesn’t seem to work. Anyone here can help with the php coding?
Thanks!Forum: Plugins
In reply to: [WooCommerce] Got Payment, but no order?Please disregard.
Domain propagation hasn’t finished, so some customer still had access to older hosting (dns not yet updated) and order showed up there.Topic closed.
Forum: Plugins
In reply to: [WooCommerce] Number of Processing orders missing from left panelAwesome! Other than that no issues!
Forum: Plugins
In reply to: [WooCommerce] Shipping Address not showing on receipt or mailSame issue. Waiting for update! Thanks
Forum: Plugins
In reply to: [WooCommerce Product FAQs] moving out from TabsHi there, I also removed the description away from tabs using this code:
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); function woo_remove_product_tabs( $tabs ) { unset( $tabs['description'] ); unset( $tabs['reviews'] ); // Remove the reviews tab unset( $tabs['additional_information'] ); // Remove the additional information tab return $tabs; } function woocommerce_template_product_description() { woocommerce_get_template( 'single-product/tabs/description.php' ); }What would be the best way to add FAQs below out of tabs?
I think it needs to look like this:function woocommerce_template_product_description() { woocommerce_get_template( 'single-product/tabs/description.php' ); woocommerce_get_template( '*****/product_faqs.php*****' ); }Please help.
Thanks!I fixed it with this line:
add_action(‘woocommerce_after_single_product_summary’, create_function( ‘$args’, ‘call_user_func(\’comments_template\’);’), 14);and removed the reviews tab
I noticed they wrote you:
When you’re all set, use the rich snippets submission form <http://www.google.com/support/webmasters/bin/request.py?contact_type=rich_snippets_feedback> to resubmit your site.
That link doesn’t work, how did you contact google in the first place?
Thanks!
Forum: Plugins
In reply to: [WooCommerce] All tabs on one pageDid you get it fixed? How do you merge all tabs in one page?