Title: Code Amp's Replies - page 27 | 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 - 391 through 405 (of 415 total)

[←](https://wordpress.org/support/users/codeamp/replies/page/26/?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)…
[26](https://wordpress.org/support/users/codeamp/replies/page/26/?output_format=md)
27 [28](https://wordpress.org/support/users/codeamp/replies/page/28/?output_format=md)
[→](https://wordpress.org/support/users/codeamp/replies/page/28/?output_format=md)

 *   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, 3 months ago](https://wordpress.org/support/topic/filter-hook-for-tile-content/#post-14174437)
 * I’ve been doing some testing with these hooks, and it seems some of them were
   not working.
 * We’ve held back our update, and will do a combined release with a bunch of new
   features, fixes for these hooks, and new hooks for elements too.
 * Look out for the next update in the next few days.
 * Thanks
    -  This reply was modified 5 years, 3 months 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] 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, 3 months ago](https://wordpress.org/support/topic/filter-hook-for-tile-content/#post-14138381)
 * [@jbonlinea](https://wordpress.org/support/users/jbonlinea/)
 * For both Layouts and Templates, you can add custom classes via the admin UI by
   looking in the `Advanced` panel.
 * If you want to add a class to the layout or template via code, you can use the`
   render_args` filter.
 *   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, 3 months ago](https://wordpress.org/support/topic/filter-hook-for-tile-content/#post-14138195)
 * Hi both, so this is what we have currently in our code:
 * **Layouts**
    Actions: `do_action( "custom-layouts\layout\before_render", $settings,
   $this->name );` `do_action( "custom-layouts\layout\after_render", $settings, 
   $this->name );`
 * Filters
    `$settings = apply_filters( 'custom-layouts\layout\render_args', $settings,
   $this->name );` `$output = apply_filters( "custom-layouts\layout\render_output",
   $output, $this->name, $settings );`
 * **Templates**
 * Filters:
    `$settings = apply_filters( 'custom-layouts\template\render_args', 
   $settings, $this->name );` `$output = apply_filters( "custom-layouts\template\
   render_output", $output, $this->name, $settings );`
 * Actions
    `do_action( "custom-layouts\template\before_render", $settings, $this-
   >name );` `do_action( "custom-layouts\template\after_render", $settings, $this-
   >name );`
 * —-
 * I think the actions speak for themselves… For the filters, for layouts and templates
   you have 2:
 * `render_args`
 * Here you can update $settings argument used to generate the render
 * `render_output`
 * This contains the full html of what will be printed to screen, so you can manipulate
   this where necessary.
 * I think after reading both your comments, it would also be good to add the same
   actions/filters for individual elements?
 *  – So we have a before/after render element action
    – And we can update the args/
   output of each using a filters
 * What do you think?
 * (I am in the process of writing all this up on a new site we are building)
    -  This reply was modified 5 years, 3 months ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
    -  This reply was modified 5 years, 3 months 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] 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, 3 months ago](https://wordpress.org/support/topic/filter-hook-for-tile-content/#post-14132403)
 * Hey [@ashf](https://wordpress.org/support/users/ashf/),
 * We have a few hooks (we’re still building the website/docs) but maybe not for
   what you want to do exactly.
 * Can you explain a couple of things for me, and perhaps I can guide you (or add
   some hooks for you):
 * 1) Where do you want to modify content?
    2) What functionality are you trying
   to add to the tile?
 * FYI, today/tomorrow, we’re adding support for basic custom fields and taxonomies.
 * Thanks
    – Ross
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Can’t see Layout or Template editor options](https://wordpress.org/support/topic/cant-see-layout-or-template-editor-options/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/cant-see-layout-or-template-editor-options/#post-14070139)
 * [@slavallee](https://wordpress.org/support/users/slavallee/) did you manage to
   contact us / find the solution to your issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Can’t see Layout or Template editor options](https://wordpress.org/support/topic/cant-see-layout-or-template-editor-options/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/cant-see-layout-or-template-editor-options/#post-14061747)
 * Hey [@slavallee](https://wordpress.org/support/users/slavallee/), absolutely 
   we’re here to help.
 * So to understand this, you can create a template, however, when choosing it in
   the dropdown of a layout, the dropdown is not visible / empty?
 * It sounds like either a javascript error is occuring, or a something is affecting
   the query that gets the list of templates for the dropdown.
 * Can you contact us via S&F Pro support channel, linking this topic, we’ll then
   follow up and request access details to view the admin area?
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Advanced post type](https://wordpress.org/support/topic/advanced-post-type/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/advanced-post-type/#post-14011701)
 * Hey [@jeanpoldupont](https://wordpress.org/support/users/jeanpoldupont/) – one
   of our next main features will be inserting ACF fields into our templates – hopefully
   in a month or two – after that at some point will come more query parameters 
   🙂
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Results page, show full excerpt](https://wordpress.org/support/topic/results-page-show-full-excerpt/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/results-page-show-full-excerpt/#post-14006207)
 * Hi Lily
 * The excerpt should show the full excerpt (if you filled in the excerpt field 
   in your posts), but it will show a cut down version of the full content up the
   number of words you set in your excerpt field.
 * So click on your excerpt in the template editor, and you will see the setting:
 * `Limit Post Content length (words)` – which you can set upto 100 words.
 * Does that solve the issue? If not, if you can explain what I might be missunderstanding
   then I can try to advise further.
 * Thanks
    – Ross
    -  This reply was modified 5 years, 4 months ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
    -  This reply was modified 5 years, 4 months ago by [Code Amp](https://wordpress.org/support/users/codeamp/).
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Custom Layouts - Post + Product grids made easy] Must have query builder](https://wordpress.org/support/topic/must-have-query-builder/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/must-have-query-builder/#post-13974129)
 * Thanks [@onetrev](https://wordpress.org/support/users/onetrev/) !
 * We’ll be adding taxonomy + custom fields to the templates at some point, within
   the next few weeks I imagine (hope).
 * Later on today we’ll be releasing more query options for layouts (multiple post
   types + restrict by taxonomy)
 * Glad you’re liking so far.
 * – Ross
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search & Filter] Did this update happen?](https://wordpress.org/support/topic/did-this-update-happen/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/did-this-update-happen/#post-13965544)
 * We delayed, stalled, made some other things, and now this is finally in testing
   🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search & Filter] Broken on Pods, order dependent](https://wordpress.org/support/topic/broken-on-pods-order-dependent/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/broken-on-pods-order-dependent/#post-13965539)
 * Hey [@hrsms](https://wordpress.org/support/users/hrsms/) , we’re doing a huge
   plugin update (bringing our Pro admin UI to the free version) as well as many
   bug fixes in about a month.
 * Let me know if you have the same issues when the new upgrade arrives.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search & Filter] eprecated: implode():](https://wordpress.org/support/topic/eprecated-implode/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/eprecated-implode/#post-13965527)
 * This looks like a S&F Pro issue – we fixed this a while back – be sure you have
   an active license and update the plugin 🙂
 * Best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search & Filter] Several bugs preventing plugin from working](https://wordpress.org/support/topic/several-bugs-preventing-plugin-from-working/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/several-bugs-preventing-plugin-from-working/#post-13965525)
 * Hi Corey
 * All this will be addressed in version 3 coming in about a month 🙂
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Layouts - Post + Product grids made easy] Moving title above featured image](https://wordpress.org/support/topic/moving-title-above-featured-image/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/moving-title-above-featured-image/#post-13946588)
 * I’ve made the sample templates info more prominent now – thanks.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Custom Layouts - Post + Product grids made easy] Great plugin if used with Search & Filter Pro.](https://wordpress.org/support/topic/great-plugin-if-used-with-search-filter-pro/)
 *  Plugin Author [Code Amp](https://wordpress.org/support/users/codeamp/)
 * (@codeamp)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/great-plugin-if-used-with-search-filter-pro/#post-13946585)
 * 🙂

Viewing 15 replies - 391 through 405 (of 415 total)

[←](https://wordpress.org/support/users/codeamp/replies/page/26/?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)…
[26](https://wordpress.org/support/users/codeamp/replies/page/26/?output_format=md)
27 [28](https://wordpress.org/support/users/codeamp/replies/page/28/?output_format=md)
[→](https://wordpress.org/support/users/codeamp/replies/page/28/?output_format=md)