mdocs-show-file-info-template.php line 136:
mdocs_update_file_info('show-downloads', array('color' => '#FF9140'));
or you can create you create your own file in the plugins folder and overwrite whatever you want:
ivaseg-file.php
inside file:
<?php
// ADD THE ACTION HOOK WP LOADED TO REGISTER THE NEW FILE INFO
add_action('wp_loaded','ivaseg_file');
// THE FUNCTION TIED TO THE HOOK
function ivaseg_file() {
mdocs_update_file_info('show-downloads', array('color' => 'some random color of you choice'));
}
-
This reply was modified 7 years, 2 months ago by
bhaldie.
Thread Starter
Ivaseg
(@ivaseg)
Inline styles are not best practice. It’s not difficult to you to move this code to some style.css file, but instead you ask users to create them php files to override your settings. and each time we must do this. Ok, if you think you doing in right way – ok, never mind, it’s your plugin and your choice.
the plugin folder is never deleted once you have created the file it will never be removed.
Do it or not its up to you.
this plugin folder will allow users in the future to create their own columns with me having to deal with it.
Thread Starter
Ivaseg
(@ivaseg)
I heard you. But, it seems we are from different worlds. Previously I had some ideas, but now I see that this is just useless time spending) Just forget it.
In any case – thanks for the wonderful plugin!