tech techno
Forum Replies Created
-
@aurangajeb mean there os no way to stop user from adding link in articles
Forum: Fixing WordPress
In reply to: hide user is currently editing warning in admin post pagethank you so much @wpcoworker . your code is works smoothly
ok but can you please tell me about this limit post form entries feature like if i set limit post form entries = 5. so this will apply on per user or all user and when this limit was reset after 24 hours or till i change this limit uptill than
i don’t find any text/text-area type field anduser approval` system in post form.where i can find this and one more thing..i don’t want to allow user to put hyperlink in content but as i checked ( Teeny Rich textarea ) has link insert option..how i hide or remove that hide link option from Teeny Rich editor
Forum: Fixing WordPress
In reply to: Custom Coding for Hiding 2 Section on Add Media Page@corrinarusso
i m using wordpress 5.8 Version and using Custom CSS and JS Plugin for add this CSSForum: Fixing WordPress
In reply to: Custom Coding for Hiding 2 Section on Add Media PageThanks @corrinarusso Your Css worked for me but there are still Tab are showing with Action and Expand Detail Titles as You See in Image Below.
See https://snipboard.io/5NRfA6.jpg
Can you please customize this CSS to hide these 2 whole tab with title also only Upload Files and Media Library Tab are visible and all other tab will be hide for non admin user
yes i m also contacting with your team by lite support but didn’t get any response..i want to know only THat it’s possible to that when author login at my site then monsterinsight Display only Author Post Data to Author
There is any code that will help me to Display only logged in Author Post’s Data to Author Dashboard.
Forum: Fixing WordPress
In reply to: Custom Code for Hiding Profile FieldsHey @webcreative Please Help me in this case also.i have these two moew code
This one is for hiding some option in classic editor
add_filter("mce_buttons", "tinymce_editor_buttons", 99); //targets the first line add_filter("mce_buttons_2", "tinymce_editor_buttons_second_row", 99); //targets the second line function tinymce_editor_buttons($buttons) { return array( "undo", "redo", "separator", "bold", "italic", "underline", "strikethrough", //"separator", //"bullist", //"separator", //add more here... ); } function tinymce_editor_buttons_second_row($buttons) { //return an empty array to remove this line return array(); } function my_editor_settings($settings) { $settings['quicktags'] = false; return $settings; } add_filter('wp_editor_settings', 'my_editor_settings');
and this one is for hiding post slug option while writing post
function hide_all_slugs() { global $post; $hide_slugs = "<style type=\"text/css\"> #slugdiv, #edit-slug-box { display: none; }</style>"; print($hide_slugs); } add_action( 'admin_head', 'hide_all_slugs' );
i use these line to exclude admin from these code but it’s not worked for me
if ( !current_user_can( 'manage_options' ) )
All these 2 code is working fine but these code is applying for all roles and i want to exclude admin role for these code..
please tell me how to add any custom code with exclude admin role
Forum: Fixing WordPress
In reply to: Custom Code for Hiding Profile FieldsThank you @webcreative it’s Worked
Forum: Fixing WordPress
In reply to: How can I add some extra product information on my account pageYou can use admin column plugin for easily ad extra column
Forum: Fixing WordPress
In reply to: Two registration buttonsyou can check custom registration plugin for creating multiple registration form with different role
Forum: Fixing WordPress
In reply to: How to let authors see Analytics for their own posts only?ok thanks Again for Helping me This much.
Have a Good DayForum: Fixing WordPress
In reply to: How to let authors see Analytics for their own posts only?Forum: Fixing WordPress
In reply to: How to let authors see Analytics for their own posts only?hii @ashfame Thank You for Helping me.
i want to display the analytics of the Logged in user in the user interface same as like we are seeing Monster insight analytics at WordPress dashboard like that onlySee https://snipboard.io/ohiXtl.jpg
- This reply was modified 3 years, 4 months ago by tech techno.
Forum: Developing with WordPress
In reply to: Total words Count Display Codei add those stackexchange both code in my theme’s funnction but that codes are not working