Copywrite
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: If not index show other divYeah thanks alchymyth that works great. I was thinking about putting this code in a text widget instead of directly in the index.php Good idea? Cheers
Forum: Installing WordPress
In reply to: How to change installation directoryThat looks perfect! Thanks all
Forum: Installing WordPress
In reply to: How to change installation directoryOK that is good news thanks, I’ll delete the already installed wp files and install the new version.
First I’ll block off access to the index page, it only seems to give me options to make posts private not my main index page which is important. Where can I find how to make my index page private? ThanksForum: Installing WordPress
In reply to: How to change installation directoryThanks that looks like the way to do that, however, I am wondering whether it would jst be simpler to reinstall wp as I don’t have any posts at the moment. If I was to unistall and resintall then I am worried about the 4 folders of content and 5 php files I have in the site root that I don’t want to overwrite when I reinstall wp. Will they be unaffected if I install wp in the site root? Thanks
Forum: Fixing WordPress
In reply to: How to put simple password on pageThanks!
Forum: Plugins
In reply to: Can anyone recommend a good plugin to automatically post posts to twitterHmm twitterfeed FAIL WHALE. It is only posting one out of every 4 wordpress posts. I have installed cURL and I’m going to try out this one, my reckoning is anything that doesn’t need to be updated it the best way to go. However reading articles it appears oauth is needed to use twitter so I don;t know if this article still works.
Forum: Plugins
In reply to: Can anyone recommend a good plugin to automatically post posts to twitterRight I put up a new post let’s see if that baby works ?? I’ll give it a couple of hours for tweetfeed to work its magic
Forum: Plugins
In reply to: Can anyone recommend a good plugin to automatically post posts to twitterOK thanks I set up twitterfeed loing forward to seeing how it performs, will check with crowdfavorite as well
Forum: Plugins
In reply to: Can anyone recommend a good plugin to automatically post posts to twitterHmmm I installed twitter-tools but i can’t find these, my application page is my blog domain:
Copy and paste your Access Token and Access Token Secret into the fields below
On the right hand side of your application page, click on ‘My Access Token’.
Forum: Plugins
In reply to: Can anyone recommend a good plugin to automatically post posts to twitterThanks I’ll try them out I was using some code I found which uses cURL – the reason being that the yoururls plugin didn;t seem to be working on my host- but it seems like my hosts don;t like it. Thanks again
Forum: Fixing WordPress
In reply to: Testing cURL code throws errorOK thank-you for your reply!
Forum: Themes and Templates
In reply to: What is the path of my wp-blog-header.phpThanks that works great!
Forum: Fixing WordPress
In reply to: Integrating wordpress with your website following instructionsThanks I tried this code it doesn’t show anything
<?php /* Short and sweet */ define('WP_USE_THEMES', false); require('www.mydomain.com/blog/wp-blog-header.php'); ?> <?php require('www.mydomain.com/blog/wp-blog-header.php'); ?> <?php $posts = get_posts('numberposts=10&order=ASC&orderby=post_title'); foreach ($posts as $post) : start_wp(); ?> <?php the_date(); echo "<br />"; ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endforeach; ?>
Forum: Fixing WordPress
In reply to: Change URL /Permalink for postsThanks snowman, so how can I get rid of the /main/ part of the url for new posts-so it would be like this?:
Post pages:https://example.com/category-name/%postname%/Forum: Fixing WordPress
In reply to: Category page archive.php not showing templateI worked it out it was an error in the php thanks anyway