refugee43
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: htaccesswhat lines?
I tried your code, nothing changed.
Code from the hack was:
#RewriteEngine On
#RewriteBase /
#RewriteCond %{HTTP_USER_AGENT} (Googlebot|Slurp|msnbot)
#RewriteRule ^ https://doormoney.us/ [R=301,L]Peeps should check their htaccess file. the link might change up….
It is pretty hard to get any help on wordpress forums I have noticed.
Forum: Fixing WordPress
In reply to: htaccessI was using the permlinks `/%POSTNAME%/ plus SEO title tags and ZD header tag plugins. I thought they might have written this onto the htaccess file.
Forum: Fixing WordPress
In reply to: htaccessI replaced the above with the reformatted code from t31os
No go. I cannot even preview the pages now.
Forum: Fixing WordPress
In reply to: htaccessI added the following from the wordpress permalinks:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) – [E=HTTP_AUTHORIZATION:%1]
RewriteCond %{HTTP_REFERER} !^https://www.jesusradicals.com/wp-admin
RewriteRule ^(.*)wp-content/uploads/(.*) /index.php?attachment=$2&scoper_rewrite=1 [NC,L]
</IfModule>Still all my pages are giving a 404 error.
Forum: Fixing WordPress
In reply to: sitemap problemI also am getting the message for another sitemap from the google sitemaps plugin I downloaded from this site.
https://www.jesusradicals.com/sitemap.xml
the exact error is: Your Sitemap does not appear to be in a supported format. Please ensure it meets our Sitemap guidelines and resubmit
I am not sure what the problem is…
Forum: Fixing WordPress
In reply to: Alignment in explorerI had to take out the title tags at the top of the index page. That made it line up correctly in all browsers.
Forum: Fixing WordPress
In reply to: Alignment in explorerIt is only Explorer that does this and it only mis-aligns the index page. The rest of the pages are fine. The other browsers display fine as well.
Forum: Themes and Templates
In reply to: alignment issuesHow did you resolve the issue? I have a similar one. I checked your site in IE and Firefox and it aligns in the center in both browsers. So waht did you do to fix it?
Forum: Fixing WordPress
In reply to: is_page with children pageslast try
Forum: Fixing WordPress
In reply to: is_page with children pagestry to bump this cause I need the help
Forum: Themes and Templates
In reply to: Page-Specific TemplatesI created a separate template file (latin.php) to use on a page (latin) as well as a new header (latin_header.php) which calls a new style sheet (latin-style.css).
The rest of the site uses the default (page.php; header.php; style.css).
How can I get the page (latin) and any subpages to use the template file (latin.php)? By typing in the following code into header.php:
<?php if (is_page(‘latin’)) { ?>
<link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/latin-style.css” type=”text/css”>
<?php }; ?>`With this code, I can get the page (latin) to change its look.
When I create subpages, I mark for them to use the “latin” template in the drop down menu on the right, but nothing changes. Also, if I take out the conditional code I posted and try to make the page (latin) use the template from the admin page, nothing works, it simply calls up the default page.php and looks like the rest of the site in color, banner, etc.
Any thoughts on this? Is there code that can pull up all subpages to (latin)? Is there some reason that the templates do not come up when trying to use them from the admin and page editing/creation section?
Forum: Themes and Templates
In reply to: Sub-categories to use parent category template?Is it possible to do this with pages and subpages rather than with posts and categories?
Forum: Themes and Templates
In reply to: Page-Specific TemplatesWhat if you want to make the subpages of “123” in this code:
<?php if ( is_page('123') ) { ?>
to use the same style sheet? I have the conditional code working fine, but the subpages revert back to the default. Is there a way to make parent page (“123”) and all the subpages to it use the same style sheet, while the rest of the site uses the default?Forum: Themes and Templates
In reply to: Subpage get parent page slugI am having a similar problem. I used a conditional to change the banner, background, etc. on a couple of pages. However, the subpages to those pages revert back to the default style. In my header.php I posted the following code:
<?php if (is_page('creation')) { ?> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style_creation.css" type="text/css"> <?php }; ?> <?php if (is_page('anarchism')) { ?> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style_anarchism.css" type="text/css"> <?php }; ?>
This works fine for those particular pages. But like I said, the subpages revert to default. I am not quite sure how to get the subpages to follow suit.