David
Forum Replies Created
-
AuthorPosts
-
DavidParticipant
Ok great, please let me know when you are finished with my site.
DavidParticipantHi,
Ok, I have resent the form. I thought I had already included the normal user credentials? Let me know if you need anything else.DavidParticipantThis reply has been marked as private.DavidParticipantYes I can. Can you give me an email address for the Admin logon and then I will send you the details in a private reply.
DavidParticipantA month later they have replied!
https://wordpress.org/support/topic/memcache-issue-in-dashboard/
DavidParticipantThanks but it did not work. The exclude URL function is for the dynamic caching part of the plugin. Memcache does not have this option. However, it did try it and it was the same.
I have opened a topic on the SG Optimizer support page asking them why memcache is stopping me from making changes in the dashboard. I will let you know what they say.
DavidParticipantSorry about that. I should have checked.
It is the memcache option on Siteground SG Optimizer. With memcache enabled I cannot edit a message or change it from pending to published.
I suspect I am unable to have both options available…
May 5, 2019 at 11:48 am in reply to: Can't reply to a message after it is deleted by other user. #24167DavidParticipantIn my application the initial message is a quote for a service. It can sometimes take days/weeks for someone to reply which means the user who sent the message needs to leave it in their inbox. As they can be sending 5-10 quotes per day this leads to a very congested inbox. Users would like to be able to send a quote and then delete it but still have the option for the person to reply with the full message.
If there are valid reasons to have both options then could it be possible to have this as an option to select in the settings menu?
May 2, 2019 at 10:02 pm in reply to: Can't reply to a message after it is deleted by other user. #24104DavidParticipantI am interested in the custom code option to give any user the ability to reply to a message that has been deleted by the other participant. Really I think it should be standard because that is how email would work. If I send someone an email and then delete it, they can still reply to it right? Anyway, if David Keene is interested maybe we could split the costs 50/50 for the custom job?
DavidParticipantThanks for your quick response.
DavidParticipantIs it possible to prepopulate this additional field? I tried adding it the same as &message_title= and &message_content= but it did not work…
DavidParticipantBrilliant, thanks!!
DavidParticipantOk, have got to this stage which has added a text box but not sure how to echo the info from the text box into the message? Is it possible to replace the word ‘hello’ below with the details entered into textbox1?
add_filter( 'fep_form_fields', function( $fields ){ $fields['cus_fep_textbox1'] = [ 'type' => 'text', 'where' => 'reply', 'priority' => 22, 'label' => 'Start Point', ]; return $fields; }); add_action( 'fep_action_message_after_send', function( $message_id, $message, $new_message ){ if ( ! empty( $message['cus_fep_textbox1'] ) ) { fep_add_meta( $message_id, 'cus_fep_textbox1', $message['cus_fep_textbox1'], true ); } }, 10, 3); add_action( 'fep_display_after_message', function(){ if ( fep_get_meta( fep_get_the_id(), 'cus_fep_textbox1', true ) ) { echo hello; } });
DavidParticipantHi,
I’d like to achieve a similar thing but using 1-3 separate text boxes that would sit above the message box on the view message page. Any help with this would be much appreciated. I have tried the above but changing the ‘fep_action_message_after_send’ to ‘fep_display_before_messagebox’ but it is not working.
DavidParticipantThanks, just sent you a request.
-
AuthorPosts