af3
Forum Replies Created
-
Forum: Plugins
In reply to: [Post State Tags] How to use this in custom-post-type listingI am using wp job manager and the post tags does not appear on the job application listing. There is a column for the status but I’d like them to appear at the end of the job application cpt title; similar to the listing on the normal posts or pages. Seems like this built-in append of the status tags were filtered out by wp job manager ?
Forum: Plugins
In reply to: [Front End PM] Do not show admins avatar in view-message-headsSorry, got this solved.
Just filter the admin IDs from the $participants somewhere in line 22, something like this:
$participants = fep_get_participants( fep_get_the_id() ); $admin_ids = array("1", "2", "4"); // Search the array and unset foreach ($admin_ids as $keys){ $keyToDelete = array_search($keys, $participants); unset($participants[$keyToDelete]); }Forum: Plugins
In reply to: [WP Last Modified Info] Date of Last post status changeThanks!!
Forum: Plugins
In reply to: [Front End PM] Auto add users with admin role to chat participantsThanks Shamim. I added these in functions.php around line 793, it works ok now.
if ( $can ) { $participants = FEP_Participants::init()->get( $id ); foreach ( $participants as $participant ) { // never false for admin if ( $participant->mgs_deleted && !fep_is_user_admin() ) { $can = false; break; } // never false for admin if ( ! fep_is_user_whitelisted() && fep_is_user_blocked_for_user( $participant->mgs_participant ) && !fep_is_user_admin() ) { $can = false; break; } } }- This reply was modified 6 years, 12 months ago by af3.
Forum: Plugins
In reply to: [Front End PM] Auto add users with admin role to chat participantsYup, its working for new messages, but not for replied messages… will check again.
the admin userids are correct and not 1,2,3 🙂Forum: Plugins
In reply to: [Front End PM] Auto add users with admin role to chat participantsThanks @shamim51 — this works well. The only issue now is that the new participants do not see the message in the Inbox (front-end), they can click on the back-end to get to the message but it doesnt appear in the inbox list.
Forum: Plugins
In reply to: [Front End PM] Add prepopulated msg link in custom column (backend)I fixed the mistake on add_action, it should be:
add_action( 'manage_job_application_posts_custom_column' , 'custom_send_message_column', 10, 2 );Now the link was showing but all the Send Message link is to “admin”, so the _candidate_id was not returned.
So i changed the code to this one, and it works.
case 'send_message' : $author_id = get_post_custom_values( '_candidate_user_id', $post_id ); $user_info = get_userdata($author_id[0]); $user_name = $user_info->user_login; $front_end_msg_url = '<a href="'.fep_query_url('newmessage', array('fep_to' => $user_name ) ).'">Send Message</a>'; echo $front_end_msg_url; break;Thanks!!!
Forum: Plugins
In reply to: [Front End PM] Add prepopulated msg link in custom column (backend)Thanks @shamim51
I’ve tried that — its weird, the column still returns blank 🙁
Pls help.Forum: Plugins
In reply to: [nomination and voting] nomination & voting by website usersthanks..
Forum: Plugins
In reply to: [Front End PM] Subscriber can reply only to messagesSorry, i just saw how to unset the menu button to hide New Message (both button and functionality). Thanks
- This reply was modified 7 years, 1 month ago by af3.
Forum: Plugins
In reply to: [Foyer - Digital Signage for WordPress] Add fixed tickerHi, care to share how to do this?
At the moment, I am using a standalone news ticker .exe file that runs from windows and placed on top of the full screen browser running foyer.Forum: Plugins
In reply to: [Foyer - Digital Signage for WordPress] Internal source for videoi guess we have to be patience as @mennolui is busy
lets all donate to make him more encouraged to fastrack the updates. i’m in.Forum: Plugins
In reply to: [Foyer - Digital Signage for WordPress] Internal source for videoThanks menno 🙂
Forum: Plugins
In reply to: [Foyer - Digital Signage for WordPress] Internal source for videoHi @mennolui thanks for this plugin. Desperately awaiting for the local video features too 🙂 thanks in advance.
Forum: Plugins
In reply to: [Foyer - Digital Signage for WordPress] Excellent plugin.Thanks again. The two plugin works in standard wordpress theme.. I hop there can be ability to put sidebar to add widgets for the Foyer theme.