cmsnext
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to download latest version 6.6.1 on Windows systemI tried to download the files now & it works fine. Not sure what the issue was, but looks resolved now.
Forum: Fixing WordPress
In reply to: Unable to download latest version 6.6.1 on Windows systemOk thank you. But will wait for Windows to confirm before downloading the latest version. Because the solution given in the other thread does not seem right (changing http to https) because even the old files have http. But it seems the last section of the 6.6.1 css files has additional content.
- This reply was modified 4 months ago by cmsnext.
Hi Any update regarding my query? Thanks
Greetings, As mentioned I am not asking for any customization. Earlier when we had added text we had added <strong>our bold text</strong>
and that was working, but after recent updates its stopped working and its stripping the tags. So it seems you are removing any HTML tags we add to footer. Is it not possible to keep it as it is?
Ok I think issues resolved after we have upgraded to the latest version & after we shifted back to PHP 7.4 instead of PHP 8
Thanks I think the new version resolves this issue
Somehow its now working from today! Not sure what changed. But since today morning invoices are automatically generated & attaching fine.
Thank you.
Perfect. Works as expected. Thanks a lot for your support
Custom coded by a developer. Not any plugin but has been custom coded to fetch and add this meta to product order
Hi,
It seems to be creating two rows.First Row shows
a:3:{i:0;s:4:"200";i:1;s:3:"300";i:2;s:3:"400";}
and second row shows
200 x 300 x 400
So basically what we need is get the row with the second row type content for each order_item_id and then split it to individual columns
Thanks for your prompt response & support. That works! Thanks
Ya here is what I did,
First I created 7 columns likecol_1 col_2 col_3 col_4 col_5 col_6 col_7
Then I added your code
add_filter( 'woe_fetch_order_product_value_col_1', function($row, $order, $item, $product, $item_meta ){ $data =$item->get_meta("_custom_meta_3"); $getDataArray = explode(':', $data); print_r($getDataArray); (then I split each data I want) //parse $data and fill keys in $row print_r($data); print_r($row);die(); //for debug return $row; },10,5);
But how do I then assign each data item which I have split using explode to individual columns?
Like data of Column 1 which is Text 1 Value should go to col_1 column and so on
Hi
I am able to add a new column and it works.Data does show but its the entire data in a column
Custom Column Row 1 Text 1: Text 1 Value Text 2: Text 2 Value Text 3: Text 3 Value Text 4: Text 4 Value Text 5: Text 5 Value Text 6: Text 6 Value Extra Info: Extra Info Value Row 2 Text 1: Text 1 Value Text 2: Text 2 Value Text 3: Text 3 Value Text 4: Text 4 Value Text 5: Text 5 Value Text 6: Text 6 Value Extra Info: Extra Info Value
Its not splitting the data into multiple columns like
Column 1 Text 1 Column 2 Text 2 Column 3 Text 3 Column 4 Text 4 Column 5 Text 5 Column 6 Text 6 Column 7 Extra Info Row Text 1 Value Text 2 Value Text 3 Value Text 4 Value Text 5 Value Text 6 Value Extra Info Value Row Text 1 Value <blank> Text 3 Value Text 4 Value <blank> Text 6 Value Extra Info Value <blank> Text 2 Value Text 3 Value Text 4 Value Text 5 Value <blank> <blank>
Thanks
- This reply was modified 2 years, 8 months ago by cmsnext.
It is a cart item meta.
If I go to Product order items under that Order item fields: in the drop down I can see
_custom_meta_3