junkes
Forum Replies Created
-
That’s nice. Thanks, @sc0ttkclark. I’ll wait for the 3.0 then.
Got it, @sc0ttkclark, thank you for your reply. Is there anything you recommend me to do to work around that, at least for the moment?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Pod’s tabs disappeared after updateWent back in today and without any changes, anything at all, it’s back. For now, at least.
Thank you, @keraweb. The thing is even with the admin user it didn’t happen; no notices or erros, though. And I didn’t find anything about allowing front end submission of featured image; I even tried downloading a capability plugin, but didn’t find anything that could change that.
Anyone?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Orderby custom taxonomy still works?Well, I just updated and still not working for me. Guess I’m doing something wrong then, but can’t figure it out what.
That’s great, @pdclark, thank you.
But, there’s no magic tag or something like that to get that in a Pod’s template?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Orderby custom taxonomy still works?I just updated to 2.8.3 and I’m afraid it didn’t work for me, at least not with the same shortcode as it used to. I’ll submit it to GitHub later so we can look further. btw, I entered Pods’ Slack Community but didn’t have the chance to look around just yet.
That was awesome. You guys helped me so much. Thank you!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Orderby custom taxonomy still works?I installed 2.8.2 but I guess it didn’t resolve my issue. At least, not with old code that was working before 2.8.
Wow, that was an amazing help, thank you, it worked perfectly!
If I would like to add more custom macros, for other fields, should I just add more tags like $pods_field_slug / $value / %%pods_relationship_id%% (obviously, changing the names of it for each new macro) or is there a better way to it?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Orderby custom taxonomy still works?Yes, taxonomy name is “ano” and it’s associated with the CD (“disco”) CPT with Pods. Yes, all the CDs are set as published.
Hey, @wpmudevsupport12. Yes, I’m using Pods – Custom Content Types and Fields.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Orderby custom taxonomy still works?I guess this is it. Just FYI, in this case, it’s an artist page (“artista” post type, in portuguese) that displays artist’s CDs (“disco” post type) by Year (“ano” tax).
SELECT
DISTINCT
t
.*
FROMwp_posts
ASt
LEFT JOIN
wp_podsrel
ASrel_artista
ON
rel_artista
.field_id
= 2263
ANDrel_artista
.item_id
=t
.ID
LEFT JOIN
wp_posts
ASartista
ON
artista
.ID
=rel_artista
.related_item_id
LEFT JOIN
wp_postmeta
ASartista_ID
ON
artista_ID
.meta_key
= ‘ID’
ANDartista_ID
.post_id
=artista
.ID
LEFT JOIN
wp_term_relationships
ASrel_ano
ON
rel_ano
.object_id
=t
.ID
LEFT JOIN
wp_term_taxonomy
ASrel_tt_ano
ON
rel_tt_ano
.taxonomy
= ‘ano’
ANDrel_tt_ano
.term_taxonomy_id
=rel_ano
.term_taxonomy_id
LEFT JOIN
wp_terms
ASano
ON
ano
.term_id
=rel_tt_ano
.term_id
LEFT JOIN
wp_termmeta
ASano_name
ON
ano_name
.meta_key
= ‘name’
ANDano_name
.term_id
=ano
.term_id
WHERE ( (
artista
.ID
= ‘2513’ ) AND (t
.post_type
= ‘disco’ ) AND (t
.post_status
IN ( ‘publish’ ) ) )ORDER BY
ano
.name
ASC,t
.menu_order
,t
.post_title
,t
.post_date
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Pods Forms and Date field in 2.8.1Thank you, @sc0ttkclark, I’ll try that. And, btw, that’s an awesome ideia for the future!