Bloke
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Not gettting option to updateI deactivated WPEC, deleted the folder, uploaded the 3.8.13 new files and reactivated. Then it prompted me to update to 3.8.13.3 and make updates to the database.
Forum: Fixing WordPress
In reply to: Twenty Eleven – Tag LineSorry about that. About line 75
<h2 id="site-description"><?php bloginfo( 'description' ); ?><br>Affiliated to....</h2>Forum: Fixing WordPress
In reply to: Twenty Eleven – Tag LineIt wants to put your entire title on one line. So shorten your site title in the admin. Then in the code of the header right before the </title>
Make it look like this and put at br tag before affiliated. Its removing it when I post:
?>Affiliated to....</title>Forum: Fixing WordPress
In reply to: how to hide the page title but not the sub-pageWhere it says “Hello World”? Try
.post-1.h2.post-title.entry-title > aForum: Fixing WordPress
In reply to: Twenty Eleven – Tag LineLooks like you got it fixed.
Forum: Fixing WordPress
In reply to: Add Dynamic/Verification Question to contact.php pageCreate a text box on your form and label it “question” or whatever you choose. And put the correct answer where it says ‘answer here’. Try this after the check for the email.
//Check to make sure sure verification question is answered and correct if(trim($_POST['question']) === '') { $hasError = true; } else if (trim($_POST['question']) != 'answer here') { $hasError = true; } else { $email = trim($_POST['question']); }Forum: Fixing WordPress
In reply to: Can't upload image filesI think you need to make folder 2014/01 writable.
Forum: Fixing WordPress
In reply to: Accessing WordPress site backup not created locallyDo you have all the folders, theme and database sql file?
Forum: Fixing WordPress
In reply to: Twenty Eleven – Tag LineDo you mean the text in the header? You have two lines on top. I would create a child theme and enter the text in header.php
Forum: Fixing WordPress
In reply to: how to hide the page title but not the sub-pageAre you doing this with just CSS or with PHP inside WordPress? Can you post a link to your site?
So is this correct? Page 2, Page 3 …won’t get indexed? And this is how it should work?
Forum: Fixing WordPress
In reply to: Add Dynamic/Verification Question to contact.php pageYou would look for the code where the form checks if the fields are completed. Then create another IF statement with the new value. Then if all fields are complete and for example sky = blue then send. But I need to see the actual code that sends your form.
Forum: Fixing WordPress
In reply to: Displaying previous posts and newer posts linkskeesiemeijer thanks. That was the issue and now it works. Looking at that link I referenced above, is it because they used $wp_query , its not considered a custom query? In the link you supplied to the codex they don’t state it needs a second parameter to work.
Forum: Fixing WordPress
In reply to: Displaying previous posts and newer posts linksOn a custom template.
Forum: Fixing WordPress
In reply to: Displaying previous posts and newer posts linksIt works. What specific PHP errors are there? What specific syntax error? I got it straight from here so is their code wrong too? http://digwp.com/2013/01/display-blog-posts-on-page-with-navigation/
Changing all the references of “wp-query” to any other name should not keep it from working. I should be able to use any name for that.