Skip to content

Instantly share code, notes, and snippets.

View liviucerchez's full-sized avatar

Liviu Cerchez liviucerchez

View GitHub Profile
@liviucerchez
liviucerchez / Styleguide
Created October 12, 2018 06:17
Castilo - Styleguide
<div class="row">
<div class="col-12 col-md-5">
<h1>Heading 1 Alpha</h1>
<h2>Heading 2 Beta</h2>
<h3>Heading 3 Kilo</h3>
<h4>Heading 4 Croco</h4>
<h5>Heading 5 Frizzy</h5>
<h6>Heading 6 Jo</h6>
</div>
<div class="col-12 col-md-7">
@liviucerchez
liviucerchez / Latest Episode
Created October 9, 2018 18:32
Castilo = Latest Episode in any page featured area
<div class="latest-episode">
<p class="big text-uppercase opacity-50">Latest Episode</p>
[podcast_episode id="latest" title="true" title_tag="h1" title_class="entry-title"]
<a href="#" class="button button-filled button-color"><span class="mdi mdi-apple"></span> iTunes</a><a href="#" class="button button-white"><span class="mdi mdi-google-play"></span> Google Play</a><a href="#" class="button button-white"><span class="mdi mdi-rss"></span> RSS Feed</a>
</div>
@liviucerchez
liviucerchez / Subscribe Form
Created October 9, 2018 09:03
Castilo - Subscribe Form
<p>A theme with a simple and organized approach to presenting your content with understated charm and undeniable appeal.</p>
<p class="one-line">
<label for="email" class="sr-only">Subscribtion Email</label>
<input type="email" name="email" id="email" placeholder="Your email address..." required=""><input type="submit" value="Subscribe" class="button-color button-filled">
</p>
@liviucerchez
liviucerchez / Contact Page
Created September 14, 2018 11:29
Castilo - Contact
<div class="col-12">
<div class="row justify-content-md-center">
<div class="col-12 col-md-8 col-lg-7 text-center">
<h3>With customized targetting, we deliver your work and brand to the most suitable audience.</h3>
</div>
<div class="w-100"></div>
<div class="col-12 col-md-10 col-lg-8 text-center">
<p>With our top of the line execution & as an innovative team we take a broad way to deal with handling the important issues of developing brands and income in a digitally aware world. Best of the best no additional words, so please get in touch and we'll get back to you shortly!</p>
</div>
<div class="w-100"></div>
@liviucerchez
liviucerchez / Styleguide Page
Created September 14, 2018 11:27
Castilo - Styleguide
<div class="row">
<div class="col-12 col-md-5">
<h1>Heading 1 Alpha</h1>
<h2>Heading 2 Beta</h2>
<h3>Heading 3 Kilo</h3>
<h4>Heading 4 Croco</h4>
<h5>Heading 5 Frizzy</h5>
<h6>Heading 6 Jo</h6>
</div>
<div class="col-12 col-md-7">
@liviucerchez
liviucerchez / About Page
Last active February 1, 2019 09:03
Castilo - About
<div class="row justify-content-md-center">
<div class="col-12 col-md-8 col-xl-7 text-center">
<h3>With customised targetting, we deliver your work and brand to the most suitable audience.</h3>
</div>
<div class="col-12 col-md-10 col-lg-9 text-center">
<p>With our top of the line execution & as an innovative team we take a broad way to deal with handling the important issues of developing brands and income in a digitally aware world. Best of the best no additional words, so please get in touch and we'll get back to you shortly!</p>
<p class="no-margin-bottom"><a href="#" class="button button-color button-filled"><span class="mdi mdi-send"></span> Get in touch</a> <a href="#" class="button"><span class="mdi mdi-music-note"></span> Browse episodes</a></p>
</div>
</div>
<div class="features alignfull margin-top">
@liviucerchez
liviucerchez / PHP Cron Event
Created May 30, 2018 09:20
Castpod - Import Podcast RSS - Cron Job
// Install the WP Crontrol plugin and add a PHP Cron Event with the following code
// Set up the environment
if ( ! defined('ABSPATH') ) {
require_once( dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/wp-load.php' );
}
require_once( ABSPATH . 'wp-admin/includes/admin.php' );
define( 'WP_LOAD_IMPORTERS', true );
require_once( WP_PLUGIN_DIR . '/castpod-helper/includes/rss-importer/class-podcast-rss-import.php' );
@liviucerchez
liviucerchez / shortcode-list.php
Created February 19, 2018 10:19
List of shortcodes (with custom image resize)
<?php
/* allow shortcodes in widgets */
add_filter('widget_text', 'do_shortcode');
/* remove empty p tags only for our custom shortcodes */
add_filter("the_content", "cerchez_shortcodes_content_filter");
function cerchez_shortcodes_content_filter( $content ) {
// apply to our own shortcodes that require the fix
$block = "raw|row|grid|responsive-box|box|alert|pricing-table|pricing-column|call-to-action|accordion|accordion-item|tabs|tab|slider|slider-item|feature|lightbox|include-theme-lightbox-script";
@liviucerchez
liviucerchez / image-resize.php
Created February 19, 2018 10:18
custom image resize
<?php
/**
* Resizes an image and returns the resized URL. Uses native WordPress functionality.
*
* The function supports GD Library and ImageMagick. WordPress will pick whichever is most appropriate.
* If none of the supported libraries are available, the function will return the original image url.
*
* Images are saved to the WordPress uploads directory, just like images uploaded through the Media Library.
*
@liviucerchez
liviucerchez / Featured Video field
Created January 18, 2018 19:16
Ricca - Contact Map Code