nici-
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Sitemap Page] Hide word "Category"Very fast solution in case you use a translation: Edit the language file entry and translate
‘Category: %1$s’
with ‘%1$s’Forum: Plugins
In reply to: [List category posts] SeparattorHi,
I don’t think this is made with this plugin…
However, You can style the output of this plugin via CSS. Output is a list, class is ‘lcp_catlist’ so I guess you might want to put a border-bottom under each
- -Element inside the list…?
Best regards,
nici-Forum: Plugins
In reply to: [List category posts] How do you remove the Bullets?You can use the class “lcp_catlist” to style the list with CSS.
THIS would be a feature I’d love to see!
Meanwhile:
Is it possible to show posts of a category grouped by subcategory?Thanks,
nici-Forum: Plugins
In reply to: [Frontend Uploader] After submitting custom fields where do they go?Hi All,
is there a way to create a list page with sorting by one or two of these custom fields? Say I would create a field ‘Country’ an a field ‘City’ – can I have a list page listing all postings by Country or by City?
Could You give me a hint or link? That would be great!
TIA
nici-Forum: Plugins
In reply to: [Event Calendar] Make event details mobile freindlyThis is great – thanks a lot!
Another thing that’s bothering my about mobile devices: I’d love to have the date/time marked up with microformat, so that user could tab the dae to copy it into their smartphone calenders.
To get this one would need an ISO-Output of start and end to add the hCalender time-tag to the output of show event.
Unfortunately I am no PHP nor WordPress Coder. But if anyone would like to help here, this would be great.
Thanks
nici-No messages sent here, too.
But anyway I seem to be missing something in understanding the whole thing: Where am I to put in the link to my server’s sendmail scripts? Thanks for a hint…
Ah oh, sorry.
In English: You alter two lines in the generator.php
Line 48
change DESC to ASCLine 119
change asc to descThat’s it. Have fun!
nici-
Sooooooooooo, ich habe es!
Du must die Sortierung umstellen in der generator.php
Hier drehst Du die Reihenfolge der Jahresanzeige so:
Zeile 45-48
function query_manipulation( $bits, $wp_query ) {
if ( $wp_query->get( ‘months_with_posts’ ) ) {
$bits[‘fields’] = ‘DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month’;
$bits[‘orderby’] = ‘year ASC, month ASC’;
}Hier steht normalerweise year DESC, zum Umdrehen also ‘ASC’ eingeben. Damit kommt das jüngste Jahr nach vorn/links.
Damit auch das zugeh?rige Pane als erstes geladen wird, musst Du dann auch noch die Reihenfolge der Panes umdrehen. Sonst wird eben nach wie vor beim Laden des Archivs die Liste des ?ltestesten Jahres aktiv angezeigt. Die Panes werden hier sortiert:
Zeile 119
foreach ( $this->get_years_with_posts( ‘desc’ ) as $year )Hier steht normalerweise asc, also muss hier nun desc hinein. Und fertig!
HTH
Viele Grü?eHi!
Did you found out how to do this?
Thanks, nici-