Cory Gibbons
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] AVSWanted to mention that billing data didn’t get sent with Checkout for me either with 3.0.2 on WooCommerce 2.6.0
Disabling Checkout and using the inline form sent billing details as expected. Any chance of getting billing data sent with Checkout for AVS purposes?
Forum: Fixing WordPress
In reply to: unable to log in to WP-AdminNo, you need to the information provided by your hosting company.
What is the URL of your WordPress site?
Forum: Fixing WordPress
In reply to: admin-ajax 404 errorI think mod_security is your problem.
Try deleting the entire file and letting WordPress generate it again. See if that fixes it.Forum: Fixing WordPress
In reply to: two separate domains, one for blog and one for wp-adminI’m sure it’s possible, but it’s definitely not practical.
Forum: Fixing WordPress
In reply to: WordPress Newbie help!!!Do you have a specific question?
Otherwise you can get started by giving this a read: http://codex.ww.wp.xz.cn/Getting_Started_with_WordPress
Forum: Fixing WordPress
In reply to: How to change page URL path?Give this a read, might have a solution for you: http://betterwp.net/wordpress-create-fake-pages/
Otherwise the quickest solution might just be to create an actual testimonials page that is a parent and redirect it to ‘philip-becker’
Forum: Fixing WordPress
In reply to: unable to log in to WP-AdminAh okay.
There is a very good chance you’re using WordPress.com and not WordPress.orgThere is difference and you can read about it here: http://en.support.wordpress.com/com-vs-org/
If you are in fact using WordPress.com you’ll have better luck with support here: http://en.forums.wordpress.com/
Forum: Fixing WordPress
In reply to: admin-ajax 404 errorShot in the dark but try deleting your .htaccess file, there might be something strange going on with it.
Otherwise it may be a problem with your host. Who are you hosting with?
Forum: Fixing WordPress
In reply to: unable to log in to WP-AdminHow did you install WordPress on your host originally?
Forum: Fixing WordPress
In reply to: Stripping out html from Editor using a featured cat for home page.You need to change
<?php the_excerpt(); ?>to
<?php the_content(); ?>Forum: Fixing WordPress
In reply to: unable to log in to WP-AdminThe simplest way for you to deactivate your plugins is by logging in to your host via FTP , navigating to your WordPress installation then
wp-content/plugins/and renaming each folder inside (I like to append a number to the end). This will disable them for the time being.Try to log in again after doing that.
Forum: Installing WordPress
In reply to: New domain registrationIf you registered your domain with WP I assume you’re use the WordPress.com hosted solution rather than self hosting with ww.wp.xz.cn. In which case you’ll have more luck posting in the WordPress.com forums.
Domains can take up to 48 hours to propagate, so that may also be the issue.
You may also find some answers here: http://en.support.wordpress.com/domains/
Forum: Fixing WordPress
In reply to: Change the permalink of custom post typesYour problem is you assign
rewritetofalse.
It needs to betrueAt the very least remove
rewritealtogether and it will default to true and use the the$post_typeas the slug.You also have the option to change the slug using something like:
$args = array( 'rewrite' => array( 'slug' => 'pick-a-slug' ) );See the rewrite section in http://codex.ww.wp.xz.cn/Function_Reference/register_post_type for more options.
Forum: Fixing WordPress
In reply to: How can i make my site live?Are you building the site while hosted on BlueHost? If so it’s probably already live.
If you’re developing locally you’ll need to upload everything to BlueHost.
See the following for some guidance:
http://codex.ww.wp.xz.cn/Installing_WordPress#Moving_an_Existing_WordPress_BlogForum: Fixing WordPress
In reply to: WordPress EditorIs it working any any browser? Do you have any plugins active?
Try disabling all plugins and reverting to the default theme. Then you can you find out if it’s a plugin or theme issue.There is a good chance it’s being disabled somewhere. Also make sure in your user profile you don’t have
Disable the visual editor when writingselected.