Martin Robbins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Accounts with CC informationAre you really sure you want to save and store peoples’ credit card info on your server? Have you investigated and considered the legal and liability ramifications?
Forum: Fixing WordPress
In reply to: Different Languageshttps://wordpress.org/plugins/polylang/ would be a good place to start toward the functionality you describe
I believe siteorigin-panels is a plugin not a theme.
Forum: Fixing WordPress
In reply to: comments on posts on dashboardhttp://codex.wordpress.org/Function_Reference/comments_template
Basically it says put the following code into you theme’s single.php file:
<?php comments_template(); ?>Usually it goes right after
<?php the_content(); ?>Good Luck!
If it were me, I would make a second WordPress, propably in a subdomain, and use theme P2. That keeps the team communication totally separate from the public facing website. That’s how they do it at WordPress.com … And they are the folks who authored theme P2.
Forum: Fixing WordPress
In reply to: comments on posts on dashboardYes,
It means
- the discussion is not set up properly for that post or
- global discussion not set properly under settings>discussion or
- Your theme doesn’t have provision for commenting and you would have to enable somehow
Have you ever seen any comment box on the front end? What theme do you use?
Forum: Fixing WordPress
In reply to: comments on posts on dashboardOK Can you load a single-post view of any post and comment there?
Forum: Fixing WordPress
In reply to: comments on posts on dashboardWhat happens when you click a post title on that page?
Forum: Fixing WordPress
In reply to: comments on posts on dashboardDon’t need to enable the discussion on that page … it’s going to be a place-holder page for all your posts so the posts will show up there and everyone with access can comment on the posts (not the page)
Check under settings > reading
A) Is the Front Page configured as your Home Page?
B) Is anything configured for the Posts Page?
If A is YES and B is NO, make your new page the Posts Page
Forum: Fixing WordPress
In reply to: Blank Page on loadI would suggest rebuild your /wp-config.php … Rename it to save and take it out of play. Copy /wp-config-sample.php to /wp-config.php … fill in the 3 or 4 database fields near the top.
Also make sure your functions.php is reverted and has no white space following the closing php tag
Forum: Fixing WordPress
In reply to: WordPress addes a "-2" at then end of some page url'sWhat about posts in the trash with the duplicated name?
Another possibility is if you use plugin polylang and you have the same name on a post in another language.
What happens when you visit the url WITHOUT the -2 in the url?
Forum: Fixing WordPress
In reply to: Blank Page on loadThe “Site Address (URL)” setting is the address you want people to type in their browser to reach your WordPress blog.
The “WordPress Address (URL)” setting is the address where your WordPress core files reside.from the reference: http://codex.wordpress.org/Changing_The_Site_URL
Forum: Hacks
In reply to: What's wrong with this conditional statementOn first look I believe is_single not a valid argument for get_post_type
Try use instead:
<?php is_singular( $post_types ); ?>Forum: Fixing WordPress
In reply to: Blank Page on loadWarning: Cannot modify header information – headers already sent by (output started at /homepages/21/d356060130/htdocs/wp-includes/functions.php:1) in /homepages/21/d356060130/htdocs/wp-includes/pluggable.php on line 1178
Same one you see?
What all folders present in the / or public_html or whatever it’s named by 1n1? Is present wp-config.php? Is present any contents of /wp-content/ like uploads, plugins, themes?
Forum: Fixing WordPress
In reply to: Importing of old wordpress.com siteAnd no error messages when you did the export? and the import? What about completion confirmations? Any on either step?
Forum: Fixing WordPress
In reply to: Blank Page on loadFor the new site, what are the settings for Site Address (URL) and WordPress Address (URL)?
For the old site, same question? If you can’t login to dashboard, read them via phpMyAdmin … from the options table, fields siteurl and home?