Skip to content

Instantly share code, notes, and snippets.

View mrkdevelopment's full-sized avatar

Matt Knighton mrkdevelopment

View GitHub Profile
<?php
// Add this filter to register formatter callbacks. I can be placed in your child theme.
add_filter('df_acf_formatter_callbacks', 'post_builder_custom_formatters');
// Callback filter registers various formatters.
// Each callback has 2 arguments
// - $fieldValue = This is the value of your post meta used in DF - ACF Field Module
// - $attrs = This contains any additional attributes passed via Additional shortcode attributes
// in the DF - ACF Field Module
@mrkdevelopment
mrkdevelopment / social_icons.php
Created January 22, 2018 02:54
Icon Child Theme - Social Icons View File.
<ul class="et-social-icons">
<?php if ('on' === et_get_option('divi_show_facebook_icon', 'on')) : ?>
<li class="et-social-icon et-social-facebook">
<a href="<?php echo esc_url(et_get_option('divi_facebook_url', '#')); ?>" class="icon">
<span><?php esc_html_e('Facebook', 'Divi'); ?></span>
</a>
</li>
<?php endif; ?>
<?php if ('on' === et_get_option('divi_show_twitter_icon', 'on')) : ?>
@mrkdevelopment
mrkdevelopment / helper.php
Created January 22, 2018 02:55
Icon Child Theme Helper File
<?php
class DF_Icons_Helper
{
/**
* Get unique options keys. Will be used to indentify duplicates.
*/
public function get_options_keys($options)
{
[df_video_overlay_using_anchor_tag text='youtube' video_type="youtube" video_url='https://www.youtube.com/watch?v=_DiaOb6j10
@mrkdevelopment
mrkdevelopment / Vimeo Shortcode
Created February 10, 2018 05:04
Vimeo Shortcode for Divi Framework Video Toolkit
[df_video_overlay_using_anchor_tag text='vimeo' video_type="vimeo" video_url='https://vimeo.com/63502573']
@mrkdevelopment
mrkdevelopment / Facebook Shortcode
Created February 10, 2018 05:05
Facebook Shortcode for Divi Framework Video Toolkit
[df_video_overlay_using_anchor_tag text='facebook' video_type="facebook" video_url='https://www.facebook.com/bhagavadgitaclass/videos/1663201357072109/']
@mrkdevelopment
mrkdevelopment / HTML5 Shortcode
Created February 10, 2018 05:06
HTML 5 Shortcode for Divi Framework Video Toolkit
[df_video_overlay_using_anchor_tag text='html5' video_type="html5" webm_url="http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4" mp4_url="http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4"]
@mrkdevelopment
mrkdevelopment / Video Overlay with Post Id
Created February 10, 2018 05:07
Video Overlay using Post ID for Divi Framework Video Toolkit
[df_video_overlay_using_anchor_tag post_id='' text='anchor text']
@mrkdevelopment
mrkdevelopment / Video Overlay using Post ID
Created February 10, 2018 09:53
Video Overlay Short for Divi Framework Video Toolkit
[df_video_overlay_using_anchor_tag post_id='' text='anchor text']
@mrkdevelopment
mrkdevelopment / links.css
Created March 7, 2018 10:35
Turn links back on in Divi