Francis Rosário
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Is this site a wordpress site?It’s a “original” site, without a third-party CMS.
Forum: Developing with WordPress
In reply to: Pagination Taxonomy TermsTry this code.
<?php //list terms in a given taxonomy using wp_list_categories(also useful as a widget) $args = array( 'taxonomy' => 'type', 'term_args' => array( 'orderby' => 'name', 'title_li' => '', 'hide_empty' => 0, 'parent' => 0, ), 'posts_per_page' => '50', 'paged' => $paged ); ?> <?php $terms = apply_filters( 'taxonomy-images-get-terms', '', $args ); if ( ! empty( $terms ) ): ?> <?php foreach( (array) $terms as $term ): ?> <ul class="category"> <li class="thumb"><a href="<?php echo esc_url( get_term_link( $term, $term->taxonomy ) ); ?>"><?php echo wp_get_attachment_image( $term->image_id, 'full' )?></a></li> <li><a href="<?php bloginfo('url') ?><?php echo '/'.$term->taxonomy.'/'.$term->slug ?>"><?php echo $term->name; ?></a></li> </ul> <?php endforeach; ?> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Error 500 after upgradingThis probaly is a .htaccess problem.
Please paste here the content of your file.
Forum: Plugins
In reply to: [W3 Total Cache] How To: Revert to the last version of W3TCAnd the bug in servers running Nginx?
In my case i see many Error 500 menssages after update.
Forum: Fixing WordPress
In reply to: new user registrant doesnt get email with passwordSame problem here.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] W3TC conflict with Disqus?Hi.
Try disable “Line break removal” under JavaScript Minify settings of W3 Total Cache.
Hi.
To solve this inssue you need to disable “Line break removal” under JavaScript Minify settings.
This is a bug in Disqus JS files.
Forum: Fixing WordPress
In reply to: Custom Post Type Rewrite Permalink and Exclude baseSame problem here.
I try to use add_new_rules() to add a new rewrite rule, but not works.
The bug is caused by WordPress Admin Bar plugin.
Fix:
1) Rename the plugin folder
2) Login in admin
3) Rename plugin folder for the original name
4) Active plugins but NOT active WordPress Admin Bar plugin.