jonnyplow
Forum Replies Created
-
Forum: Plugins
In reply to: [FT Calendar] Events that span multiple days not showing correctlyI too have this issue. See how it’s been two months since you’ve asked I wonder if it’s built to display it that way or not. I would hope so or it’s pointless to have that option.
Hey FT guys, any help?
Forum: Plugins
In reply to: [Meta Box] Breaks sitemy bad, had my own errors, works fine now.
Forum: Plugins
In reply to: [Meta Box] Breaks sitemy bad, had my own errors, works fine now.
Forum: Plugins
In reply to: Pagination problemmaybe try adding this before $temp.
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
———-edit—– \/
try doing something like this before if has posts:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('orderby=date&showposts=16&paged=' . $paged); ?>
Forum: Fixing WordPress
In reply to: Featured Image not working in 3.2.1nothing is working. i think this must be a network site issue…hmm.
Forum: Fixing WordPress
In reply to: Featured Image not working in 3.2.1it’s not even listed as an option there either.
Forum: Fixing WordPress
In reply to: Featured Image box has gone in version 3.2.1can you explain exactly how you did it?
Forum: Plugins
In reply to: List sub categories, and associated postsHow can I do this for custom post type taxonomies?
Forum: Plugins
In reply to: Reorder posts via front-end and save to databasenevermind, this post does it here
Forum: Fixing WordPress
In reply to: Fix Auto Draft Title, use custom field insteadThis stuff was originally posted here.
But I just tweaked it to work for 1 custom field to replace the title. It works perfect (thus far)!!!
add_filter('title_save_pre', 'save_title'); function save_title($my_post_title) { if ($_POST['post_type'] == 'post_type_name') : $new_title = $_POST['custom_field_name']; $my_post_title = $new_title; endif; return $my_post_title; } add_filter('name_save_pre', 'save_name'); function save_name($my_post_name) { if ($_POST['post_type'] == 'post_type_name') : $new_name = $_POST['custom_field_name']; $my_post_name = $new_name; endif; return $my_post_name; }
Forum: Fixing WordPress
In reply to: If function exists wp_pagenavi but not used/shownThank Rev, I see what you’re saying. But I’m trying to make <div class=”somestyledclass”> simply not show when wp_pagenavi doesn’t appear on the page, even when the function still exists.
Forum: Everything else WordPress
In reply to: mojo-themes shopping cartgetcha ?? ok thanks.
Forum: Fixing WordPress
In reply to: load image non-sequentially (jquery)aah this seems to be the trick if anyone else needs this. https://jsfiddle.net/MBV2X/87/
Forum: Fixing WordPress
In reply to: Strikethrough is not saved when I save a page.I don’t get why they would remove this feature. It’s pretty useful. I hope they correct this. I’ve noticed it not working for a few versions now.
Forum: Themes and Templates
In reply to: Ajax Comments without pluginI should also mention that I have threaded comments.