Month: January 2018

  • Simpler way of adding intl.so for CakePHP3 on OSX with Mamp

    Simpler way of adding intl.so for CakePHP3 on OSX with Mamp

    In a Nutshell we just need to do get the full binary package of PHP and install it on OSX, this version comes with intl.so, and we will copy it out of its install directory and drop it into our PHP version. Get & Install the Binary Package This website provides the packages so we […]

  • Digital Brand Guideline Examples

    A place to post examples of digital brand guidelines: Flor Brand Guide Google Material Design Guidelines Youtube Brand Resources AUDI Digital Brand guidelines

  • WordPress: Additional Admin Columns with ACF

    In functions.php, add the following and change [post_type] for the post type of the table you want to alter. If you have used ACF,  you can find the post type in the ur e.g. /wp-admin/edit.php?post_type=jobs // Add the custom columns to the [post_type] post type: add_filter( ‘manage_[post_type]_posts_columns’, ‘set_custom_edit_[post_type]_columns’ ); function set_custom_edit_[post_type]_columns($columns) { unset( $columns[‘author’] ); $columns[‘yourFieldKey’] […]