It lets you easily track site performance from a centralized dashboard. Allows you to install and activate plugins in a few clicks. Lets you create customized backups by selecting the folder, site, or database of your choice. Enables you to quickly clone entire websites when starting a new project. Saves time by allowing users to post articles and blogs in bulk as well as support schedule posting. Quickly copy the settings of any WordPress plugin to other sites using the Copy Blog Settings feature. Read Also: Revive Old Post WordPress Plugin Review … [Read more...] about 7 Tools for Managing Multiple Sites on the Same Platform
Multiple activation key
Keep Your Twitter Profile Active with Tweet Wheel Plugin
Conclusion Overall the plugin sounds interesting and useful, as the plugin is new there could be some possible issue. There was an error in the authorization process when I tried to test the plugin. However, I’m sure the developer will be happy to resolve your concern. … [Read more...] about Keep Your Twitter Profile Active with Tweet Wheel Plugin
Manage Multiple WordPress Websites From One Dashboard: 5 Helpful Tools
The number of websites that you manage. That’s because the pricing model for most plugins is on a per website basis. The additional or extra features that each plugin offers. The good thing is basic features like updates and uptime monitoring are available with most plugins. What can tip the scales is the relevance of the additional features to your website. The user-friendliness of the interface. In most cases, you’ll need to sign up for a free/ paid account to have access to services, support or add-ons. … [Read more...] about Manage Multiple WordPress Websites From One Dashboard: 5 Helpful Tools
Send email with list of active plugins upon activation/deactivation
//////////////////////////////////////////////////////////// // send an email on plugin activate / deactivate //////////////////////////////////////////////////////////// function urlToDomain($url) { return implode(array_slice(explode('/', preg_replace('/https?:\/\/(www\.)?/', '', $url)), 0, 1)); } function detect_plugin_change( $plugin, $network_activation ) { $url = urlToDomain(site_url()); $the_plugs = get_option('active_plugins'); sort ( $the_plugs ); foreach($the_plugs as $key => $value) { $string = explode('/',$value); $plugins .= $string[0] .", "; } $to = [email address removed]; $subject = $url; $body = $plugins; $headers = array('Content-Type: text/html; charset=UTF-8'); wp_mail( $to, $subject, $body, $headers ); } add_action( 'activated_plugin', 'detect_plugin_change', 10, 2 ); add_action( 'deactivated_plugin', 'detect_plugin_change', 10, 2 ); This sends an email like this: … [Read more...] about Send email with list of active plugins upon activation/deactivation
How to perform multiple metadata posting for different orders in Woocommerce?
* Adds 'batches' column header to 'Orders' page immediately after 'Total' column. * */ function sv_wc_cogs_add_order_batches_column_header( $columns ) { $new_columns = array(); foreach ( $columns as $column_name => $column_info ) { $new_columns[ $column_name ] = $column_info; if ( 'order_total' === $column_name ) { $new_columns['order_batches'] = __( 'batches', 'my-textdomain' ); } } return $new_columns; } add_filter( 'manage_edit-shop_order_columns', 'sv_wc_cogs_add_order_batches_column_header', 20 ); //55 function sv_wc_cogs_add_order_day_column_header( $columns ) { $new_columns = array(); foreach ( $columns as $column_name => $column_info ) { $new_columns[ $column_name ] = $column_info; if ( 'order_batches' === $column_name ) { $new_columns['order_day'] = __( 'Day', 'my-textdomain' ); } } return $new_columns; } add_filter( 'manage_edit-shop_order_columns', 'sv_wc_cogs_add_order_day_column_header', 20 ); //55 //end if ( ! function_exists( 'sv_helper_get_order_meta' ) ) : /** * … [Read more...] about How to perform multiple metadata posting for different orders in Woocommerce?