Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
shemul49rmc / Facebook Pop up Plugin for Blogger:
Last active August 29, 2015 13:55
Facebook Pop up Plugin for Blogger
<style type='text/css'>
#iamshemulpopup{
position: fixed;
top:100px;
z-index:9999;
display:none;
padding:0px;
right:600px;
border:10px solid rgba(82, 82, 82, 0.7);
-webkit-background-clip: padding-box; /* for Safari */
@shemul49rmc
shemul49rmc / Display related posts in Genesis based on Category
Created October 24, 2013 20:56
Display related posts in Genesis based on Category
@shemul49rmc
shemul49rmc / Styling the related posts in Genesis Theme
Created October 24, 2013 21:15
Styling the related posts in Genesis Theme
@shemul49rmc
shemul49rmc / Display Related Posts in Genesis based on Tags
Created October 24, 2013 21:15
Display Related Posts in Genesis based on Tags
@shemul49rmc
shemul49rmc / How to Edit 404 Page Error Message:
Created October 24, 2013 21:20
How to Edit 404 Page Error Message:
<p><?php printf( __( 'The page you are looking for no longer exists. Perhaps you can return back to the site\'s <a href="%s">homepage</a> and see if you can find what you are looking for. Or, you can try finding it with the information below.', 'genesis' ), home_url() ); ?></p>
@shemul49rmc
shemul49rmc / How To Reduce the Number of Recent Posts in 404 Page:
Created October 24, 2013 21:20
How To Reduce the Number of Recent Posts in 404 Page
<h4><?php _e( 'Recent Posts:', 'genesis' ); ?></h4>
<ul>
<?php wp_get_archives( 'type=postbypost&limit=100' ); ?>
</ul>
@shemul49rmc
shemul49rmc / Remove Query Strings Script Version From Static Resources
Created October 24, 2013 21:17
Remove Query Strings Script Version From Static Resources
function _remove_script_version( $src ){
$parts = explode( '?ver', $src );
return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
@shemul49rmc
shemul49rmc / How to Add Content Boxes and Color Buttons in Genesis
Last active December 26, 2015 11:39
How to Add Content Boxes and Color Buttons in Genesis
Add Content Boxes in Genesis:
<div class="content-box-blue">Enter your content box text here.</div>
Add Color Button in Genesis:
<a class="button-blue" href="#">Blue Button Link</a>
@shemul49rmc
shemul49rmc / Add Content Box CSS to Your Style Sheet
Created October 24, 2013 21:27
Add Content Box CSS to Your Style Sheet
/* Content Boxes
------------------------------------------------------------ */
.content-box-blue,
.content-box-gray,
.content-box-green,
.content-box-purple,
.content-box-red,
.content-box-yellow {
margin: 0 0 25px;
@shemul49rmc
shemul49rmc / Add Color Button CSS to Your Style Sheet
Created October 24, 2013 21:29
Add Color Button CSS to Your Style Sheet
/* Color Buttons
------------------------------------------------------------ */
.button-blue,
.button-gray,
.button-green,
.button-purple,
.button-red,
.button-yellow {
color: #fff;