Replies
Awesome will be looking forward to this thanks
I have asked for support several times I even sent debug errors but no feedback from the author. Your help would be greatly appreciated.
Thanks
Hello,
Would the update be available anytime soon to support checkbox in the status update form
Thanks
This plugin is highly needed as it is the only replacement for the friendship component. Would it be possible for Buddydev to take over the development of this plugin maybe by creating a fork of the plugin and selling it as a premium I would not mind buying it has a premium plugin from Buddydev.
Thanks
Yes perfect just like how it’s displayed in the comments. Hope to get the update as soon.
Thanks a lot
Yes you are correct this is my screenshot https://imgur.com/k3D2Coq
But I don’t want the “The actual name” to be shown at all only – post as “Anonymous” but with the input type should be a checkbox and not a radio select
Check this out https://m.imgur.com/a/9RkxEBL
Example is from ask.fm
OK thanks can anything be done about the display in the status box
It currently is displayed like this on the status form
Post as: Anonymous UserABC
I want it to display like this using either a toggle button or checkbox
Post as: Anonymous
Without the displaying UserABC
Thanks
It is displayed like this on the wall
Post as: Anonymous UserABC
I want it to display like this using either a toggle button or checkbox
Post as: Anonymous
Without the displaying UserABC
- Tosin on August 26, 2019 at 11:01 pm in reply to: How to limit the number of post a user can publish per day to one #24998
I found this code and was wondering if it can be modified to work with (https://wordpress.org/plugins/accesspress-anonymous-post/)
/** * Limit User to One Submission Per Time Period * http://gravitywiz.com/2012/04/25/limit-user-to-one-submission-per-time-period/ */ // update the "5" to your form ID add_action('gform_pre_render_5', 'gform_limit_submissions'); function gform_limit_submissions($form){ global $wpdb; $limit_message = 'You may only submit this form once every 24 hours.'; $limit_time = 86400; // must be specified in seconds; 86400 seconds is equal to 24 hours /* You do not need to edit below this line */ $current_user = wp_get_current_user(); $last_submission = $wpdb->get_var($wpdb->prepare("SELECT date_created FROM {$wpdb->prefix}rg_lead WHERE created_by = %d and form_id = %d ORDER BY date_created DESC", $current_user->ID, $form['id'])); if(empty($last_submission)) return $form; $time_out = strtotime($last_submission) + $limit_time; $current_time = time(); if($current_time > $time_out) return $form; $is_submit = rgpost("is_submit_{$form['id']}"); if(!$is_submit) { add_filter('gform_get_form_filter', create_function('', "return '<div class=\"limit-message\">$limit_message</div>';") ); } return $form; }
I got this code from https://gravitywiz.com/limit-user-to-one-submission-per-time-period/