rplinux
Forum Replies Created
-
Thanks.
Forum: Plugins
In reply to: [Code Snippets] Import not workingI am getting this type error when activation some plugin on saving date at backend.
Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 3 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 5 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 3 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 5 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 3 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 5 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 3 Warning: Attempt to modify property of non-object in /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code on line 5 Warning: Cannot modify header information - headers already sent by (output started at /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code:3) in /home/content/13/11505113/html/7/bitmainwp/wp-admin/includes/misc.php on line 1114 Warning: Cannot modify header information - headers already sent by (output started at /home/content/13/11505113/html/7/bitmainwp/wp-content/plugins/code-snippets/php/snippet-ops.php(352) : eval()'d code:3) in /home/content/13/11505113/html/7/bitmainwp/wp-includes/pluggable.php on line 1216
Forum: Plugins
In reply to: [WooCommerce] Bug in 3.3.1@mikejolley Thanks.
Resolved by these.
//declare WC support
function theme_rp_wc_support() {
add_theme_support( ‘woocommerce’ );
}
add_action( ‘after_setup_theme’, ‘theme_rp_wc_support’ );Forum: Plugins
In reply to: [Code Snippets] Import not working@bungeshea I am using windows 7 with chrome latest version.
I have set default editor to sublime which open this json file.
I can see you have set file type accept attribute to
accept=’application/json,text/xml’
I think application/json not working. Please add this
accept=”application/json,.json,text/xml”
It is working now with this accept attributed.Forum: Plugins
In reply to: [Code Snippets] Import not working@bungeshea Thanks.
It is importing json file now. But file type filter not showing json when we click on choose file to import. We need to select all file type.
Could you add feature which prevent deletion of snippets from database when we delete this plugin. As if some one don’t know and accidentally delete this plugin then we will lose all the snippets.
Right now documentation says when we delete this plugin it will delete all the data completely.
Please provide hook as well as admin option.
Forum: Plugins
In reply to: [WooCommerce] Bug in 3.3.1@mikejolley I think think you didn’t understand the problem here.
I said that I used storefront theme but still getting above bug it means it is the bug in new woocommerce release it is working in 3.2.6 fine but not in 3.3.1@mikejolley you said
Any template changes through your theme will be ignored until you define WC support.So that i used storefront theme but still saw that content-single-product.php is called by single.php and not by single-product.php
Now did you understand that. or still have confusion to understand the bug.
Forum: Plugins
In reply to: [WooCommerce] Bug in 3.3.1I used storefront theme which is fully compatible with woocommerce still same problem exists.
Is storefront don’t have woocommerce support?Forum: Plugins
In reply to: [WooCommerce] Bug in 3.3.1Tell me if I delete single-product.php from plugin then will content-single-product.php called or not.
I think not.
But when I deleted single-product.php file still content-single-product.php called and I can see single product page.This is working well in 3.2.6
- This reply was modified 7 years ago by rplinux.
Forum: Plugins
In reply to: [WooCommerce] Bug in 3.3.1But this doesn’t solve my problem. specified above.
Forum: Plugins
In reply to: [WooCommerce] How to reorder billing and shipping fields in woocommerce >3.2@yukikatayama That document doesn’t show how to reorder according above order. Also when i change country post code field moving from its place.
Hi,
I am facing same problem with gravity form stripe add-on. Then I used https://www.ads-software.com/plugins/gravity-forms-stripe/ plugin which resolve the issue.
Forum: Plugins
In reply to: [WooCommerce] Multiple cart on cart page separated by root product categoryOk @vankaa, What I am doing is, When User click on proceed to checkout button I call a ajax and then first save the whole cart as user meta then I remove other categories product from cart, but before remove I again save them as user meta so that now in cart only products of the category which I want to checkout remained. Now after that redirect to checkout page. so, on checkout page cart contain only checkout category products which appear on order review and subtotal calculated accordingly.
Now I need hook which run when in click on place order so that I empty cart and reload it with saved remaining categories products.
Also I need hook which run when I go to cart page from any where so that on cart page I reload saved whole cart. For ex. I go to checkout page then cart only contain checkout category products now if I go to cart again without order then I should see all the categories products which were before I clicked proceed to checkout. I saved whole cart before I go to checkout page I just need to reload that cart. The problem is which hook runs only on cart page so that when I go to cart page from any where I just reload saved cart which contains whole cart.Forum: Plugins
In reply to: [WooCommerce] Multiple cart on cart page separated by root product categoryThank you @vankaa
I am facing difficulty in checkout of those individual groups.
Which hook is applied when we click proceed to checkout at cart page.Yes, I want costume solution. A have already separated cart products by root category but need help to checkout those separation individually.
Forum: Plugins
In reply to: [WooCommerce] Multiple cart on cart page separated by root product categoryOk I have done grouping and showed them on cart separately. Now how to check out individual group?