algol.plus
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export preview causes critical errorhello
You added custom PHP code for ” Germanized Pro” plugin, but this plugin is not active on this website.
Please open section “Misc Settings” (at bottom) and remove PHP code.
Could you share screenshot of Main menu>Settings>General too ?
Have you tried to disable all other rules (except rule with Time condition)?
- This reply was modified 1 year, 1 month ago by algol.plus.
Can you update the plugin now and check if you still see these errors ?
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export Clients as columnsplease, submit your settings as new ticket to https://algolplus.freshdesk.com/
use tab “Tools” to get these settings.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export Clients as columns2.Yes, scheduled jobs run in this mode
1. please, replace code with this version , I marked change with “NEW”
//4
function analyze_products_add_columns($phpExcel,$formatter) {
// add products as titles
foreach($this->product_columns as $pos=>$text){
$formatter->objPHPExcel->getActiveSheet()->setCellValueByColumnAndRow( $pos+$this->headers_added, 1, $text );
//add formulas for total
$L = PHPExcel_Cell::stringFromColumnIndex($pos + $this->headers_added);
$row = $formatter->last_row;
$formatter->objPHPExcel->getActiveSheet()->setCellValue( $L. ($row+1), "=SUM({$L}2:{$L}$row)");
}
$formatter->objPHPExcel->getActiveSheet()->setCellValue( "A". ($row+1), "Total");//NEW
//make first bold
$last_column = $formatter->objPHPExcel->getActiveSheet()->getHighestDataColumn();
$formatter->objPHPExcel->getActiveSheet()->getStyle( "A1:" . $last_column . "1" )->getFont()->setBold( true );
}Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Exporting BundlesYou’re welcome
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Exporting BundlesPlease, add this code to “Misc Settings” ( at bottom of the form).
add_filter('woe_skip_order_item', function($skip, $product, $item, $item_meta, $post){
return !empty($item['bundled_by']) ;
},10,5);Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export Clients as columns2. I updated 2nd code (for CSV) at page https://docs.algolplus.com/algol_order_export/export-products-as-columns/
Both issues fixed.You must uncomment line 99!
We don’t have control over Excel when it opens CSV, but you can use “Alt + H + O + A” shortcut.
About width for XLS format. Is option “Auto column width” on (inside section XLS)?
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Duplicate orders showing on exportYou’re welcome
please, follow to https://docs.algolplus.com/algol_order_export/fields/
add key fridge
use codeadd_filter('woe_get_order_value_fridge',function( $value,$order, $fieldname ) {
$lines = array();
foreach($order->get_items() as $item) {
$care_attrs = wc_get_product_terms( $item->get_product_id(), 'pa_care-transport', array( 'fields' => 'names' ) );
if(in_array('Fridge',$care_attrs) )
$lines[] = $item["name"]. " x " .$item["qty"];
}
return join(", ", $lines);
}, 10, 3 );Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Exporting BundlesSo it’s just product attribute ? and it’s not used in product variations ?
ok, now I understand what you meant .
Please visit >WooCommerce>Orders, edit order which has some “fridge” products.
And share screenshot of items section.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Is there a way to import orders?I’m sorry, but we don’t code such plugin, as
There’re many order importers already, like “WP All Import”.