Equal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Top Admin Bar display issuesDoes your theme has
wp_footerbefore the closinghtmltag infooter.php? This has sometimes caused problems as the admin bar uses this hook to load.Forum: Fixing WordPress
In reply to: Having Trouble Getting Rid of Gravatars in CommentsI wonder if they are cached in Opera and IE. Try clearing the cache in those browsers to see if that fixes the issue.
In order to add them as a gallery to a post they need to be attached to that post. The easiest way of doing this is to upload them using the “Add Image” button just above the post editor on the post where you want the gallery. As you will have uploaded them in that post they will then be attached and show in the gallery tab at the top.
Forum: Fixing WordPress
In reply to: Cannot access dashboard page after loginThis could be a problem with permissions on the wp-admin folder on the server. Try checking that your permissions for this folder are set to 755
I have had this problem in the past. The reason why the links don’t work (domainname.com/glossary/<item>) is probably because WordPress is looking for sub pages of your glossary page but there aren’t any and therefore it gives a 404.
What happens if you change
'rewrite' => array('slug'=>'glossary'),for:
'rewrite' => array('slug'=>'glossary-item/'),If that works then I guess it confirms what I was saying.
Forum: Fixing WordPress
In reply to: wordpess questionAre you talking here about the “About This Topic” stats that you see to the right of this entry?
Forum: Fixing WordPress
In reply to: Adding Border toi bodyTry changing the border colour of the #wrap in the style.css of your theme. It is currently 10px solid and white. Change to another colour and you will see the difference.
Forum: Themes and Templates
In reply to: Change wp_list_pages to wp_nav_menuFirst you need to activate the theme to use the nav menu in WordPress. To do this add the following to your themes
functions.phpfile:// sets up the use of wordpress menus - one of them. function pj_menu() { register_nav_menu( 'navbar-menu', __( 'Top Menu' ) ); }Then replace the code you have pasted above with the following:
<?php wp_nav_menu( array( 'container_id' => 'navbar', 'theme_location' => 'navbar-menu', 'menu_id' => 'nav' ) ); ?>Forum: Themes and Templates
In reply to: Custom HeaderTry taking a look here:
http://codex.ww.wp.xz.cn/Function_Reference/add_custom_image_header
Forum: Hacks
In reply to: Controlling Your Own WP Custom FieldsI am using the above method to add meta boxes to the write post and page screens and it is working a treat. However I would like to add a new case select for giving a list of all WordPress users.
This way whichever WordPress user is selected from the list will be stored as a custom field for that post or page.
Could anyone point me in the right direction of how I might go about this? I have tried looking at wp_dropdown_users() which kind of does what I want but I cannot get this to then save as the custom field.
Any help would be much appreciated and thanks in advance,
Forum: Plugins
In reply to: Search Custom Fields in Dashboard Post SearchIt seems to be something to do with the post_join filter because if I comment out that line inside the post_searches_meta function it displays correctly but doesn’t actually search custom fields then!
Therefore I think it must be something to do with the join function towards the bottom. I am no MySQL expert though so maybe someone could help.
Thanks again in advance.
Forum: Fixing WordPress
In reply to: Dashboard & Posts Problem/ErrorI had this when I upgraded and it was something my host fixed for me. I think for some reason the server was stopping the javascript from loading in the post editor screen which meant the visual tab was not working.
I would also suggest that it is something to do with your host regarding your RSS widgets not loading on the dashboard. Looks to me as though something is blocking the feeds from coming through.
Speak to your host about these issues and I am sure they will be able to help.
Forum: Themes and Templates
In reply to: Problem displaying fontsYour page is looking for these two CSS files:
http://graphicmes.com/wordpress/wp-content/themes/graphicmes_com/font/sans/sans.css
http://graphicmes.com/wordpress/wp-content/themes/graphicmes_com/font/slab/slab.css
When click they do not load and therefore are not in this location. Are you certain they are on the server?
Forum: Themes and Templates
In reply to: Problem displaying fontsCould you provide a link to the page that is causing the problem?
Forum: Themes and Templates
In reply to: one-column pageIf you could provide a link to the issue as well as the theme you are using etc. this may help in providing a solution.