Title: Code Amp's Replies - page 24 | WordPress.org

---

# Code Amp

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 346 through 360 (of 415 total)

[←](https://wordpress.org/support/users/codeamp/replies/page/23/?output_format=md)
[1](https://wordpress.org/support/users/codeamp/replies/?output_format=md) [2](https://wordpress.org/support/users/codeamp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codeamp/replies/page/3/?output_format=md)…
[23](https://wordpress.org/support/users/codeamp/replies/page/23/?output_format=md)
24 [25](https://wordpress.org/support/users/codeamp/replies/page/25/?output_format=md)
[26](https://wordpress.org/support/users/codeamp/replies/page/26/?output_format=md)
[27](https://wordpress.org/support/users/codeamp/replies/page/27/?output_format=md)
[28](https://wordpress.org/support/users/codeamp/replies/page/28/?output_format=md)
[→](https://wordpress.org/support/users/codeamp/replies/page/25/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Alt Text Status](https://wordpress.org/support/topic/alt-text-status/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/alt-text-status/#post-14413038)
 * Hey [@erdemozden](https://wordpress.org/support/users/erdemozden/)
 * That’s on our list of bug fixes, hoping to have that sorted early next week in
   an update 🙂
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Cannot Add Custom Taxonomy](https://wordpress.org/support/topic/cannot-add-custom-taxonomy/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/cannot-add-custom-taxonomy/#post-14408463)
 * Hey [@adeparker](https://wordpress.org/support/users/adeparker/) just to let 
   you know I plan on diving into this tomorrow.
 * Best
    – Ross
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Comment Count Element Not Found](https://wordpress.org/support/topic/comment-count-element-not-found/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/comment-count-element-not-found/#post-14399851)
 * Hey [@mtosh](https://wordpress.org/support/users/mtosh/)
 * I think it’s going to be pretty complicated to do that, as you’d need to find
   a way to save the comment count (and keep it updated whenever someone comments)
   in the post meta, in order to use our custom field element for it.
 * I’ll get on with finishing this comment count element, it’s looking like Friday/
   Monday at the moment 🙂
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Comment Count Element Not Found](https://wordpress.org/support/topic/comment-count-element-not-found/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/comment-count-element-not-found/#post-14394253)
 * Hey [@mtosh](https://wordpress.org/support/users/mtosh/) – I don’t think the 
   count number is in post meta.. I think you can get it with this:
    [https://developer.wordpress.org/reference/functions/get_comments_number/](https://developer.wordpress.org/reference/functions/get_comments_number/)
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Excerpt not linking to post](https://wordpress.org/support/topic/excerpt-not-linking-to-post/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/excerpt-not-linking-to-post/#post-14394240)
 * Hey Marlene
 * I’ve checked this out and can see what’s going on.
 * Our loops don’t use the traditional loop for posts (we do this for speed, and
   caching) eg:
 *     ```
       if ( have_posts() ) {
           while ( have_posts() ) {
   
               the_post(); ?>
   
               <h2><?php the_title(); ?></h2>
   
               <?php the_content(); ?>
   
           <?php }
       }
       ```
   
 * Which might mean the way they get the `the_permalink()` might not actually work
   when used in our functions… so the link always goes to the current URL…
 * I’ve actually gone ahead and disabled this text for excerpts in our plugin (so
   this link is never shown) – it was never intended to be there (and we have a 
   link element anyway).
 * The update with the removal of this should be released by the end of the week.
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Cannot Add Custom Taxonomy](https://wordpress.org/support/topic/cannot-add-custom-taxonomy/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/cannot-add-custom-taxonomy/#post-14389534)
 * Hey Ade
 * I’ll try to test this locally in the next few days, but I’m guessing the taxonomy
   field works with regular taxonomies only.
 * If you have any more info on your setup to help me recreate that would be most
   helpful.
 * Otherwise I’ll revert with any questions/feedback after giving it a spin – I 
   assume recreating will be straight forward enough.
 * Thanks
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Comment Count Element Not Found](https://wordpress.org/support/topic/comment-count-element-not-found/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/comment-count-element-not-found/#post-14389532)
 * Hey [@mtosh](https://wordpress.org/support/users/mtosh/)
 * This element as actually not available yet.
 * I half built it and planned to release but it didn’t quite make it to release
   yet (and no one asked for it).
 * I’ll get this included in an update I’m planning on Friday 🙂
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Link with dynamic source](https://wordpress.org/support/topic/link-with-dynamic-source/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/link-with-dynamic-source/#post-14381207)
 * Closing this as we added the link type to custom fields in 1.4.0 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Padding or margin](https://wordpress.org/support/topic/padding-or-margin/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/padding-or-margin/#post-14381193)
 * Hey [@loekarin](https://wordpress.org/support/users/loekarin/)
 * I’ve just added those to this page:
    [https://customlayouts.com/documentation/template-elements/](https://customlayouts.com/documentation/template-elements/)
 * I’ll close this for now, but I’m putting on our todo list info tooltips – so 
   you can see a better explanation of what everything does from within the plugin
   itself.
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Filter hook for tile content?](https://wordpress.org/support/topic/filter-hook-for-tile-content/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/filter-hook-for-tile-content/#post-14381181)
 * Hey all – just to let you know we’ve put the docs up for these (and fixed a few
   issues surrounding our hooks in 1.4.0):
 * [https://customlayouts.com/documentation/action-filter-reference/](https://customlayouts.com/documentation/action-filter-reference/)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Excerpt not linking to post](https://wordpress.org/support/topic/excerpt-not-linking-to-post/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/excerpt-not-linking-to-post/#post-14378624)
 * Hey Marlene
 * Glad you solved your other ticket, I have noticed some odd behaviour with this,
   I’ll look into today/tomorrow and get back to you, hopefully with some options
   🙂
 * Best
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Dash Icon Before Taxonomy](https://wordpress.org/support/topic/dash-icon-before-taxonomy/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/dash-icon-before-taxonomy/#post-14376048)
 * Hey [@magniture](https://wordpress.org/support/users/magniture/)
 * I’m afraid I’ve not had much time to dig in to this, but I did figure it out 
   just now 🙂
 * These are the steps:
 * **1) Enable dashicons on the frontend of your site, by adding this to your child
   theme:**
 *     ```
       add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' );
       function load_dashicons_front_end() {
       	wp_enqueue_style( 'dashicons' );
       }
       ```
   
 * Taken from here: [https://presscustomizr.com/snippet/enable-dashicons-wordpress-frontend/](https://presscustomizr.com/snippet/enable-dashicons-wordpress-frontend/)
 * **2) To enable a dashicon, you can then add the dashicon classes to the taxonomy
   block:**
    Screenshot: [https://snipboard.io/73mgL9.jpg](https://snipboard.io/73mgL9.jpg)
   You need to enter both the `dashicon-before` class and the icon you want, seperated
   with a space like this: `dashicons-before dashicons-admin-site-alt2` Icon class
   taken from: [https://developer.wordpress.org/resource/dashicons/#admin-site-alt2](https://developer.wordpress.org/resource/dashicons/#admin-site-alt2)
 * The layout might be a bit off… so you might have to do some CSS tweaking with
   rules like (untested):
 *     ```
       .dashicons-before:before {
           padding-top: 5px;
       }
       ```
   
 * I hope that helps!
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Overlay Full template with increased height](https://wordpress.org/support/topic/overlay-full-template-with-fixed-height/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/overlay-full-template-with-fixed-height/#post-14366872)
 * No worries, thanks for you time and comments! Feel free to add anything else –
   its always useful to hear how people are using the plugin and what they would
   like to see next.
 * BTW, in the future it will be possible to get closer to that layout you have 
   linked – we’ll be adding hover effects and animations too 🙂
 * Best
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search & Filter] Options not clickable](https://wordpress.org/support/topic/options-not-clickable/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/options-not-clickable/#post-14366189)
 * Hi both, this is a Pro version issue that was introduced when WP upgraded its
   core jQuery version.
 * We updated the pro version so all you should need to do is update the plugin 
   to receive the fix.
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search & Filter] Blank Plugin Editor: search-filter.php file encoded as ANSI instead of UTF8](https://wordpress.org/support/topic/blank-plugin-editor-search-filter-php-file-encoded-as-ansi-instead-of-utf8/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/blank-plugin-editor-search-filter-php-file-encoded-as-ansi-instead-of-utf8/#post-14366163)
 * Thanks for flagging – I checked this in my dev setup but couldn’t see it – checking
   the repo version though and you are correct.
 * So I guess during this last round of updates I’ve updated this back to UTF 8 
   anyway 🙂
 * The update with this fix coming towards the end of this week.
 * Thanks
    -  This reply was modified 5 years, 1 month ago by [Code Amp](https://wordpress.org/support/users/codeamp/).

Viewing 15 replies - 346 through 360 (of 415 total)

[←](https://wordpress.org/support/users/codeamp/replies/page/23/?output_format=md)
[1](https://wordpress.org/support/users/codeamp/replies/?output_format=md) [2](https://wordpress.org/support/users/codeamp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codeamp/replies/page/3/?output_format=md)…
[23](https://wordpress.org/support/users/codeamp/replies/page/23/?output_format=md)
24 [25](https://wordpress.org/support/users/codeamp/replies/page/25/?output_format=md)
[26](https://wordpress.org/support/users/codeamp/replies/page/26/?output_format=md)
[27](https://wordpress.org/support/users/codeamp/replies/page/27/?output_format=md)
[28](https://wordpress.org/support/users/codeamp/replies/page/28/?output_format=md)
[→](https://wordpress.org/support/users/codeamp/replies/page/25/?output_format=md)