Title: AzzX's Replies | WordPress.org

---

# AzzX

  [  ](https://wordpress.org/support/users/azzx/)

 *   [Profile](https://wordpress.org/support/users/azzx/)
 *   [Topics Started](https://wordpress.org/support/users/azzx/topics/)
 *   [Replies Created](https://wordpress.org/support/users/azzx/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/azzx/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/azzx/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/azzx/engagements/)
 *   [Favorites](https://wordpress.org/support/users/azzx/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/azzx/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/azzx/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Enhancrd categories won’t appear online](https://wordpress.org/support/topic/enhancrd-categories-wont-appear-online/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/enhancrd-categories-wont-appear-online/#post-9613778)
 * You need to edit your taxononomy / category template and include:
 *     ```
       <?php
           global $enhanced_category;
           //get enhanced category post and set it up as global current post
           $enhanced_category->setup_ec_data();
       ?>
       ```
   
 * Then it works without issue.
 * Template example:
 *     ```
       <?php
           global $enhanced_category;
           //get enhanced category post and set it up as global current post
           $enhanced_category->setup_ec_data();
       ?>
       <!-- enhanced category content -->
       <?php the_post_thumbnail("medium"); ?>
   
       <?php get_template_part( 'content', 'page' ); ?>
   
       <!-- custom fields -->
       <?php
           get_post_custom();
       ?>
   
       <?php
           // If comments are open or we have at least one comment, load up the comment template
           if ( comments_open() || get_comments_number() ) :
               comments_template();
           endif;
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autoptimize] Autoptimize 2.2 is near: need testers](https://wordpress.org/support/topic/autoptimize-2-2-is-near-need-testers/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years ago](https://wordpress.org/support/topic/autoptimize-2-2-is-near-need-testers/#post-9076924)
 * Been testing for a few days – Would love to highlight some bugs but unfortunately
   I am having 0 issues.
 * Keep up the great work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CPT-onomies: Using Custom Post Types as Taxonomies] Force Rewrite CPT slug with CPTonomy attached to it](https://wordpress.org/support/topic/force-rewrite-cpt-slug-with-cptonomy-attached-to-it/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years ago](https://wordpress.org/support/topic/force-rewrite-cpt-slug-with-cptonomy-attached-to-it/#post-9065330)
 * Instead of
 * `$terms = get_terms($post->ID, 'mycptonomy');`
 * Use
 * `$terms = get_the_terms( $post->ID, 'mycptonomy' );`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Background Elements in Visual Composer Not Showing](https://wordpress.org/support/topic/background-elements-in-visual-composer-not-showing/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/background-elements-in-visual-composer-not-showing/#post-8950568)
 * You can make one
 * Create a file named category.php for a standard cat
 * or a file named like taxonomy-term.php for a custom cat where term is the registered
   taxonomy name.
 * Test with the example included in the plugin:
 *     ```
       <?php
           global $enhanced_category;
           //get enhanced category post and set it up as global current post
           $enhanced_category->setup_ec_data();
       ?>
       <!-- enhanced category content -->
       <?php the_post_thumbnail("medium"); ?>
   
       <?php get_template_part( 'content', 'page' ); ?>
   
       <!-- custom fields -->
       <?php
           get_post_custom();
       ?>
   
       <?php
           // If comments are open or we have at least one comment, load up the comment template
           if ( comments_open() || get_comments_number() ) :
               comments_template();
           endif;
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Background Elements in Visual Composer Not Showing](https://wordpress.org/support/topic/background-elements-in-visual-composer-not-showing/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/background-elements-in-visual-composer-not-showing/#post-8937181)
 * Just done this, you need to edit the category/taxonomy template to incorporate
   the markup of your theme – as simple as including your post template into this
   file.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Support for Divi Visual Builder](https://wordpress.org/support/topic/support-for-divi-visual-builder/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/support-for-divi-visual-builder/#post-8919689)
 * Divi Builder doesn’t support Custom Post types out of the box (which is what 
   this plugin essentially adds to taxonomies)
 * But it can be done relatively easily via [https://www.elegantthemes.com/blog/divi-resources/how-to-add-the-divi-builder-to-custom-post-types-divi-nation-short](https://www.elegantthemes.com/blog/divi-resources/how-to-add-the-divi-builder-to-custom-post-types-divi-nation-short)
 * The Post type you need to add is enhancedcategory.
 * In order to make things easier and to fix other builders like visual composer
   change line 21 on \enhanced-category-pages\classes\ecp\Enhanced_Category.php
 * From ‘public’ => false, to ‘public’ => true,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Category Pages] Plugin Simply Not Working](https://wordpress.org/support/topic/plugin-simply-not-working/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/plugin-simply-not-working/#post-8271405)
 * Have you tried editing your category template?
 * Point 2 here: [https://wordpress.org/plugins/enhanced-category-pages/installation/](https://wordpress.org/plugins/enhanced-category-pages/installation/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Comments Template on a Taxonomy Term](https://wordpress.org/support/topic/comments-template-on-a-taxonomy-term/)
 *  Thread Starter [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/comments-template-on-a-taxonomy-term/#post-7491975)
 * Managed to get a psuedo working solution using bbpress though its a bit clunky.
   You basically duplicate all your taxonomies as forum threads and query these 
   in your taxonomy template.
 * It works at least.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WangGuard] Loading js from c.betrad.com](https://wordpress.org/support/topic/loading-js-from-cbetradcom/)
 *  Thread Starter [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/loading-js-from-cbetradcom/#post-4204574)
 * Cheers José. The site in this thread loads the js as an example: [http://wordpress.org/support/topic/error-on-register-page-in-ie-only?replies=3](http://wordpress.org/support/topic/error-on-register-page-in-ie-only?replies=3)
 * I only noticed it due to the script slowing my website down otherwise I would
   be none the wiser.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WangGuard] Loading js from c.betrad.com](https://wordpress.org/support/topic/loading-js-from-cbetradcom/)
 *  Thread Starter [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/loading-js-from-cbetradcom/#post-4204559)
 * Thanks for the response José.
 * I have just checked a few sites with this plugin enabled and they are all calling
   js from these locations:
    c.betrad.com/a/n/412/890.js [http://c.betrad.com/ba.html?1159](http://c.betrad.com/ba.html?1159)
   c.betrad.com/surly.js
 * Not sure if its suss or not – just a heads up.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP No Taxonomy Base] Still in development?](https://wordpress.org/support/topic/still-in-development-1/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/still-in-development-1/#post-3726142)
 * Thanks for the code Marko though I have noticed an issue.
 * If your permalink contains the taxonomy name, this also gets stripped
 * Example your taxonomy is book and your url is:
 * [http://www.myblog.com.au/stephen-king-books](http://www.myblog.com.au/stephen-king-books)
 * The url becomes [http://www.myblog.com.au/stephen-king-](http://www.myblog.com.au/stephen-king-)
   which results in a 404.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Purple Heart Rating (Free)] Removed from Code Canyon](https://wordpress.org/support/topic/removed-from-code-canyon/)
 *  Thread Starter [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/removed-from-code-canyon/#post-3944150)
 * Thanks wp-buddy, found the license code.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GD Star Rating] [Plugin: GD Star Rating] Show Total rating of a taxonomy](https://wordpress.org/support/topic/plugin-gd-star-rating-show-total-rating-of-a-taxonomy/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/plugin-gd-star-rating-show-total-rating-of-a-taxonomy/#post-3031139)
 * Would like to know this as well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Author Meta Data on Home Page Always Displayed](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-author-meta-data-on-home-page-always-displayed/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-author-meta-data-on-home-page-always-displayed/#post-2851684)
 * We were probably making it a bit hard for ourselves.
 * In WordPress SEO – Titles and Metas – Home. Set the Author highlighting to don’t
   show. Make sure to save and empty any caches.
 * If it still doesn’t work try deactivating and reactivating your main theme – 
   this worked for me.
 * As long as you have filled in your google plus profile in each of your users 
   profile page, this will be used for each of your posts.
 * If you want to put your publisher profile on the homepage simply add this in 
   your header:
 * `<?php if(!is_single() || is_front_page()) { ?><link href="https://plus.google.
   com/101484060053382827845" rel="publisher" /><?php } ?>`
 * Replace the above publisher ID with yours. This effectively will use the Publisher
   Info for The homepage and Pages only.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Author Meta Data on Home Page Always Displayed](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-author-meta-data-on-home-page-always-displayed/)
 *  [AzzX](https://wordpress.org/support/users/azzx/)
 * (@azzx)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-author-meta-data-on-home-page-always-displayed/#post-2851682)
 * Following, I noticed this too. I set the rel=publisher for the homepage but it
   appears google has a preference for author over publisher.
 * I’ll look over the code tomorrow, shouldn’t be that difficult a change.

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/azzx/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/azzx/replies/page/2/?output_format=md)