jkrayer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Social Icons Will Not Go AwayWhat theme are you using?
Forum: Fixing WordPress
In reply to: Social Icons Will Not Go AwayAre you certain that’s not baked into your theme. According to my reading of the plugin it should disable itself on a mobile but I can see your social icons on my phone.
I also see that the plugin’s style sheet is not in the <head> section of your page so it appears to me the plugin is not loading.
Forum: Fixing WordPress
In reply to: Social Icons Will Not Go AwayHave you confirmed that the plugin files are deleted from your server?
Forum: Fixing WordPress
In reply to: Social Icons Will Not Go AwayGo into your database (I’m assuming you have php My Admin) and in the wp_options table look for an option called ‘twitter_facebook_share’ and delete it.
Forum: Fixing WordPress
In reply to: Locked out of admin/dashboardDid you run the auto update from the admin? I find that sometimes fails. I’d recommend copy the new version files up via ftp.
Also thinking you’re going to want to check wp-content/upgrade and confirm that it is empty.
Forum: Fixing WordPress
In reply to: Social Icons Will Not Go AwayWhat is the plugin?
Forum: Fixing WordPress
In reply to: What's wrong with my css code?Safari seems to get everything one one line when div.menu ul {width: 650px; }
Forum: Fixing WordPress
In reply to: What's wrong with my css code?I just looked at your site and the nav appears to be correct.
Forum: Fixing WordPress
In reply to: What's wrong with my css code?It looks to me like you need to increase your width to 660px and remove the left padding of 80px.
Forum: Fixing WordPress
In reply to: Problems with prev/next links on custom pageTry adding the paged parameter to your query.
http://codex.ww.wp.xz.cn/Pagination#Adding_the_.22paged.22_parameter_to_a_query
Generally I’d also recommend using WP_Query instead of query_posts.
Forum: Fixing WordPress
In reply to: Problems with prev/next links on custom pageIs this a “page” as wordpress defines page, or is it category.php, archive.php, single.php?
Is it a category? For instance next_posts_link() and previous_posts_link() are okay to use on a category type page to get the next/previous x amount of posts.
But if it’s a single blog post with a link to the previous and next posts then you should be using next_post_link and previous_post_link.
Forum: Fixing WordPress
In reply to: Custom Post Type not honoring order_byIt seems you’ve seen the culprit: “wp_mh_posts.post_date” that is ordering by post_date which is not your desired field.
Just re-read the above in light of that and I think ‘order_by’ => ‘menu_order’ should be ‘orderby’ => ‘menu_order’,
Forum: Fixing WordPress
In reply to: Custom Post Type not honoring order_by10-4. The next step I’d take is peeking into the DB, hopefully you have PHP My Admin, and make sure the ‘menu_order’ values are writing to the db the first place and that they are what you expect them to be.
If that’s a go the next step for me would be to echo the result of the query into the browser and confirm the “order_by” field is part of the result.
echo "<pre>"; print_r($myquery); echo "</pre>";Although now that I think of it if you’re using ‘capability_type’ => ‘post’ you shouldn’t be getting the dialog to enter an order number in the edit screen in the first place.
Forum: Fixing WordPress
In reply to: Custom Post Type not honoring order_byHave you tried:
$myquery = new WP_Query( array(
‘posts_per_page’ => 100,
‘post_type’ => ‘festival’,
‘order_by’ => ‘menu_order’,
‘order’ => ‘ASC’,
));Then Writing your loop as:
if ( $myquery->have_posts() ) {
while ( $myquery->have_posts() ) {
$myquery->the_post();I know this may be elementary but I’ve never had an issue with WP_Query.
Forum: Fixing WordPress
In reply to: Custom Post Type not honoring order_byI think your problem is ‘capability_type’ => ‘post’
I believe “Post” Does not use “menu_order.” You would need ‘capability_type’ => ‘page’ in order to use “menu_order.”
BUT how I read the WP_Query Documentation is that it should work. So possibly you should start by using WP_QUERY instead of “query_posts.”