pakpenyo
Forum Replies Created
-
Forum: Plugins
In reply to: [Force Regenerate Thumbnails] Resizing failsYes, i have some problem. And it’s fail to regenerate thumbnail…
PHP5.4.45
LiteSpeed V6.8
GD 2.1.0 compatible
imagick 3.1.2Forum: Plugins
In reply to: [mobble] HTML ClassThat’s great! It’s work fine.
Thanks a lot scotts.Forum: Plugins
In reply to: [mobble] HTML ClassIt’s not working scott.
only Array at html class. From wp_debug:
Array to string conversion Missing argument 1 for mobble_body_class()head.php
<html class="no-js <?php echo mobble_body_class(); ?>" <?php language_attributes(); ?>>Forum: Plugins
In reply to: [mobble] HTML ClassForum: Plugins
In reply to: [W3 Total Cache] Feedburner not Working# BEGIN Feed <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_USER_AGENT} !FeedBurner [NC] RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC] RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.domain.com/feedurl [R=302,NC,L] </IfModule>I’m not using Feedsmith since a long time, but 9.2.7/9.2.8 break my feedburner with this htaccess.
And i’m using Feedburner with my own domain (MyBrand Service), but change it to origin feedburner with 9.2.7/9.2.8 nothing help.
Forum: Plugins
In reply to: [W3 Total Cache] Feedburner not WorkingBut now i’m using 9.2.5…. π
Yes, i’m not trying to switch disk basic and i think thats true, switch to disk basic like 9.2.5 is the “temp” solution.
Forum: Plugins
In reply to: [W3 Total Cache] Feedburner not Working@sla NGjI’s, you’re not read my first posts. Disable feed caching on pagecache is not working.
Forum: Plugins
In reply to: [W3 Total Cache] Feedburner not WorkingYes, temporary deactivate the plugins is “dirty solution” π
Now i’m downgrade to 9.2.5 and Feedburner is back. So, this is a bug?
Forum: Fixing WordPress
In reply to: foreach wp_query and get_termsi’ve done trying with this code from this forum but it’s the same, double post.
<?php //for a given post type, return all $tax = 'product'; $terms = get_terms($tax); if ($terms) { foreach ($terms as $term) { $args=array( 'post_type' => 'project', //'$tax' => $tax_term->slug, '$tax' => $tax_term->slug, 'post_status' => 'publish', 'posts_per_page' => 20, 'caller_get_posts'=> -1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { echo 'List of '.$post_type . ' where the taxonomy '. $tax . ' is '. $tax_term->name; while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><a href="<?php echo get_term_link($term->slug, 'product'); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p> <?php endwhile; } wp_reset_query(); } } ?>Thanks
Forum: Fixing WordPress
In reply to: foreach wp_query and get_termsanybody?
Forum: Plugins
In reply to: [Plugin: Audio Player] Automatic PlaySori. Ive found it. Ignore this massage….
Btw, how to disable the time? So the player display only volume and play/pause buttons?
Thanks