Phil Johnston
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS and ATOM category feedsIs there a way to view rss for just one post?
EG. something like this: ?post=3
Forum: Fixing WordPress
In reply to: Blog by Email – managing imagesBy the way, if anyone knows anything about the functions that are used to post attachments in wordpress, or XMLRPC or getting email or anything like that- any kicks in the right direction would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Blog by Email – managing imagesThats okay – I appreciate the help!
I had an idea that I might be able to modify the Postie plugin in a way that it would work the same as the functions inside wordpress as far as posting attachments.
Right now I’m hunting through the code in admin-functions.php and inline-uploading.php to try and find where the funtions for uploading images and attachments are so I can copy them to the postie plugin somehow…this might be too hard but I’ll try itForum: Fixing WordPress
In reply to: Blog by Email – managing imagesCool, I’ll try that out. thanks- do you know if attachments work with any of these?
*edit- at the same time one of the things im trying to accomplish is uploading photo galleries(multiple photos) from cell-phones. I’ll keep looking though
Forum: Fixing WordPress
In reply to: Direct Comment URLThanks Otto! I got it working great.
Forum: Fixing WordPress
In reply to: Direct Comment URLI am working on something like this right now. Does the URL work that way?
Forum: Requests and Feedback
In reply to: XMLRPC and comments.This would be very valuable – but before I spend a lot of time trying it – has anyone tried this before?
Is it even possible?Forum: Fixing WordPress
In reply to: Image file extensions- Slideshowpro and WordPressfigured another way around it
In the post_gallery file where the str_replace occurs, replace:
<?php echo str_replace(“.jpg”, “.thumbnail.jpg”, $image->guid); ?>
————————–
with:
<?php $albumthumb=str_replace(“.jpg”, “.thumbnail.jpg”, $image->guid)?><?php echo str_replace(“.JPG”, “.thumbnail.JPG”, $albumthumb)?>Forum: Fixing WordPress
In reply to: Adding more headers to sidebarDo you want to add pages or a new set of links? As far as I know if you add a page in the login area, it adds the page to the ‘pages’ section of links automatically
Forum: Installing WordPress
In reply to: install.php don’t workI think you’d need access to your server and SSH in order to install php or any other server-side scripting language.
You could try emailing your host and asking them to install it.
Forum: Fixing WordPress
In reply to: outputting a certain pages content to the footer of the pageWhat kind of content are you trying to add to the footer?
If you want the same info to always be in the footer you could always open the footer.php in your theme and add the stuff you want in the code.Forum: Fixing WordPress
In reply to: Image file extensions- Slideshowpro and WordPressbump?
Forum: Plugins
In reply to: custom RSS- attachment tag?hey,
yeah – I guess my problem is resolvedForum: Plugins
In reply to: custom RSS- attachment tag?I found another way around. In flash I wrote a script that finds and extracts the info I want from the tag.
Thanks anywayForum: Plugins
In reply to: custom RSS- attachment tag?Is there a reason why a function can be called in “the loop” but it doesn’t work when it is called in an rss tag?