Sinbad11
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Library Assistant] Create Table to Display PdfsThanks, Dave. I will check out those links- I appreciation your quick response!
Forum: Plugins
In reply to: [Media Library Assistant] Create Table to Display PdfsHi Dave,
I was able to modify the code and achieve my desired results. However, I do have another question- does your plugin provide front-end access to upload files to the media library or do you recommend a plugin that will work with MLA plugin to upload files from the page instead of from the media library? Lastly, has anyone incorporated data Tables with your plugin.Thanks again for the awesome plugin and killer support!!!
Forum: Plugins
In reply to: [Media Library Assistant] Modify Style of Custom Field Based on ContentThanks again, David! I will check out the link you provided and review the MLA documentation!
Forum: Plugins
In reply to: [Media Library Assistant] Modify Style of Custom Field Based on ContentHello David- Can I just say THANK YOU SO MUCH!!! I was close as I was using the right hook, but didn’t understand how to add the css field. And your bonus PHP code was very thoughtful! I tweaked it a bit and its all working PERFECTLY, thanks to your thoughtful time and effort, truely am grateful for your help!!! Below is my tweak(had to add the return for each case and added a few more quotes:
function classmark_gallery_item_values( $item_values ) {
$item_values[‘classmark_style’] = ”;
if ( isset( $item_values[‘custom:classmark’] ) ) {
switch ( $item_values[‘custom:classmark’] ) {
case ‘ts’:
$item_values[‘classmark_style’] = ‘”background-color: red”‘;
$item_values[‘custom:classmark’] = “TEST TS”;
return $item_values;
break;
case ‘sed’:
$item_values[‘classmark_style’] = ‘”background-color: blue;”‘;
$item_values[‘custom:classmark’] = “TEST SED”;
return $item_values;
break;
case ‘uc’:
$item_values[‘classmark_style’] = ‘”background-color: yellow;”‘;
$item_values[‘custom:classmark’] = “TEST UC”;
return $item_values;
break;
default:
$item_values[‘classmark_style’] = ‘”background-color: black;”‘;
$item_values[‘custom:classmark’] = “TEST BLANK”;
return $item_values;
};
}
}
add_filter( ‘mla_gallery_item_values’, ‘classmark_gallery_item_values’, 10, 1 );I did have another question, but its not related to this topic so perhaps I should start another thread. You can let me know, here is question…If I wanted to use a custom thumbnail image for the pdf icon that is added on each of my documents how would I accomplish that? Also, I am not sure why some of my docs show the default pdf icon and one shows thumbnail of document…?
AGAIN, I cant thank you enough, your plugin is very powerful, I am sure there are many more possibilities….I was reading through the forum and people are doing amazing stuff and your support is so incredible- thanks for sharing your work and knowledge!Forum: Themes and Templates
In reply to: What is the "Best" WordPress Theme for an Intranet Site?Question- If you already have a site in dreamweaver is it difficult to move it to a wordpress site. Would I have to create a custom theme…is there a good tutorial on this somewhere?
Forum: Themes and Templates
In reply to: What is the "Best" WordPress Theme for an Intranet Site?Thanks for the info.. I will take a look at the suggested themes.
Forum: Themes and Templates
In reply to: Finding the perfect themeI have NO experience with WordPress, but would like to to get some feedback on what theme would be good for an intranet site. Basically the theme would need the following functionality:
employee login
segregated access
forms for hr and security
employee contact directory- can this be linked to active directory?
news feeds
wiki
I am sure there is more, but can’t think of it now….?I would just like a starting point…what is the “best” responsive intranet theme??
Thanks in advance for your help!!