Tom Morton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot edit posts/add new posts or pages – JS not working correctlyIt sounds like there is definitely a conflict with javascript (Which you mentioned). Try disabling all plugins. If the menu’s return to normal, start reactivating one by one until it breaks. Whichever you activated before it broke is your issue.
If that doesn’t work, there may be something your theme is loading into the admin that is breaking it as well. Try activating the twentyeleven theme and see if it works. If it does, you’ll need to find the javascript in your theme thats breaking it.
I would use a contact form plugin, like this one, to create the form itself. Then, it looks like the footer area is a widget area (if not, it could be!) and you could use a widget to display the form.
Here are links to the plugins I reference:
http://wordpress.org/extend/plugins/contact-form-7/
http://wordpress.org/extend/plugins/contact-form-7-widget/Forum: Fixing WordPress
In reply to: How to make tab page???Not sure how wordpress.org accomplishes it, but here is a good start for making tabs: http://jqueryui.com/demos/tabs/
Forum: Fixing WordPress
In reply to: Cant access media button and other funcion in pageThere isn’t enough information for us to properly diagnose, but I can take a stab at it. The first thing I would do is deactivate all of the plugins on the site. There is probably something that is conflicting with the way WordPress shows the media uploader.
Once deactivated, test the button to see if it works. If it does, great! Active your plugins one by one, testing the button each time to see if its suddenly “broken”. If you activate “XYZ Plugin” and then your media button is broken, then XYZ Plugin is breaking the site.
If this doesn’t work, change the theme to twentyeleven and try the media button. If it works, then there is an issue with your theme.
Hope this helps!
Forum: Fixing WordPress
In reply to: Ajax and mysql DBWordPress has methods to pull data from the database without the need to query it directly. For example, querying a post: query_posts
That being said, whatever you are trying to show in ajax can still be displayed using these methods. Here are a few links to ajax and WordPress related tutorials/articles. Hope they help!
http://codex.wordpress.org/AJAX
http://www.makeuseof.com/tag/tutorial-ajax-wordpress/
http://wp.smashingmagazine.com/2011/10/18/how-to-use-ajax-in-wordpress/
http://www.garyc40.com/2010/03/5-tips-for-using-ajax-in-wordpress/Forum: Fixing WordPress
In reply to: Missing area admin accessTwo answers:
1. You can drop the following code into the very beginning of wp-config.php just after <?php and then attempt to visit the admin.
update_option(‘siteurl’,’http://yourdomain.com’);
update_option(‘home’,’http://yourdomain.com’);2. You can use PHPMyadmin (or another MySQL management system) and navigate to your wp_options table. There, look for “siteurl” and “home” and correct their url’s (to the correct domain).
Forum: Fixing WordPress
In reply to: Using an include('http://wordpress.org"); link in my siteAs you’ll read from this question/answer (http://stackoverflow.com/questions/3101327/using-includes-cross-domain-that-contain-php-code-failing) this isn’t a good practice.
If you are looking to put sidebar content in place, especially in widget form, why not create a plugin that adds a widget to your site? Then your site admin’s can add the widget to their sidebar and when the plugin is modified, all of their sidebars will change with it.
Forum: Fixing WordPress
In reply to: Why my picture wont shown upIt looks like the file doesn’t exist. I would reupload the file and try it again.
Forum: Fixing WordPress
In reply to: Static blog templateSo you have set up your site with a static homepage and a separate blog page?
You should be able to apply a template to the page you specified the “blog” page. Go to WP_Dashboard > Settings > Reading > and look at the Front Page Displays section.
Whichever page you specified your “Blog” page is the page you want to apply the template.
Hope this helps!
Forum: Plugins
In reply to: [Magic Fields] "Sorry, your nonce did not verify" after latest MF updateHaving the same issue, anyone find out why this is happening?
Forum: Fixing WordPress
In reply to: Weird accountsYou may want to check over at the BBPress Support forums and see if anyone else has had the issue/knows a fix: http://bbpress.org/forums/
Forum: Fixing WordPress
In reply to: Get template part nameMaybe I’m misunderstanding your need. Are you trying to see if the current page is the search page? Or are you on the search page trying to define something with if/else statements?
Forum: Fixing WordPress
In reply to: Google button.Try:
.your-google-plus-button-class{ clear:both; }Forum: Fixing WordPress
In reply to: Weird accountsSounds like spam bots. Do you have any form of captcha on your registration form?
http://wordpress.org/extend/plugins/si-captcha-for-wordpress/ I would take a look at this plugin.
Forum: Fixing WordPress
In reply to: Get template part nameNot tested, but try this:
if ( (is_category('avtodomi')) || (is_page_template('loop1.php')) ) {