Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)
  • Thread Starter rplinux

    (@rplinux)

    Thanks.

    Thread Starter rplinux

    (@rplinux)

    @bungeshea

    I 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
    Thread Starter rplinux

    (@rplinux)

    @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’ );

    Thread Starter rplinux

    (@rplinux)

    @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.

    Thread Starter rplinux

    (@rplinux)

    @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
    Thread Starter rplinux

    (@rplinux)

    @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.1
    Thread Starter rplinux

    (@rplinux)

    I 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.1
    Thread Starter rplinux

    (@rplinux)

    Tell 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.1
    Thread Starter rplinux

    (@rplinux)

    But this doesn’t solve my problem. specified above.

    Thread Starter rplinux

    (@rplinux)

    @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.

    Thread Starter rplinux

    (@rplinux)

    Ok @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.

    Thread Starter rplinux

    (@rplinux)

    Thank 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.

    Thread Starter rplinux

    (@rplinux)

    Yes, I want costume solution. A have already separated cart products by root category but need help to checkout those separation individually.

    Thread Starter rplinux

    (@rplinux)

    Ok I have done grouping and showed them on cart separately. Now how to check out individual group?

Viewing 15 replies - 1 through 15 (of 22 total)