David

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 110 total)
  • Author
    Posts
  • in reply to: Cannot Edit Message #25514
    David
    Participant

    Ok great, please let me know when you are finished with my site.

    in reply to: Cannot Edit Message #25501
    David
    Participant

    Hi,
    Ok, I have resent the form. I thought I had already included the normal user credentials? Let me know if you need anything else.

    in reply to: Cannot Edit Message #25483
    David
    Participant
    This reply has been marked as private.
    in reply to: Cannot Edit Message #25461
    David
    Participant

    Yes 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.

    in reply to: Cannot Edit Message #25418
    David
    Participant
    in reply to: Cannot Edit Message #24292
    David
    Participant

    Thanks 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.

    in reply to: Cannot Edit Message #24269
    David
    Participant

    Sorry 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…

    David
    Participant

    In 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?

    David
    Participant

    I 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?

    in reply to: Database Tables #22882
    David
    Participant

    Thanks for your quick response.

    in reply to: Additional Message Field #20622
    David
    Participant

    Is it possible to prepopulate this additional field? I tried adding it the same as &message_title= and &message_content= but it did not work…

    in reply to: Additional Message Field #20512
    David
    Participant

    Brilliant, thanks!!

    in reply to: Additional Message Field #20493
    David
    Participant

    Ok, 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;
    	}
    });
    
    in reply to: Additional Message Field #20489
    David
    Participant

    Hi,

    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.

    in reply to: Lost Facility to Edit Messages #19035
    David
    Participant

    Thanks, just sent you a request.

Viewing 15 posts - 46 through 60 (of 110 total)