Tim Priebe
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Filter bugFound it. Apparently one of my team bought it 3 years ago. Thanks for the quick, super helpful support!
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Filter bugAwesome, that seems to have worked. Thank you!
How do I get my login info for the paid version forum?
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Filter bugNope, I stopped as soon as I posted here. Looks like you’ve uncovered another bug, or another symptom of the same bug.
I just clicked on the link you sent in your message, and hundreds of products showed up that are outside of the 2411-2415 range. Click on a few of the products and check out their Total Square Footage.
I can also see that the filter slider in that link is showing that it’s at the very bottom of the range, when in fact it’s not at the bottom of the range. Moving the slider a bit will show that.
Forum: Plugins
In reply to: [WP Facebook Open Graph protocol] Full image size?The original is, but the downsized Large image size is smaller than my default image on the plugin settings page.
When I checked the HTML, it looked like the Large image was being used as the open graph image, rather than the full size version.
The behavior I’ve seen on Facebook is that they always default to the largest image provided by OG tags. Which, in my case, is the default image.
In testing, I briefly switched to JetPack’s OG setup. In examining the HTML again, they used the full size image rather than the large version. But they don’t provide a default thumbnail like your plugin does.
Does that all make sense?
Forum: Plugins
In reply to: [Watu Quiz] Unknown column 'show_answers' in 'field list'1. That worked perfectly!
2. That’s absolutely the quickest reply I’ve ever received on any plugin ever, premium or free. Thanks for the fantastic support!
Forum: Plugins
In reply to: Run a searchable PDF file serverFound this plugin, but haven’t tried it yet:
https://www.ads-software.com/extend/plugins/search-everything/
Found this online today, then saw your post. Hopefully this will help! It will also show custom taxonomies if you change
$showTaxonomies = 0
to
$showTaxonomies = 1
// Add custom taxonomies and custom post types counts to dashboard add_action( 'right_now_content_table_end', 'my_add_counts_to_dashboard' ); function my_add_counts_to_dashboard() { $showTaxonomies = 0; // Custom taxonomies counts if ($showTaxonomies) { $taxonomies = get_taxonomies( array( '_builtin' => false ), 'objects' ); foreach ( $taxonomies as $taxonomy ) { $num_terms = wp_count_terms( $taxonomy->name ); $num = number_format_i18n( $num_terms ); $text = _n( $taxonomy->labels->singular_name, $taxonomy->labels->name, $num_terms ); $associated_post_type = $taxonomy->object_type; if ( current_user_can( 'manage_categories' ) ) { $num = '<a href="edit-tags.php?taxonomy=' . $taxonomy->name . '&post_type=' . $associated_post_type[0] . '">' . $num . '</a>'; $text = '<a href="edit-tags.php?taxonomy=' . $taxonomy->name . '&post_type=' . $associated_post_type[0] . '">' . $text . '</a>'; } echo '<td class="first b b-' . $taxonomy->name . 's">' . $num . '</td>'; echo '<td class="t ' . $taxonomy->name . 's">' . $text . '</td>'; echo '</tr><tr>'; } } // Custom post types counts $post_types = get_post_types( array( '_builtin' => false ), 'objects' ); foreach ( $post_types as $post_type ) { $num_posts = wp_count_posts( $post_type->name ); $num = number_format_i18n( $num_posts->publish ); $text = _n( $post_type->labels->singular_name, $post_type->labels->name, $num_posts->publish ); if ( current_user_can( 'edit_posts' ) ) { $num = '<a href="edit.php?post_type=' . $post_type->name . '">' . $num . '</a>'; $text = '<a href="edit.php?post_type=' . $post_type->name . '">' . $text . '</a>'; } echo '<td class="first b b-' . $post_type->name . 's">' . $num . '</td>'; echo '<td class="t ' . $post_type->name . 's">' . $text . '</td>'; echo '</tr>'; if ( $num_posts->pending > 0 ) { $num = number_format_i18n( $num_posts->pending ); $text = _n( $post_type->labels->singular_name . ' pending', $post_type->labels->name . ' pending', $num_posts->pending ); if ( current_user_can( 'edit_posts' ) ) { $num = '<a href="edit.php?post_status=pending&post_type=' . $post_type->name . '">' . $num . '</a>'; $text = '<a href="edit.php?post_status=pending&post_type=' . $post_type->name . '">' . $text . '</a>'; } echo '<td class="first b b-' . $post_type->name . 's">' . $num . '</td>'; echo '<td class="t ' . $post_type->name . 's">' . $text . '</td>'; echo '</tr>'; } } }
Forum: Fixing WordPress
In reply to: Navigation linksAt this point, I would do a brute force test to determine which template file it’s using, since it doesn’t seem to be using index.php when it’s on other files.
For each file…
- Add .bkp to the end of the file name
- Refresh your page two to see if the pagination links appear
- Remove .bkp from the end of the file name
Do that until you know which file it is.
Forum: Fixing WordPress
In reply to: Navigation linksUpon initial glance, everything looks correct. Do you have a link to the functioning website?
Forum: Fixing WordPress
In reply to: Navigation linksOn every site I’ve ever set up, it’s still index.php. Are you using a custom built theme, or one I could download and check out?
Forum: Fixing WordPress
In reply to: YouTube Embedding affecting Search textbox stylingSure enough, that fixed it! I recently enabled ob_gzhandler and ob_tidyhandler on all our themes, and apparently it stripped out the Doctype Declaration. Very odd! I hadn’t noticed that until you pointed it out.
I moved it to before those overflow buffers kicked in, and it’s now showing up.
Thanks!
Forum: Fixing WordPress
In reply to: Sidebar only show up in CategoriesSorry, I’m not seeing the list. Also, I don’t see any of your messages when I actually visit the topic’s page. Not sure what’s going on.
Forum: Fixing WordPress
In reply to: Sidebar only show up in CategoriesCould you post a list of the files you actually have in your theme folder?
Forum: Fixing WordPress
In reply to: Sidebar only show up in CategoriesHmm, there’s no category.php? What about sidebar-php?
Forum: Fixing WordPress
In reply to: "Archives" displays only the last 5 months. How to display all?Whoops, that’s what I get for going off memory. You actually leave limit off totally to get unlimited. ie:
<?php wp_get_archives('type=monthly'); ?>