ginocolada
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin AZIndexI guess this is what you’r looking for?
<?php $songs = get_post_meta($post->ID, 'songs', false); ?> <?php foreach($songs as $song) { echo '<li>'.$song.'</li>'; } ?> </ul>
More here
Have fun, I did!
Gino
Forum: Plugins
In reply to: Is there a site map plug in?First I guess you need to become familiar with sitemaps in general
check out the page “sitemaps explained” Sitemaps explained SHORTThere is also a good list with my favorite Sitemap Plugins for wordpress.
O yes, and second must read this article on Plugin Management.
Have fun!
Forum: Plugins
In reply to: [Custom Field Template] Load IssuesWhen I encoutered a problem alike, the issue was the size of my template.
No problems on my dev. server, yet my hosting provider couldn’t handle the amount of memory the CFT consumed/ generated.
I resolved this issue by splitting (SELECT fieldlists where to big in size) up the template.
Read my basic notes on optimizing wordpress.
Goodluck!
Forum: Fixing WordPress
In reply to: [Plugin: Custom Field Template] Admin CSSAlright here we go to make a customized compact ADMIN template.
The plugin manual explains something like:” use CSS break type the following way: (Set CSS of ‘#cft div’. (type = break)) “
The following code worked fine for me:
#cft div { width:50%; float:left; clear:none; } #cft dl { clear:both; margin:0; padding:0; width:100%; } #cft dt { display:none; float:left; font-weight:bold; margin:0; text-align:left; width:20%; } #cft dt .hideKey { visibility:hidden; } #cft dd { float:left; margin:0; text-align:left; width:80%; } #cft dd p.label { font-weight:bold; font: green; margin:0; } #cft_instruction { margin:5px; }
You can find more examples on my blog.
Forum: Themes and Templates
In reply to: Admin Color SchemeI use the Easy Admin Color Schemes plugin in combination with a good color profile editor supporting style sheets (CSS).
To create your own custom color profile for the admin theme, you could try and import any admin_style.css into the online color generator Screenshot and more info
Have fun! I did.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Admin CSSFor the sake of brevity I had to split my huge template in two columns.
I also added some nice contrast to the labels, looks awesome in the quick-edit. Check here for more recently added ADMIN CSS code.
#cft div { width:50%; float:left; clear:none; } #cft dl { clear:both; margin:0; padding:0; width:100%; } #cft dt { float:left; font-weight:bold; margin:0; text-align:left; width:20%; } #cft dt .hideKey { visibility:hidden; } #cft dd { float:left; margin:0; text-align:left; width:80%; } #cft dd p.label { font-weight:bold; color:#093E56; margin:0; border-bottom:1px solid #BDBDBD;background-color:#EEEEEE;} #cft_instruction { margin:5px; }