robin_wp
Forum Replies Created
-
Re copying the code from the front page template to a page and then changing the page’s template to blank, does a copy made in this way result in the same page as would result if you could use the front page as a normal template?
In Zeever, the front page template is one of the templates which can’t be assigned to a new page or changed to from a page using the Page or another template. Do you know how this has come about or can you point me to a resource that addresses it?
Does https://developer.www.ads-software.com/themes/functionality/custom-front-page-templates/ have the answer?
I started a Tarski theme forum thread, Plugins: Front-end Editor (scribu) plugin: use of the_title_attribute instead of the_title ().
Ben Eastaugh replied by saying that he would take a look at changing the_title for the_title_attribute in the next release.
Forum: Fixing WordPress
In reply to: Permalink custom structure: how to get rid of path to blog string?I changed the one line of code as recommended by AskApache but without effect.
I found that the changed line had reverted back to the original; i.e., RewriteBase /site_wc/blog_wp1/. I repeated the replacement of the file and got the same result again. The AskApache plugin reported the line was unchanged.
Something is overwriting the changed line.
The permalink for a test page was unchanged: https://example.com/site_wc/blog_wp1/Tech/151-200/151-200/199_tmp/test.html
I haven’t changed the following two General Settings page settings and I would think that they are relevant:
WordPress address (URL): https://example.com/site_wc/blog_wp1
Blog address (URL): https://example.com/site_wc/blog_wp1
So I still haven’t gotten rid of the site_wc/blog_wp1 strings?
Ideas?
Forum: Fixing WordPress
In reply to: Permalink custom structure: how to get rid of path to blog string?Addendum:
My htaccess consists of the following:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /site_wc/blog_wp1/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /site_wc/blog_wp1/index.php [L]
</IfModule># END WordPress
What change (if any) would I make to the line
RewriteRule . /site_wc/blog_wp1/index.php [L]
?Forum: Fixing WordPress
In reply to: Import RSS/XML data with html into WordPressI am working with the Importing Content (Codex) and there is a section which deals with importing HTML as well as another on Excel spreadsheets.
Am I missing something?