Grif
Forum Replies Created
-
Forum: Plugins
In reply to: NextGen Gallery- Moving Images from 1 Gallery to AnotherI too would really like to know if this is possible or if someone has modified code to be able to move image to another or new gallery.
Forum: Fixing WordPress
In reply to: Categories gone missing!!Update:
The categories still exist, Just WP not seeing them. If i use an ugly url like:
https://www.mydomain.net/wordpress/?cat=5that works!
Forum: Fixing WordPress
In reply to: Categories gone missing!!Bah…
i thought by adding another category “cat. name 2” and giving it the same slug as old ones would do the trick. It looked like it was adding them in the Category list but when i went to posts, and then back to categories, they disappeared!!!Really need help here as i have 50 posts that urgently need to get up there….
Forum: Fixing WordPress
In reply to: Deleted Parent Category – missing child categoriesheh, i just posted the exact same problem, but i want the child ones back!
Forum: Plugins
In reply to: The tree does not expand when root link is clicked [Plugin: WP-dTree 3.0]Yea, i can’t get it to work either, i have a custom header.php so when i read this post i added
<script type="text/JavaScript" src="https://your.blog.com/wp-content/plugins/wp-dtree-30/dtree.php?witheff=true&eff=blind&effdur=0.5&trunc=16" language="javascript"></script>
to header.php and it loadedwithout an issue, it was when i went to expand a link it spat out an error of something undefined on line 354 of the dtree.php
wp 2.5 btw…
Forum: Fixing WordPress
In reply to: Use Pages or Posts?guess i could do that also…..
Thanks again!
Forum: Fixing WordPress
In reply to: Use Pages or Posts?ahh found it in the edit widgets section
Forum: Fixing WordPress
In reply to: Use Pages or Posts?OK, thanks. Any idea where i can change the text for the Word “Categories” across the board?
Forum: Themes and Templates
In reply to: NextGen Gallery and custom template looses nextgen styleOK, think i found it. I viewed source on the working version and copied the css links to the template file. works now
Forum: Themes and Templates
In reply to: template design, can it be simpler?Just going through this process myself.
Easiest way I have found is to duplicate the default theme directory and select the copy in wordpress. You can then edit “page.php”. for example. I threw in all the code from my initial design leaving in the “pgpe.php” code nested into a <div> You can then comment out any of the php calls for headers and sidebars like so:
<?php get_sidebar(); ?>
to
<?php //get_sidebar(); ?>
I’m not sure if this is the ‘correct’ way but it works (most of the time).
I think you can also do pretty much the same to header.php to get a similar result.
I’m a bit of a noob so sorry if this is misleading ??