String Locator is limited to search mode only.
Because this site is configured to not allow direct file editing, the String Locator plugin has limited functionality and may noy allow you to directly edit files with your string in them.
To edit files, you need to have the edit_themes
capability.
For a while, I had complete edit access of my files from the plugin. I had to rebuild the site from scratch, and now, that functionality is gone. How do I get it back?
How does one enable this functionality? Is it a host site setting? Something within WordPress? I can’t find any documentation on this on the plugin page or in Google searches. So how do I re-enable it?
]]>Any thoughts?
]]>I tried to import csv files (made with BetterLinks and PrettyLinks) from another WP installation. Both Failed.
When I manually add a link it doesn’t go through unless I add a category first. Then the link is visible in the screen, but does not work. Refreshing the screen makes the link disappear.
When I just add a new category the screen becomes white until I finally choose to go a page back.
I tried deactivating all other plugins with no better result.
I also tried the version of Betterlinks you recommended a couple of weeks ago to someone with a similar problem.
Weird thing is that I in the last two days moved two WP websites. With the first one I could easily import a file from Pretty Links. And with the second one it doesn’t work.
As I mentioned in the title: it is like the database (?) is read only. Just for this plugin though. No problems elsewhere.
Do you have any other suggestions for me to fix it?
Thanks.
]]>Im looking to make all fields read-only on my checkout page. The ‘billing_first_name’ and ‘billing_last_name’ are working well now but I have two other fields.
Their ID’s are ‘billing_email’ and ‘company_name’ (custom field). Unfortunately when I use those, it isn’t working. How can I make all fields read-only? I’m not sure how to combine it, or adjust it to make it work.
Thank you
// MAKE CHECKOUT FIELDS READ-ONLY
add_action(‘woocommerce_checkout_fields’,’customization_readonly_billing_fields’,10,1);
function customization_readonly_billing_fields($checkout_fields){
$current_user = wp_get_current_user();;
$user_id = $current_user->ID;
foreach ( $checkout_fields[‘billing’] as $key => $field ){
if($key == ‘billing_first_name’ || $key == ‘billing_last_name’){
$key_value = get_user_meta($user_id, $key, true);
if( strlen($key_value)>0){
$checkout_fields[‘billing’][$key][‘custom_attributes’] = array(‘readonly’=>’readonly’);
}
}
}
return $checkout_fields;
}
screenshot: https://imgur.com/a/yCPs2i9
]]>This plugin is awesome. Just one issue that I’ve been trying to adjust without success.
I’m kindly requesting for help with the custom css code to turn the grey-colored, read-only fields in my form to complete black like the other entries.
The read-only inputs are hardly visible both on desktop and mobile. I’ve tried to change it from the Form’s settings, then Elementor builder and also the theme but it just won’t change.
This is the exported form here: This is the exported form
A picture of the grey-colored fields (circled) is here: A picture of the grey-colored fields (circled) is here:
Thanks in advance.
]]>{“request”:”\/1.1\/statuses\/update.json”,”error”:”Read-only application cannot POST.”}.
I already changed to Read and Write on Twitter devs but still after a few hours all the new posts are getting the same error.
]]>On the mobile app or really in general. Is there any way to have a read only user? I have an Ipad that I use as a checkout window in my retail store. I’d like the sales associates to be able to access and read the orders in the backend, but I don’t want them to be able to edit, delete, or change anything. Let me know if it is possible to create a user like this.
Best,
Jeff
Is there any way to have a user able to interact and read the back end of word press/woocommerce to see information such as order details, product type/variations, ect?
Right now I am able to have the user edit woocommerce but am unable to find a way so they can only read the back end and can’t make any changes to the orders. Let me know if this is possible.
Best,
Jeff
Is there any workaround for this?
(At the moment, the only solution I can try is eliminate datepicker when editing.)