RChiiton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Dashboard Page Goes BlankTheme issue.
Forum: Fixing WordPress
In reply to: WP-admin and wp-Login not workingIn my error log it says
[01-Dec-2013 19:52:19] PHP Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 1 in /home1/teamsou1/public_html/wp-includes/class-wp.php on line 195
Forum: Fixing WordPress
In reply to: WP-admin and wp-Login not workingAlso I deleted the plugins folder and was still unable to login.
I love using Yoast, but if no one ever answers support questions then why would people use the plugin. I asked this question over a month ago without any reply. Thank.
Forum: Plugins
In reply to: [Yoast SEO] WordPress SEO Yoast – Duplicate Site TitleOopps pressed send to soon. Changing code to the above made no change in the way the site title appeared.
Forum: Plugins
In reply to: [Yoast SEO] WordPress SEO Yoast – Duplicate Site TitleAs a note. What is appears to be doing is adding the “site title” to the end of the title that you put in the yoast SEO. It only happens on the “Home” page. I am using the dandelion theme from Theme Forest and it happens on every site that I use that theme. I tried changing the title code to just this
<title><?php wp_title(''); ?></title>
Forum: Fixing WordPress
In reply to: Installation Login Failing Permission ErrorWhen I change it to the twenty eleven theme then the testing url goes all white. I tried moving all the plugins to a different folder that did not work.
Forum: Fixing WordPress
In reply to: Featured ImageUnfortunately that is not very helpful.
Looking for specific help on how to get wordpress to use the image that I am uploading and not an image that it is automatically generating during the upload process.
Thanks for the help.
Forum: Fixing WordPress
In reply to: Featured ImageWhere? I’m assuming in the header.php file. Did that ~ no change.
Forum: Fixing WordPress
In reply to: Moved Site – No PagesThe template pages all show up under the dropdown list. It’s the actual pages that did not transfer over into wordpress. The pages are stored in the database correct? I can see them in myphpadmin but I can not figure out how to export that table and import ir – I tried it didn’t work – and if that is truely the way to go about it.
Forum: Themes and Templates
In reply to: Theme Installation Help – No Pages/PluginsAs an update…. I realized I didn’t upload the plugins file I just uploaded the theme so when doing that all my plugins showup. All my template pages are in my dropdown list. However, I have 28 pages that are not in my “live” site dashboard.
Thanks
Forum: Themes and Templates
In reply to: Custom Page HelpGot it…. had to change the file path in the .htaccess file.
Appreciate all your help. My brain was about to explode.
Forum: Themes and Templates
In reply to: Custom Page HelpI’ve used this custom theme before I don’t usually have additional pages. But I just tested another site using it and I can see the page.
I’ve tried switching themes and I still do not see the pages.
The only code that I think I changed other than some css is I added
this to the function.php file
add_action(‘init’, ‘register_custom_menu’);
function register_custom_menu() {
register_nav_menu(‘custom_menu’, __(‘Custom Menu’));
}and this to the header.php file
<?php wp_nav_menu(array(‘menu’ => ‘custom_menu’)); ?>
But it seems like it is outside the themes otherwise I would think the page would work if i changed themes.
Forum: Themes and Templates
In reply to: Custom Page HelpThis is what I put in the .htaccess file, copied it from a site that is functioning properly
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Themes and Templates
In reply to: Custom Page Helpyes, it is in exactly the same place as my other websites.
winterssmilemakeover/site
Then you have all the files…
.htaccess
index.php
wp-admin
wp-contentetc.. etc.
btw….I really appreciate your help because I am stumped and trying to make this site live.