Get Started
Campaign
Funding
Dashboard
Migration
Troubleshoot
What is Fundrizer Core ?
Fundrizer Core is a free and flexible donation plugin built for WordPress.
It uses WordPress’s modern block-based approach, making it easy to turn your site into a powerful donation platform.
With full control over the design and layout—no coding needed —you can create a donation experience that fits your vision.
Fundrizer also integrates with WooCommerce for its payment system,
so you can easily support multiple payment methods, use any currency you need, and set up notifications via email, WhatsApp, Telegram, and more.
Fundrizer also comes with a Fundraising Dashboard that shows the performance of your campaigns. It includes a Funders Database, so you can see who’s supporting your campaigns and how much they’ve contributed.
With Fundrizer, you can accept donations for organizations or individuals—no coding needed.
Just use the WordPress Block Editor to build your fundraising platform in modern way.
Campaign – Manager, Visual Block
Funding – Manager, Payment, Notification
Dashboard – Performance, Database, Settings, Pattern
What is Fundrizer Pro ?
Fundrizer Pro extends the power of Fundrizer Core with advanced features designed for serious fundraisers who need more control, automation, and customization.
With Pro, you’ll unlock:
Funding Forms – Build branded, standalone pages for each campaign with goal tracking, media support, and storytelling blocks
Recurring Donation – Add recurring donations, custom form fields, and conditional logic to personalize the donor experience.
Advanced Fundraising Dashboard –
Advanced Campaign Manager
More Control on Campaign
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Install Fundrizer Core ?
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
Settings
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
How to Migrate Data from LWDonation to Fundrizer
Step 1: Export LWDonation Data
Export Program Data and Donation Data to computer ( program.xml & lwdonation.csv )
- Go to “Tool > Export”, choose “Program”, and click the Export button. The
program.xml
file will automatically be downloaded to your computer. - Then, go to “Reports” and choose the correct cloud. The
lwdonation.csv
file will automatically be downloaded to your computer.


Step 2: Convert that data into the Fundrizer Data
Open link, make account, and make a copy of this convert


Perbaiki data lwdonation_fixed.
- Ubah Formatt Celll _user_field_phone so to Special 0, so the phone number not be simplfy
- Fix Missalign column, if user not filled email that should be empty and have make the _custom_field_anonim have fit columna, and all column so on
Step 3: Convert Data into WooCommerce Orders
Placeholder for aligning LWDonation data fields with Fundrizer’s structure.
Step 4: Import Data into WooCommerce
Placeholder for the data import process into Fundrizer.
to load this meta.jso you can use WordPress Console plugin
// Load and parse the JSON data
$json_data = '{
"0480": {
"anonim": true,
"message": "Semoga Allah lipat gandakan rezekinya"
}
}';
$data = json_decode($json_data, true);
// Process each entry in the JSON data
foreach ($data as $customer_note => $note_data) {
// Create a direct database query to find orders with this customer note
global $wpdb;
// Get the correct table name based on whether HPOS is enabled
$order_table = $wpdb->prefix . 'wc_orders';
// Query for the order with this customer note
$order_id = $wpdb->get_var(
$wpdb->prepare(
"SELECT id FROM $order_table WHERE customer_note = %s LIMIT 1",
$customer_note
)
);
if ($order_id) {
$order = wc_get_order($order_id);
if ($order) {
// Convert anonim boolean to 0/1
// Convert anonim boolean to 0/1
$anonim_value = $note_data['anonim'] === true ? 1 : 0;
// Save anonim status
$order->update_meta_data('_wc_billing/fundrizer/anonim', $anonim_value);
// Save message - no need to escape as update_meta_data handles this
$order->update_meta_data('frzr_message', $note_data['message']);
// Save the changes
$order->save();
// Log success
error_log("Updated order #$order_id with customer note '$customer_note': anonim=$anonim_value, message=" . esc_html($note_data['message']));
echo "Updated order #$order_id with customer note '$customer_note' \n";
}
} else {
// Log no order found for this customer note
error_log("No order found with customer note: $customer_note");
echo "No order found with customer note: $customer_note /n";
}
}
echo "Processing complete!";
Step 5: Verify Data Integrity Post-Migration
Placeholder for steps to ensure data was migrated accurately.
From .zip File
Settings
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate
Settings
From WordPress Repository
From .zip File
How to Install Fundrizer Pro ?
Fundrizer Pro is have different from Core, so you can remove the Fundrizer Core plugin
From .zip File
How to Activate the License for Fundrizer Pro
- Go to Fundrizer -> License
- Fill your license -> Activate