krugern
Forum Replies Created
-
Forum: Plugins
In reply to: can’t get any Amazon wish List plugin to workaha, i’m using the amazon wishlist plugin from https://www.lazyi.net/projects/amazon-wishlist/ :p
it works like a charm
Forum: Fixing WordPress
In reply to: How do I Add Line Spacing in Posts?or you can do it the hard way.
use
which will give you a space.edit: err… i got it now. you want linebreaks?
<br />
?i would go for the css options given earlier.
Forum: Plugins
In reply to: Plugins only work when deactivatedyou sure?
plugins are shown with green background in adminpages when activated. are yours white?
Forum: Everything else WordPress
In reply to: which is the best permalink structure for google indexing?I’m using
/%year%/%monthnum%/%postname%
.works fine?
Forum: Plugins
In reply to: IE not displaying my fGallery properly, though fine in FFI know what the problem is. It’s IE ?? They are not following the webstandards… ??
what’s on line 1 and 2 (from validation link) ? remove them.
Forum: Plugins
In reply to: can’t get any Amazon wish List plugin to workhttps://www.krugern.no/screenshot.jpg
here is your amazon wishlist, on my website. i used your id. check your code again ??
Forum: Plugins
In reply to: can’t get any Amazon wish List plugin to worki checked your site when i posted.
your ID lines in amazon-wishlist.php in the wp-content/plugins/-folder should look like this:
// Your amazon wishlist ID
// This is the ID after the registry/
// e.g. https://www.amazon.com/gp/registry/EKZ7W1E8MXHB/
// In this case your ID would be EKZ7W1E8MXHB
// There may be other information after the last / in my example
// that information doesn't matter, we just need the registry ID.$wishlistID = '3O41QTMU0TJ87';
Forum: Fixing WordPress
In reply to: Plugin broke my sidebar? Kinda?look in your sidebar.php.
some features are turned off for pages, only showing at the front page.
is_home(); || is_page(); || is_single();
should be on all sidebar elements to show on all pages. (code from my memory :p)hope this helps.
Forum: Fixing WordPress
In reply to: Add blogroll to sidebarmy bad. just put that ending } after get_links_list();
like:
get_links_list(); } ?>
Forum: Plugins
In reply to: can’t get any Amazon wish List plugin to workweird. that should be your amazon wishlist code. i looked up your wishlist at amazon.com so its working. i am running the amazon wishlist at https://www.krugern.no without any problems.
did you enter the code at the correct place?
Forum: Everything else WordPress
In reply to: Defult theme errorit didnt pass validation?
Forum: Fixing WordPress
In reply to: Add blogroll to sidebaredit the sidebar.php in the themes folder.
Default code is:
<?php if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>if you want the links to be included on all pages (like when reading an article on a single page), add
|| is_single()
afteris_page()
.Forum: Fixing WordPress
In reply to: Invalid argument suppliedupdate to the latest version :p
Forum: Fixing WordPress
In reply to: Signing posts with author’s nameshowing the author at the default theme is commented out.
see wp-content/themes/default/index.php and edit the line
<small><?php the_time('l, j. F, Y') ?> <!-- by <?php the_author() ?> --></small>
Remove the <!– and the –> and you are good to go.
Forum: Fixing WordPress
In reply to: no login link!resolved then?