Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Forum: Plugins
    In reply to: Plugin AZIndex

    I 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

    First I guess you need to become familiar with sitemaps in general
    check out the page “sitemaps explained” Sitemaps explained SHORT

    There 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!

    When 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!

    Alright 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.

    I 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.

    For 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; }
Viewing 6 replies - 1 through 6 (of 6 total)