arthurdent2003
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: "mark" new posts as "NEW"?Worked for me – thank you alchymyth!!! ??
Forum: Fixing WordPress
In reply to: "mark" new posts as "NEW"?Hey alchymyth,
sweet – I gonna try this one – thank you very much!
AD
Forum: Plugins
In reply to: [Plugin: Geo Mashup] exclude category from beeing shown in global map?—> got it:
e.g.: exclude category 58:
<?php echo GeoMashup::map('height=305&width=940&zoom=auto&add_overview_control=false&map_cat=-58; ?>
Forum: Fixing WordPress
In reply to: Complete newb. Can't install plugins or new themes.Forum: Fixing WordPress
In reply to: hide Comments in HTML?ok – thank you…it works with wp-minify…but this plugin also makes thumbnails in articles or custom posts disappear….
well – thank you so far, chip!
AD
Forum: Fixing WordPress
In reply to: hide Comments in HTML?Ah! yes – now I got it! ?? thank you!
I forgot to set the <? php —- ?> stuff around it.
That works now…but I still have tons of <!– –> comments in the html code from plugins and so on. Is there any way to just say somethging like: “kill everything with <!– –> around?”
thank you!
AD
Forum: Fixing WordPress
In reply to: hide Comments in HTML?Hi Chip,
thanks for the reply!I tried it…but when I write:` </head>
/* a good place to work on in the future */<div =….. `it still appears….
thank you!
AD
Forum: Hacks
In reply to: PHP in variable?Yes – thank you guys! ??
Forum: Hacks
In reply to: PHP in variable?As far as i can see you should be able to reference $post_id instead of $post->ID, and that should solve the problem.. ??
yes! that’s it! Thank you very much! I was really getting nuts ??
I tried to edit the post above, after I saw that’s a bit too long, but I can’t – the post is not showing up…sorry for that! I’ll try it again!
Thank you for your help!!!
AD
Forum: Hacks
In reply to: PHP in variable?thats the original Part in the code:
[code moderated per forum rules - please use the pastebin for any code longer than 10 lines;
i also deleted your previous post because of the code overload; if that code was important, please use the pastebin]Forum: Plugins
In reply to: [Plugin: Geo Mashup] On MarkerClick = infoWindow centredHi Dylan,
thank you for the reply!
I’ll give it a try.
Thank you!!
AD
Forum: Plugins
In reply to: NextGen gallery shortcode with and id from a custom fieldthanks
Dear Dylan,
really great. I do appreciate your effort very much!
it works for me!
function ad_address( $unused ) { $gm_location = GeoMashup::current_location(); if ( !$gm_location ) return ''; $address_parts = explode( ', ', $gm_location->address ); if ( count( $address_parts ) < 2 ) return ''; array_pop( $address_parts ); return implode( ', ', $address_parts ); } add_shortcode( 'ad_address', 'ad_address' );
Thank you. I really do like your plugin a lot! Thank you for the development and support! Great!
AD
Forum: Fixing WordPress
In reply to: Two Post types on one pageok – solved it – stupid => me! ??
<?php query_posts(array('post_type' => array('post', 'custom-post -1', 'custom-post-2'))); ?>