ckchaudhary
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Message Attachment] Not working anymoreHi jayd94,
I’ll test it with w3 Total cache and get back to you.Forum: Plugins
In reply to: [BuddyPress Message Attachment] can't send attachment to all usersHi thexlearner,
Can you give more details?If you are talking about sending a notice to all users, then yes, that feature is not there. Attachments are disabled when you send a notice to all users instead of a private message.
This plugin doesn’t change page title while page is generated by server. So googlebot or other such services see the page title as generates by WordPress seo or whatever is used to generate titles, no changes there.
So, it shouldn’t affect seo stuff at all.
Page title is changed only after few seconds of page load.
So I don’t see any problem there.
Am I missing something?Forum: Reviews
In reply to: [BuddyPress Message Attachment] Perfect plugin well updatedWow! Tinymce on compose message screen sounds really interesting.. Nice..
And thanks for 5stars..Forum: Plugins
In reply to: [BuddyPress Message Attachment] ZIP,RARReleased a minor update of plugin. The new version now has zip and rar file types.
Forum: Plugins
In reply to: [BuddyPress Message Attachment] ZIP,RARHi itt
Yes, you are right. I wonder, how I missed those! ??
Will add it in next update. Soon.
Thanks.Forum: Plugins
In reply to: [BuddyPress Edit Activity] How to reposition the "Edit" buttonAdd this code in your theme’s functions.php file, it should work.
if( function_exists( 'bp_update_activitiy_visibility_selectbox' ) ){ remove_action('bp_activity_entry_meta', 'bp_update_activitiy_visibility_selectbox',10); add_action('bp_activity_entry_meta', 'bp_update_activitiy_visibility_selectbox',11); }
Forum: Plugins
In reply to: [BuddyPress Global Search] Custom post types HELP PLEASE- They have a filter to change that. Put the following in your theme’s functions.php:-
add_filter( 'bboss_global_search_label_search_type', 'myprefix_label_search_type' ); function myprefix_label_search_type( $label ){ if( $label=='Cpt-movie' ){ $label = 'Movie'; } return $label; }
- create folder buddypress-global-search/loop in your theme. Copy file plugins/buddypress-global-search/templates/loop/post.php to your theme/buddypress-global-search/loop folder. Edit this file and put the_post_thumbnail() etc.. That should work.
Forum: Plugins
In reply to: [FB like notification for buddypress] problem while activation of the pluginThe plugin doesn’t add/send any notification by itself. The plugin fetches and displays whatever notifications are there. So for your answer, no it doesn’t.
On a side-note, it’ll be more convenient if you start a new thread for new questions. ThnxForum: Plugins
In reply to: [FB like notification for buddypress] problem while activation of the pluginHi @joomir,
I just tested the plugin with WordPress 3.6 and BuddyPress 1.8 and it works fine.
Let me know what versions you are usingForum: Plugins
In reply to: [FB like notification for buddypress] problem while activation of the pluginHi,
Your server must be running a php version lower than 5.3.What you can do is :
open the file public_html/wp-content/plugins/fb-like-notification-for-buddypress/bp-fb-like-notification.php and go to line number 17.Replace the line
add_action( 'bp_include', function() { new BP_FB_like_notification(); } );
with the following:add_action( 'bp_include', 'bfln_instantiate' ); function bfln_instantiate(){ new BP_FB_like_notification(); }
save the file.. it should work now
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] problem with scrollYes the update fixed it.. works fine now.. thank you
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] problem with scrollSorry for not making myself clear enough. By size i mean number of lines of text in the file..
check this video it might help you understand the problem better https://youtu.be/BzDQddPT-60 . as soon as i release the scrollbar it starts scrolling upwards automaticallyAnd I am using google chrome version 23.0.1271.97 on windows 7 machine
Thnx
Forum: Plugins
In reply to: [BuddyPress Message Attachment] Adio Attachment (MP4, MP3)the error is only with .mp3/mp4 files?
Forum: Plugins
In reply to: [BuddyPress Message Attachment] Anexar arquivo PDF@jonniffer, yes simply add ‘pdf’ in the list of allowed file types
- They have a filter to change that. Put the following in your theme’s functions.php:-