rana2u
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I add breadcrumbs to Thesis 2?Thanks
Forum: Fixing WordPress
In reply to: RedirectsThank you.
Forum: Fixing WordPress
In reply to: RedirectsThere’s no slash at the end of the URL structure. Thank you.
Forum: Fixing WordPress
In reply to: RedirectsThis is what I see in the file:
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /weblog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /weblog/index.php [L] </IfModule> # END WordPress
Which part do I take out? Do I just take out RewriteBase / and change it to
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On weblog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /weblog/index.php [L] </IfModule>
Forum: Fixing WordPress
In reply to: RedirectsYes .htaccwss has the line RewriteBase /
Is that what’s causing a redirect from https://www.pressrun.net/weblog to https://www.pressrun.net/weblog?
How do I remove the redirect?
The URLs of my blog posts don’t end with a trailing slash. My blog post’URLs are like this:
https://www.pressrun.net/weblog/2014/08/the-poems-of-john-betjeman.html
They end in .html
I kept that format because I migrated from Typepad.
So what should I do to remove the redirect from https://www.pressrun.net/weblog to https://www.pressrun.net/weblog?
Do I have to rewrite .htaccess. How? What should I write there?
Please help. Thank you.Forum: Fixing WordPress
In reply to: I can't access wp-admin and post to my blogThank you very much. You were the first to point it out. I really appreciate your help. My web hosting service didn’t spot that. And I didn’t realize it. I am really grateful to you.
The WordPress Jetpack plugin is fine except for the manner in which it sends links to Facebook. That is ugly. WordPress should do something to make the Jetpack plugin send links to Facebook in a more professional style. It looks so amateurish with the pubv1 sticking out. Use Facebook plugin to link WordPress to Facebook.
Jetpack is posting to my Facebook page, but the URL is ending like this: ?fb_source=pubv1. Why? This is not how it is supposed to look according to the Jetpack Publicize support page. How to fix it please? I don’t want to touch the rewrite engine or tinker with the code. This is how the link looks when I use Jetpack Publicize to post on Facebook. https://www.pressrun.net/weblog/2013/03/the-gift-outright-by-robert-frost.html/?fb_source=pubv1
Forum: Fixing WordPress
In reply to: How to redirect old .html links to new php files?Thank you.
Problem solved by using the following Permalink structure:
/%year%/%monthnum%/%postname%.htmlFound this in a post on Digital Inspiration dating back to 2007. Thanks Amit!
Forum: Installing WordPress
In reply to: How do I move my blog from TypePad to WordPress?OK. Thank you.
Forum: Installing WordPress
In reply to: How do I move my blog from TypePad to WordPress?If I upload the images by FTP, where do I install it please?
Forum: Installing WordPress
In reply to: How do I move my blog from TypePad to WordPress?Thank you. I have been able to import the text. But how do I import the images? TypePad kindly put the images in a tar.gz file. How do I unpack it and upload it to WordPress?
Forum: Themes and Templates
In reply to: How to remove author name, time and date from posts and pages?Oh sorry, it did work. I was commenting out the wrong <div class=”entry-meta”> I was removing that for the Gallery instead of after the line that says How to display all other posts.
Thank you very much for you help.
Forum: Themes and Templates
In reply to: How to remove author name, time and date from posts and pages?Sorry, it didn’t work. I removed from the loop.php file the following code
<div class=”entry-meta”>
<?php twentyten_posted_on(); >
</div><!– .entry-meta –>But the author name, date and time still showed up.