ludvig87
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Grins and 1.3 ??Where in the file? I can’t figure out what you mean with wrap-around.
I would appreciate your help.Forum: Fixing WordPress
In reply to: dmy as 1st November 2004 instead of 1/11-2004https://www.deep-within.dk
I have 2 plugins installed, recent comments and wp grins.. Can’t see how they can be a problem…Forum: Fixing WordPress
In reply to: dmy as 1st November 2004 instead of 1/11-2004I have tried, tried and tried.. It doesn’t work.
When I usejS F Y
it show25th 2004
When I usea l j M
it showpm Thursday 25
When I usel j M Y
it showThursday 25 2004
I am using the<?php the_date() ?>
Anyone who can tell me how to fix this?Forum: Plugins
In reply to: Announce: SpamWordBlock pluginHey, I found it…
Check this:
go to your admin area and go here….
Options>Discussion>Comment Moderation
It is even posted in this thread :SForum: Plugins
In reply to: Announce: SpamWordBlock pluginYeah, I could need some info as well.
Forum: Fixing WordPress
In reply to: dmy as 1st November 2004 instead of 1/11-2004I tried putting both of the examples you used but neither of them worked. It shows this:
02:16:12 pm Friday 12
It doesn’t show the month as it should ??Forum: Fixing WordPress
In reply to: dmy as 1st November 2004 instead of 1/11-2004I tried and remove everything from the_time to look like the_time() but it still just shows up like that…
Forum: Fixing WordPress
In reply to: dmy as 1st November 2004 instead of 1/11-2004Don’t work…
It just shows date and year, not month….
I have 2 different kinds it has to work…
1: Has to show date once and then all posts underneath..
2: Has to show date at each post…
How can I fix both of those?Forum: Plugins
In reply to: get_recent_posts and Post Limit, Category FiltersThank you very much ??
The script works like a charm ?? ?? ??Forum: Fixing WordPress
In reply to: Post titles on an additional page – How?Any way that I can make it select only the posts from 1 category, have 2 and it should only show new posts on category 1.
Forum: Fixing WordPress
In reply to: Comments ain’t working though set up rightthe mingus version….
the index is in the root with the abspath to wpcomments.php..
code is this:
<?php
/* Don’t remove this line. */
require(‘wordpress/wp-blog-header.php’);
?>
<? include(“header.php”) ?>
<?php wp_get_archives(‘type=monthly&format=link’); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<?php static $counter = 1; if ( $counter > “20” ) { break; } else { if ( in_category(2) && !$single ) { ?>
<?php the_date(”,'<h5>’,'</h5>’); ?><h6><div align=”right”>Posted by <?php the_author() ?></div></h6>
<?php the_content(); ?>
<?php include(ABSPATH . ‘wp-comments.php’); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
<?php $counter++; } } ?>
<?php endforeach; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<? include(“footer.php”) ?>
Wordpress is installed to /wordpress, index is in root, blog url is set to have the /wordpress in it.Forum: Plugins
In reply to: get_recent_posts and Post Limit, Category Filtersanyone?
Forum: Plugins
In reply to: Post Limit, Category FiltersIf I put in this code:
<?php endforeach; endif; ?>
I would receive a parse error…
If I let it stay as the original:
<?php endforeach; else: ?>
the coding would work..
Putting in:
<?php endforeach; endif; $counter = 1; ?>
wouldn’t work either…
So if you get a parse error, just try and see if it is that part of the code that is causing it…Forum: Fixing WordPress
In reply to: Post titles on an additional page – How?Anyone?…. I could REALLY use the help!
Forum: Plugins
In reply to: phpGiggle 1.3.0 Released@ michan – yeah, that is what I found out…
@ mlieb/mark:
case (eregi(“$valid_url_regexp”, $giggle_link)?$giggle_link:!$giggle_link):
$newtext = str_replace($case_sensitive_search_word,”
$giggle_link .”\” target=”_blank”>”.$case_sensitive_search_word.””, $match);
break;
That is how I think the code should look like…