Forum Replies Created

Viewing 15 replies - 76 through 90 (of 134 total)
  • Thread Starter jackofallspades

    (@jackofallspades)

    Can I give you access to my site so you can see? That way there will be less back and forth here..

    https://snag.gy/JN80ov.jpg
    https://snag.gy/5HVPFz.jpg
    https://snag.gy/He0127.jpg – all products are set up like this

    This happens on all orders no matter what status they are.

    I just made a fake order:
    https://snag.gy/qi9auE.jpg

    Added chairs to the order:
    https://snag.gy/PqA6LF.jpg

    Tried to add tax:
    https://snag.gy/Dr2dKV.jpg

    Gives me an error message saying:
    You cannot add the same tax rate twice!

    I clicked on edit for Horse Race Wheel, and tried to add on “chips to bet with:
    https://snag.gy/4FoQwJ.jpg

    All Tax has disappeared:
    https://snag.gy/oWTDVz.jpg

    When I try to add tax, nothing happens.

    Thread Starter jackofallspades

    (@jackofallspades)

    Hi there, its almost been a week so thought I would check in to see if you could help with this at all?

    Thread Starter jackofallspades

    (@jackofallspades)

    Hi there, its almost been a week so thought I would check in to see if you could help with this at all?

    Thread Starter jackofallspades

    (@jackofallspades)

    Where do I put this shortcode [wcj_order_meta] ?

    I have put it randomly in my template but it does not show on the invoice.

    Thread Starter jackofallspades

    (@jackofallspades)

    I checked and that setting was already checked. I put in that shortcode in the invoice template but was not sure what I was supposed to look for? Could you clarify?

    Also, I noticed the NAME of the Coupon is now showing, but not the amount. What is the shortcode for the amount of the discount?

    Thread Starter jackofallspades

    (@jackofallspades)

    Yes that is right.

    Thread Starter jackofallspades

    (@jackofallspades)

    Update: Actually now it is just sending out gibberish emails instead of the regular invoice attachments, so I have since deleted the packing slip template till we can find out is happening. Since doing that, my invoice attachments are sending out fine again, so I know that was the problem.

    Thanks in advance for helping me solve my Packing Slip issues!!

    Thread Starter jackofallspades

    (@jackofallspades)

    Hi there, still waiting to hear back on this. Thank you!

    Thread Starter jackofallspades

    (@jackofallspades)

    When I put them on hold, follow the procedure you put out above, all it does is delete the tax on the existing items that used to have tax, and it will not add the tax on the new item i just added. I can give you access to my site so that you can troubleshoot what I just described.

    I also have a snippet that allows me to edit orders if if they are completed:

    add_filter( ‘wc_order_is_editable’, ‘wc_make_processing_orders_editable’, 10, 2 );
    function wc_make_processing_orders_editable( $is_editable, $order ) {
    if ( $order->get_status() == ‘processing’ ) {
    $is_editable = true;
    }
    if ( $order->get_status() == ‘processing’ || $order->get_status() == ‘completed’ ) {
    $is_editable = true;
    }
    return $is_editable;
    }

    And after deactivating this snippet, the problem persisted. I thought I would let you know this in case you were to ask me to do it.

    I tried a different theme but it still persisted. I deleted all plugins except woocommerce and it still persisted.

    Thread Starter jackofallspades

    (@jackofallspades)

    Hi there, I have your most recent version, and now that I check it, yes in old invoices it is still showing.

    Thread Starter jackofallspades

    (@jackofallspades)

    Beautiful!!! The exclude category thing worked, thank goodness!! That is going to clean up my invoices so much, so thank you!!!

    The first one.. I am not following. I really wish I understood what you meant. I am somewhat familiar with php as I built my whole site with no hired help, but I just cannot seem to grasp what I am supposed to write in this snippet, in order to indent. If you are able to, could you email me directly what the line should look like, because you said that this support page modifies it? Or you can screenshot it and send it to me somehow? I really want to understand!!

    Thread Starter jackofallspades

    (@jackofallspades)

    Hi there,

    Appreciate your patience with me, but I apologize that I do not follow. I know you said not to copy it directly, so then how do I know what to replace this line with?

    $cell_data = ‘<span style=”font-size:small;”>’ . $cell_data . ‘</span>’;

    I did try and use what you put above, but of course that did not work:

    $cell_data = ‘ ’ . $cell_data;

    ————————–

    And where do I put the exclude_by_categories? Let’s assume the category is called “shirts” that I want to exclude. Where do I put that within the template? Here is what my template table looks like:

    [wcj_order_items_table table_class=”pdf_invoice_items_table”
    columns=”item_number|item_name|item_quantity|line_total_tax_excl”
    columns_titles=”|Product|Qty|Total”
    columns_styles=”width:5%;|width:75%;|width:5%;|width:15%;text-align:right;”
    discount_as_item=”Discount”]

    Thanks again for your help ??

    Carrie

    Thread Starter jackofallspades

    (@jackofallspades)

    Thank you –
    Are you saying there is not a way to ignore certain IDs or skus, or even to hide all hidden products or all zero priced products?

    And I just found this:
    exclude_by_categories
    (optional) Exclude some items from the table by product category. Can be comma separated list.

    This could work! I could exclude the products in a category – please excuse my ignorance, but how could I work this in to my table?

    I added the following snippet, and it made the font smaller but I was hoping to indent everything in the bundle instead. What do I need to change in the following PHP snippet to make things indent?

    Really appreciate your time!

    Carrie

    if ( ! function_exists( ‘alg_modify_bundle_products_in_pdf_invoice’ ) ) {
    /*
    * alg_modify_bundle_products_in_pdf_invoice.
    */
    function alg_modify_bundle_products_in_pdf_invoice( $cell_data, $args ) {
    $item_total_tax_incl = $args[‘order’]->get_item_total( $args[‘item’], true, true );
    if ( 0 == $item_total_tax_incl ) {
    $cell_data = ‘<span style=”font-size:small;”>’ . $cell_data . ‘</span>’;
    switch ( $args[‘column’] ) {
    case ‘item_number’:
    return ”;
    case ‘item_name’:
    return ‘-‘ . $cell_data;
    }
    }
    return $cell_data;
    }
    add_filter( ‘wcj_pdf_invoicing_cell_data’, ‘alg_modify_bundle_products_in_pdf_invoice’, PHP_INT_MAX, 2 );
    }

    Thread Starter jackofallspades

    (@jackofallspades)

    Thanks for your reply – ok maybe I used the wrong wording with my last reply. When I tried to download the reviews, only the 2 sample ones came out?? So I wasn’t able to import anything into the new site. Sorry for all the back and forth, just don’t seem to be following the right protocol.

    Thread Starter jackofallspades

    (@jackofallspades)

    I went back into my old one, and although all the reviews are there, when I press download template and try to upload them, only the 2 sample ones come up. But it clearly says there are 81 reviews or something like that. Any idea why?

Viewing 15 replies - 76 through 90 (of 134 total)