oats
Forum Replies Created
-
Forum: Plugins
In reply to: help: change number of themes per page in theme manageranyone?
is the themes manager possible to change with plugins?
Forum: Fixing WordPress
In reply to: Is there a way to export/import widgets from one wp blog to another?i’ve got the same issue… in wp 2.7 there isn’t just a widget table… it appears there are certain entries in the _options table instead. anyone made a plugin?
Forum: Plugins
In reply to: how to force second TinyMCE toolbar to showany ideas here? there has definitely been a change in 2.5 that caused this. perhaps i need to focus on how i can set this particular cookie with my plugin?
Forum: Fixing WordPress
In reply to: help: convert website from static HTML to wordpress pagesAlso,
extracting data is one step – but then how to automate creation of wordpress pages?Forum: Fixing WordPress
In reply to: help: convert website from static HTML to wordpress pagesOtto,
thanks for your suggestion, that was my backup plan. I know how to program actually, but figured this is a common problem that perhaps someone has solved before, perhaps even an open source tool may be available.I could do web programming with PHP or perhaps use C++ or some scripting language like Java.
How have other people solved this?
Forum: Plugins
In reply to: wp-cache: need to refresh navigation bar for ALL pagesNo, it is not easier when i set up a site for my client and they have no idea why the page they just created does not show up in the navbar.
This should be a simple rule to implement, and would save some amount of hassle that need not be there.
Forum: Fixing WordPress
In reply to: Folding page list BUT in admin of blog*bump* i am also interested in this… is there a solution out there?
Forum: Plugins
In reply to: objection redirection – not working w/ WP 2.2bump… some help, anyone?
Forum: Fixing WordPress
In reply to: stop wordpress from inserting line breaks in my code!!<p>asdfasdf asdfa dasdfasd asdf asldkfasdf jksdlf jaksdf <TABLE> <TR> <TD> words in cell </TD></tr> </table>well I found out that wordpress does not like mixed cases with tags. there is nothing wrong with the above table, but wordpress adds line breaks all over the place. if i make the ‘table’ and ‘td’ tags lowercase, it behaves much better. bug?
also it still puts a ‘br’ tag between ‘words in cell’. i wish it wouldn’t.
is there a plugin that disables this wpautop only for code-edit entries?
Forum: Fixing WordPress
In reply to: stop wordpress from inserting line breaks in my code!!I forgot to add: I get the same results when I try to post with desktop blogging software, like ScribeFire or Ecto. WordPress still inserts the ‘p’ and ‘br’ linebreak tags. Interestingly, they never show up in the code-edit view. These extra tags only show up when viewing the actual page.
Forum: Plugins
In reply to: HELP: custom comments link with pluginBut if you’re trying to write a plugin for people to use,…. You don’t want something that messes with the core code – what if they want to shut it off, or they decide they don’t like it?
Umm, thats exactly what a plugin does – it doesn’t mess with the core code, and allows people to easily turn it on/off.
Forum: Plugins
In reply to: Advanced Features Button Works Great!it works great – only thing is you have to manually refresh the WYSIWYG page before the mod shows up! i think this has something to do with the cache_javascript_headers() at the beginning of the tiny_mce_config.php file. but i don’t know how to make this refresh happen automatically! any ideas?
Forum: Plugins
In reply to: HELP: custom comments link with pluginPerhaps I can use this pluggable function technique? Can I plug any core function I want, or only certain functions?
Forum: Plugins
In reply to: HELP: custom comments link with pluginThanks for the reply… it sounds like what you are recommending is that I define a new function, and then update my template to use the modified function.
I was hoping for a solution which wouldn’t require changes to templates, but just modify this function globally. Is it possible? Is there some other hook I could use?