finestimaginary
Forum Replies Created
-
I have one other plugin causing a similar blocking issue, WordPress Popular Posts. That one isn’t mission-critical to the sites, but Wordfence is (as my preferred security plugin). Simple answer seems to be a release to fix where this file is being served from!
/wp-admin/admin-ajax.php?action=wordfence_logHuman&hid=0CDB5E96DF38AFEA7304A645B2C6F9FE&r=0.03589733876287937Looks like something running through admin-ajax.php.
admin-ajax.php is also the file that’s being used through the popular post’s plugin and throwing the same issue.
I’ve had a couple of clients email me about it, and I can see from doing the “fetch as google” test on google webmaster tools that a Wordfence file is trying to be accessed from the admin.
My robots.txt disallows /wp-admin/ which I believe is a pretty standard thing!
Yep. Same issue here.
Forum: Fixing WordPress
In reply to: Wp_nav_menu page-item-ID and page_item classesThere’s no code as such, it’s whenever I use the wp_nav_menu function to call a menu.
So the menu was set-up in functions using register_nav_menus, then set-up in the admin and attributed to that menu, then called in the front-end.The “Backward Compatibility with wp_page_menu()” classes are ONLY added to the nav item when you’re on the actual page of that particular nav item.
Same issue here, but with upgrading from 4.1.4 to 4.1.5
ETA:
The fields flash up for a second before being hidden.
ETA (again):
Clearing browser cache fixed my issue!
I’m also having this issue, seems that it’s just counting the current page rather than the full query…
anyone?
Forum: Fixing WordPress
In reply to: 2.7 Issues – No Visual Editor & Other ThingsTHANKGOD!
Been racking my brains trying to find the problem… and it was filezilla all along!
Forum: Fixing WordPress
In reply to: Preview before publish does not work in 2.7I have this problem with 2.7, along with many others. If you save it as a draft and then preview, it seems to work.
Forum: Installing WordPress
In reply to: What I see in FileZilla doesn’t relate to your examples hereThis isn’t a filezilla problem, or a problem at all. It’s just your server set up. When you login to your ftp, which folders do you see?
Forum: Themes and Templates
In reply to: Showing data from child pages in page parentcool, I’m not sure if I need rewind posts? but I’m not sure… maybe i should put it in a one f the temp query things though? Would it affect searchs and the like?
Forum: Themes and Templates
In reply to: Showing data from child pages in page parentis there an easier way to do this query posts?
Forum: Themes and Templates
In reply to: Showing data from child pages in page parentfixed it! Works like a charm now :
<? $pages = $wpdb->get_results(" SELECT * from $wpdb->posts WHERE post_type='page' AND post_parent=$post->ID ORDER BY post_title "); //the above checks the database for posts that are actually pages, it then (I think?) put these into the pages variable, and orders //them by title. foreach($pages as $page) : $profile_image = get_post_meta($page->ID, 'profile_image', $single = true); // this bit is to pull any meta from the child page //in this case it's the custom field with the profile_image key, turning to to the variable profile_image //echo '<h2><a href="' . get_permalink($page->ID) . '" title="' . $page->post_title . '">' . $page->post_title . '</a></h2>'; //this would, if uncommented, show the page title. echo '<p><a href="' . get_permalink($page->ID) . '" title="' . $page->post_title . '"><img src="/wp-content/plugins/fresh-page/files_flutter/' . $profile_image . '" /></a></p>'; // using flutter, so I've pulled the profile image from the page, linked it to the folder that it resides in and linked around it to the actual child page. endforeach; ?>Forum: Themes and Templates
In reply to: Showing data from child pages in page parenthum ok so the images don’t work… it’s just pulling the same meta in from the first page
Forum: Themes and Templates
In reply to: Showing data from child pages in page parentAlrighty, I figured it out 🙂
<? $pages = $wpdb->get_results(" SELECT * from $wpdb->posts WHERE post_type='page' AND post_parent=$post->ID ORDER BY post_title "); //the above checks the database for posts that are actually pages, it then (I think?) put these into the pages variable, and orders //them by title. foreach($pages as $page) : // christ, I don't know php... so I guess this makes teh variable of page act as pages but singularly? $profile_image = get_post_meta($page->ID, 'profile_image', $single = true); // this bit is to pull any meta from the child page //in this case it's the custom field with the profile_image key, turning to to the variable profile image endforeach; foreach($pages as $page) : //echo '<h2><a href="' . get_permalink($page->ID) . '" title="' . $page->post_title . '">' . $page->post_title . '</a></h2>'; //this would, if uncommented, show the page title. echo '<p><a href="' . get_permalink($page->ID) . '" title="' . $page->post_title . '"><img src="/wp-content/plugins/fresh-page/files_flutter/' . $profile_image . '" /></a></p>'; // using flutter, so I've pulled the profile image from the page, linked it to the folder that it resides in and linked around it to the actual child page. endforeach; ?>The code has been pinched from various places, I’m only a beginner in php so I’m quite proud of figuring this out!