Skip to content

Instantly share code, notes, and snippets.

@giovanni-d
giovanni-d / allinonemigration.md
Last active March 28, 2025 17:25
All-in-One WP Migration - Restore From Server (without PRO version) - Restore

All-in-One WP Migration Restore From Server (without pro version)

If you don't want to pay for the PRO version of this plugin, and you want to use the "Restore from Server" functionally that was present in the version 6.77, open your browser’s dev tools and run the code below in the console:

Last confirmed working: March 2025 on version 7.91

Thanks @xxxdepy, and @tanveeratlogicx for confirming this still works in version 7.91!

@giovanni-d
giovanni-d / select.js
Created December 22, 2016 19:37
Select with multiple="true" in react
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
class Select extends Component{
constructor() {
super();
this.state = {
folders: ['option 0', 'option 1', 'option 3', 'option 4'],
values: []