Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating a seperate blog withing my siteYou can either create new categories in the same install of WordPress, or install another wordpress install in a sub folder eg, /blog and link to it from the first.
The first one is better as keeps the theme styling and database resource.
I did something like this a few years ago, had to pass a variable from a post onto the end of a url.
If memory serves, I did this by adding a custom field to the post, say ‘order_no’. This gets called in the template where you have a button or link which takes you to the other application/site, use something like:
<a class="buttonlink" href="http://aamorders.curreyadkins.com/aam1000.cgi?PAGE=3&ORDER=/<?php getCustomField('order_no'); ?>">Order Item Here</a>You need to use getCustomField inside the loop though.
You can also wrap it in a ‘If custom field exists … show it, else don’t show it’ etc.
See more info here: http://codex.wordpress.org/Custom_Fields
Phil
Forum: Fixing WordPress
In reply to: Home link going to wrong pageNo time wasted here – we’re all learning new things.
Glad it’s sorted for you.
Weird, CSS always works for me with CF7.
Try the important rule as well..
eg:
.someclass { height: 10px !important; }Forum: Fixing WordPress
In reply to: Home link going to wrong pageThe code above is the one you want.
I’d check 2 places first:
1. Appearance -> Menus – and check that the home menu item is correct there.
2. Settings -> General – and check that WordPress Address (URL) and Site URL addresses are correct.
Out of the two htaccess files, if you are looking for the site to sit on the domain root, the first snippet is the one you want.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: cannot clear sample text/logo!Yeah I see it.
You will probably have a separate stylesheet (.css) for mobile detection. You should be able to swap the image being used with your own.
Forum: Fixing WordPress
In reply to: Rollover imagesNo probs.
Forum: Fixing WordPress
In reply to: Rollover imagesYou see this:
(optional values you can add: Theme URI, Author URI, Version) */Remove this */ and move it up to just after
/* Theme Name: Jansweijer Theme Description: Author: admin Template: reveal */ <-- place it hereThat */ marks the end of comments, so your CSS code is currently commented out. Doing the above should get it working.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: Rollover imagesLooks ok to me, image exists etc.
Can you provide link to the page in question.
Forum: Fixing WordPress
In reply to: Contact Form 7 – with different receiverYou can add multiple recipients or copies of the form being sent elsewhere from the form editor.
Underneath where you add the tags in the emailed form, underneath is a section called Mail(2). Adding the same details as above but with a different email address will send a copy to that 2nd recipient as well.
Forum: Fixing WordPress
In reply to: problem with Featured ImageCheck you have a wp-content/uploads folder and that the permissions are correctly set on it.
Is there an error you’re getting during the upload?
Does your theme use featured images? (Not all do)
Forum: Fixing WordPress
In reply to: can not log inCan you log into the database via PHPMyAdmin?
If so, you can view the admin table and email, check they are both correct and if so, click the ‘forgot your password’ button on the login screen to reset the password.
If the email in the database is yours, you can reset your password from the email it sends you.
Forum: Fixing WordPress
In reply to: Links being stripped out of updatesYou mean links like ‘Law, Legislation and Regulation’ ?
They work like links to me, they are just styled to not look like links. Maybe add an underline to them to ensure people think they are links…
Forum: Fixing WordPress
In reply to: Page URLWhy not forward your domain to point to example.com/my-page?
Forum: Fixing WordPress
In reply to: How to restore the theme setting for OxygenWeird colour? You mean a border?
You can fix a lot of styling with CSS rather than starting from the beginning.
Please provide a link of the problem and you never know, we may just be able to fix it from that alone.