Sam Scholfield
Forum Replies Created
-
Forum: Your WordPress
In reply to: Feedback requestYes I have been looking into that, mind me asking what you would suggest?
Many thanks for the feedback!
Forum: Plugins
In reply to: [FormBuilder] [Plugin: FormBuilder] Multi checkboxes ?Yep and me!
Forum: Themes and Templates
In reply to: Making unrelated page highlight a navigation itemAny ideas?
Forum: Themes and Templates
In reply to: Theme for coding siteMaybe you should consider a plugin such as:
http://wordpress.org/extend/plugins/codecolorer/screenshots/
Also worth having a look at other snippet plugins that are out there
Forum: Fixing WordPress
In reply to: can't publish my post link on my facebook wallYou should be able to post any URL onto Facebook, so the error is more likely at their end. It does seem odd though. I would recommend just trying again a bit later.
Forum: Fixing WordPress
In reply to: CSS change makes no effectI’m assuming you don’t have much CSS knowledge here, but you will need to change the CSS found in style.css
The code will be something like:
1)
#header img {
margin: 0 auto;
}2)
#description {
display: none;
}3)
#navigation {
display: none;
}4)
#post {
border: 1px solid black;
}5)
#wrapper {
margin: 0 auto;
}6)
#wrapper {
width: 1000px;
}7)
#search {
display: none;
}But you will need to identify what the id’s (# tags) or classes (. tags) are by looking in the HTML.
Forum: Fixing WordPress
In reply to: get_post_meta on homepageesmi there is an ‘i’ missing from the link:
Forum: Fixing WordPress
In reply to: get_post_meta on homepageIs your homepage a page?
If so, try using is_page(‘home’) instead of is_home().
Forum: Themes and Templates
In reply to: Custom loop using a meta_value that is an arrayI changed the way it worked and put each of the array items into their own custom field.
The $args are now:
$args = array( 'post_type' => $type, 'orderby' => 'rand', 'meta_key' => 'person_advisor', 'meta_value' => true ); } $loop = new WP_Query($args);Thanks anyway
Forum: Hacks
In reply to: Featured images for post types without editor can't be used by other typesI have also had this problem.
Similarly, If you have a custom fields plugin that allows you to upload files or images, you won’t be able to unless your custom post type supports ‘editor’.
Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] [Plugin: WP Page Widget] Not workingI would say it’s a plugin issue. However this is based on me being able to find other people leaving posts about a similar issue.
Suggested changes that might make it easier to use:
1. Once a widget is added to the sidebar, automatically save it, don’t rely on people having to press save on each widget.
2. Make the ‘Customize’ radio option more obvious, from a UI point of view, it is easily missed.Regards,
ScoeForum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] [Plugin: WP Page Widget] Not workingHi,
Yes I did, and it was the same issue, however since it started working, I haven’t had any problems. I don’t know what caused or fixed the issue.
Regards
I had a similar problem, I changed the search form to look different, and it then stopped using the search.php file.
If you have a similar problem, check your searchform.php file and make sure that the search inputs name is “s”. Don’t rename this to search or something else.
Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] [Plugin: WP Page Widget] Not workingOk it seems to be working now…
It seems as if the plugin is extremely picky. You must click save on each added widget then press update, however this still seems to be tempermental.
Forum: Fixing WordPress
In reply to: How do I remove "nofollow" from a single link on a page?Hi,
Have a look at the codex and follow some of the suggestions on there.