fbpx

Database Splitter

If you’re having trouble in uploading SQL dump file because of upload size limitations in phpMyAdmin. You can use SQL Dump File Splitter application to split the file and upload the splitted files with specified file size

Click here to download the application.

Media HTTP Error

Add the following line of code to your themes (functions.php).

function ms_image_editor_default_to_gd( $editors ) {
	$gd_editor = 'WP_Image_Editor_GD';
	$editors = array_diff( $editors, array( $gd_editor ) );
	array_unshift( $editors, $gd_editor );
	return $editors;
}
add_filter( 'wp_image_editors', 'ms_image_editor_default_to_gd' );

Gravity Forms: Hide labels

If you want to add an option to hide field labels on a field by field basis, simply add the following line of code to your themes (functions.php).

add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' );