This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
jQuery(document).ready(function($){ | |
$(".wpcf7").on( 'mailsent.wpcf7', function(){ | |
var redirect_to = $(this).find('#wdw_redirect_to_url').val(); | |
if( typeof(redirect_to)!=='undefined' && redirect_to!='' ){ | |
window.location.href= redirect_to; | |
} | |
}); | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* automatically load activities when user scrolls down - like facebook | |
* @author: @webdwall - http://webdeveloperswall.com/buddypress/load-more-activites-on-scroll | |
**/ | |
jQuery(window).load(function(){ | |
/* | |
* 1. bind event on page scroll | |
* 2. check if user has reched near to the bottom of activity stream( ScrollTop and pageheight etc..) | |
* 3. load the new content | |
* 4. update the pageheight etc.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* http://webdeveloperswall.com/php/generate-youtube-embed-code-from-url | |
**/ | |
function youtubeEmbedFromUrl($youtube_url, $width, $height){ | |
$vid_id = extractUTubeVidId($youtube_url); | |
return generateYoutubeEmbedCode($vid_id, $width, $height); | |
} | |
function extractUTubeVidId($url){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* http://webdeveloperswall.com/php/get-youtube-video-id-from-url | |
**/ | |
function extractUTubeVidId($url){ | |
/* | |
* type1: http://www.youtube.com/watch?v=9Jr6OtgiOIw | |
* type2: http://www.youtube.com/watch?v=9Jr6OtgiOIw&feature=related | |
* type3: http://youtu.be/9Jr6OtgiOIw | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Subsite Lostpassword | |
Plugin URI: http://webdeveloperswall.com/wordpress/multisite-forgot-password-url-issue/ | |
Description: Updates URLs on susbites and in lost password request emails to point to the subsite where the lost password request started. | |
Version: 1.0 | |
Author: ckchaudhary | |
Author URI: http://webdeveloperswall.com/wordpress/multisite-forgot-password-url-issue/ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'gmw_fl_after_query_clauses', 'wdw_gmw_fl_qc_alter', 11, 2 ); | |
/** | |
* Geo my wp - member locator addon. | |
* By default the plugin excludes all the users who have not provided their location info yet. | |
* This is bad. If i am not searching by location, but searching only by xprofile fields, | |
* the plugin still excludes users who have not entered their location info yet. | |
* | |
* This is a dirty hack to attemtp to fix that. | |
* | |
* @author ckchaudhary <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'bp_activity_set_just-me_scope_args', 'bboss_remove_activity_comments_override', 11, 2 ); | |
function bboss_remove_activity_comments_override( $retval = array(), $filter = array() ){ | |
//this happens only only on user profiles, | |
//so ideally this if condition should not be commented out. | |
//But in this particular case, apparantely, this is happening on site-wide activity stream too, | |
//so this if contidiont should be commented out | |
//if( bp_displayed_user_id() ){ | |
$retval['override']['display_comments'] = 'threaded'; | |
//} |
OlderNewer