Code Amp
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Layouts - Post + Product grids made easy] Alt Text StatusHey @erdemozden
That’s on our list of bug fixes, hoping to have that sorted early next week in an update 🙂
Best
Forum: Plugins
In reply to: [Custom Layouts - Post + Product grids made easy] Cannot Add Custom TaxonomyHey @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.
Hey @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
Hey @mtosh – I don’t think the count number is in post meta.. I think you can get it with this:
https://developer.ww.wp.xz.cn/reference/functions/get_comments_number/Best
Forum: Plugins
In reply to: [Custom Layouts - Post + Product grids made easy] Excerpt not linking to postHey 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
In reply to: [Custom Layouts - Post + Product grids made easy] Cannot Add Custom TaxonomyHey 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
Hey @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
In reply to: [Custom Layouts - Post + Product grids made easy] Link with dynamic sourceClosing this as we added the link type to custom fields in 1.4.0 🙂
Forum: Plugins
In reply to: [Custom Layouts - Post + Product grids made easy] Padding or marginHey @loekarin
I’ve just added those to this page:
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
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/
Thanks
Forum: Plugins
In reply to: [Custom Layouts - Post + Product grids made easy] Excerpt not linking to postHey 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.
Forum: Plugins
In reply to: [Custom Layouts - Post + Product grids made easy] Dash Icon Before TaxonomyHey @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/
2) To enable a dashicon, you can then add the dashicon classes to the taxonomy block:
Screenshot: https://snipboard.io/73mgL9.jpg
You need to enter both thedashicon-beforeclass and the icon you want, seperated with a space like this:
dashicons-before dashicons-admin-site-alt2
Icon class taken from: https://developer.ww.wp.xz.cn/resource/dashicons/#admin-site-alt2The 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!
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.
Forum: Plugins
In reply to: [Search & Filter] Options not clickableHi 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
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.