Dsingh
Forum Replies Created
-
Hi sinai65,
As discussed, Issue have fixed. If still open, You are feel free to open.
Forum: Plugins
In reply to: [Purge Varnish Cache] Plugin shows white screen after setupNot more clarification from reporter. So I am considering, their is no issue.
Forum: Plugins
In reply to: [Purge Varnish Cache] Plugin shows white screen after setupHi redz0r,
Can you please share your steps with screen shots. So i can fix it quickly
Thanks
DevendraForum: Plugins
In reply to: [Purge Varnish Cache] Wrong number of argumentsImplement Trigger to purge post on comment approved/unapproved
Forum: Plugins
In reply to: [Purge Varnish Cache] php7 compatibilityHi Shark,
I send you updated code. Please verify and update me. If it fixed. So I can update.
Forum: Fixing WordPress
In reply to: How to create a menu that can be accessed by anonymous usersHi catacaustic,
Thanks for response.
We are developing an android app for our site vccrircle.com. We create a menu at for app.
I want to return menu data as json. That’s why i want to create a menu that should be available as anonymous.
Forum: Plugins
In reply to: [Purge Varnish Cache] Multiple serversThanks Smkogly,
Did you add the key like 172.31.25.249:6082 172.31.25.149:6082
Could you please share your servers IP with port and secret key at [email protected]
Thanks Luis for your quick support.
Basically Contact Form 7 have the manage_options permissions on their menus. I want to allow a role to export permissions on that menu.
Can you please suggest? How could i achieve?
Thanks Luis,
I was looking for every form. I am a Drupal developer where it is possible.
I have another question. Are menu permissions are tightly coupled with plug-in.
Means can i change the menu permissions by overtiring the same menu in my plugin.
For example.function nimble_menu() {
$page_title = ‘Export Contact Form (Save CF7)’;
$menu_title = ‘Export Contact Form ‘;
$capability = ‘export’;
$menu_slug = ‘save_contact_form_7’;
$function = ‘nimble_populate_page’;
$icon_url = plugins_url(‘save-contact-form-7/assets/images/icon.png’);
$position = 99;
//create new top-level menu
add_menu_page($page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position);
add_submenu_page(
$menu_slug, // admin page slug
‘Export Contact Form (Save CF7) settings’, // page title
‘Settings’, // menu title
‘manage_options’, // capability required to see the page
‘nimble_settings’, // admin page slug, e.g. options-general.php?page=wporg_options
‘nimble_settings_page’);
}Could i overwrite this menu in my custom pluing with the another permission (e.g export)
Thanks Luis,
I got it.
I have one more question. How could i alter any plugin form?