Forum Replies Created
-
Author
-
meet
ParticipantHey Radu,
thanks for the reply Radu.
I made the same path and directory structure but that was something wrong with it as I was not being able to remove or edit anything in that structure.
So I renamed that file and created another path with the same structure and made changes in the file entry.php and got the result.
Thanks for showing the right direction as always 🙂
Have a good day.
meet
ParticipantHey Laura, thanks for reply.
But that is not what I need.
Suppose I am sending you a public message, you will be notified that I have sent you a message that is right but that message will be set as the status there in the profile header.
So I want to code that function with some code so it will ignore the public message to show there.
Please help me with this.
Thank you in advance.
meet
ParticipantAt the moment, a public message from my profile is being set as the status in my header which is wrong actually, that should include everything but a public message.
meet
ParticipantHey Radu, thanks for the reply.
Excellent judgement, I made heartbeat api desabled for non-editable pages from WPEngine and that button started working 🙂
Thank you very much 🙂
meet
ParticipantHey Radu,
thanks for the reply.
My site is on WPEngine. Is that making any issue ?And that link did not help me, there are two comments from the site-owner, there is not solution in there.
meet
ParticipantHey Radu,
I am using Buddypress(Login) widget to do login with facebook and to show Login With Facebook, I do no have installed any plugin.
FB Login works with the BuddyPress Login Widget only.
Will you please check my back-end and help me with this ?Need to push site live in 3 days.
Thank you in advance.
meet
ParticipantHey Laura,
There are 2 things there;
1. Facebook Login
2. Site login formI need to make it ,
1. Site login form
2. Facebook LoginOctober 17, 2016 at 10:18 in reply to: Successful Registration is not showing a message to check email #139888meet
ParticipantNot marked as solutionOctober 13, 2016 at 09:39 in reply to: Successful Registration is not showing a message to check email #139418meet
ParticipantNot marked as solutionmeet
ParticipantHey Radu,
I havn;t installed any plugin for that, I think that functionality is there from the theme, can you please check this and let me know ?
I really need to make this working ASAP.
Thanks id advance
October 10, 2016 at 08:16 in reply to: Registration with Facebook keeps asking for profile photo even after importing #138790meet
ParticipantNot marked as solutionSeptember 28, 2016 at 10:12 in reply to: ‘Load More’ pagination in place of normal pagination #137403meet
ParticipantNot marked as solutionmeet
ParticipantHey Radu, I did not use that plugin. I got some code and through that I changed the labels of post types.add_action( 'wp_loaded', 'renamePostTypeLabel', 20 ); function renamePostTypeLabel() { global $wp_post_types; $p = 'portfolio'; // Someone has changed this post type, always check for that! if ( empty ( $wp_post_types[ $p ] ) or ! is_object( $wp_post_types[ $p ] ) or empty ( $wp_post_types[ $p ]->labels ) ) return; /*Portfolio*/ $wp_post_types[ $p ]->labels->name = 'WikiPOP'; $wp_post_types[ $p ]->labels->singular_name = 'WikiPOP'; $wp_post_types[ $p ]->labels->add_new = 'Add WikiPOP'; $wp_post_types[ $p ]->labels->add_new_item = 'Add new WikiPOP'; $wp_post_types[ $p ]->labels->all_items = 'All WikiPOP'; $wp_post_types[ $p ]->labels->edit_item = 'Edit WikiPOP'; $wp_post_types[ $p ]->labels->name_admin_bar = 'WikiPOP'; $wp_post_types[ $p ]->labels->menu_name = 'WikiPOP'; $wp_post_types[ $p ]->labels->new_item = 'New WikiPOP'; $wp_post_types[ $p ]->labels->not_found = 'No WikiPOP found'; $wp_post_types[ $p ]->labels->not_found_in_trash = 'No WikiPOP found in trash'; $wp_post_types[ $p ]->labels->search_items = 'Search WikiPOP'; $wp_post_types[ $p ]->labels->view_item = 'View WikiPOP'; }
-
AuthorPosts