Jerrad
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Content Shortcode] WordPress 4.2.3 broke my codeMine are broken too.
It works great!
Thanks so much for adding this feature.
Take care,
Jerrad
Awesome! Can’t wait for the update.
Thanks so much!
Jerrad
Forum: Plugins
In reply to: [Admin Bar User Switching] 1.0 release brokenI’m experiencing the same issues.
@mechter – I think selecting from a couple favorite users is a great idea.
Won’t activate on my Multisite setup either.
Forum: Plugins
In reply to: [Custom Content Shortcode] If Paginator is hiding your Loop… here's maybe whyThat did it – all fixed!
Thanks so much!
Jerrad
Forum: Plugins
In reply to: [Custom Content Shortcode] where should i start for this pluginWhat plugin are you using to build your form?
Forum: Plugins
In reply to: [Custom Content Shortcode] If Paginator is hiding your Loop… here's maybe whyThe update to Paginator added some CSS that is causing grey bordering and alignment issues with a related posts loop section I created with a featured image and links.
Here’s the CSS that’s causing it.
.paginator-styled a { padding: 4px 10px; display: inline-block; border: 1px solid #ddd; margin-left: -1px; }
Here’s a screenshot so you can see.
Thanks,
Jerrad
Forum: Plugins
In reply to: [Custom Content Shortcode] Is it possible to sort a [pass taxonomy_loop]?We haven’t developed a lot of content yet so changes can still be made to the structure. Thanks for letting me know how this could affect site performance.
Would it be less strain on my site to do it like this? (took out the pass, just doing a loop based on the content area and lesson type, ordering the list by the unit title taxonomy and listing the taxonomy in the loop)
<h3>World History Units</h3> [loop type="lessons_bundles" taxonomy="content_area" value="world-history" compare="and" taxonomy_2="lesson_type" value_2="unit-lessons" list="true" orderby="unit_title" order="ASC"] <ul><li><a href="[field url]" target="_blank">[field title]</a> - <em>[taxonomy unit_title]</em></li></ul> [/loop] </div>
If you have another suggestion, please let me know.
Thanks – Jerrad
Forum: Plugins
In reply to: [User Specific Content] Add support to custom post typeThanks for the code – I was able to get the action hook to work.
How would you add it to multiple post types?
Thanks!
Jerrad
Forum: Plugins
In reply to: [Custom Content Shortcode] Is it possible to sort a [pass taxonomy_loop]?(posts) should be (post)
Didn’t want you to think that the link goes to posts. The link goes to a post. Sorry.
Forum: Plugins
In reply to: [Custom Content Shortcode] Is it possible to sort a [pass taxonomy_loop]?I have a custom post type called Lessons & Bundles. When creating a LB post, one of the custom fields asks the user to select a lesson type (Lesson Plan, Digital Books, Professional Development, Unit Lesson,…) and if they select Unit Lesson, they are instructed to give a Unit Name in a category panel so if other Unit Lessons are created, they can all be connected together in a loop.
Another taxonomy that comes into play is Content Area (Algebra, US Government, Fine Arts,…). Each content area will have their own page. In one column on the page will be a list of the units listed dynamically with their unit name and the associated posts listed beneath.
Here’s an example for a column on the World History page. (content area taxonomy) The column is only going to contain posts that are Unit Lessons (lesson type taxonomy).
Ancient Civilizations (unit title taxonomy)
- AC – Lesson 1 (posts)
- AC – Lesson 2 (posts)
- AC – Lesson 3 (posts)
Greece and Rome (unit title taxonomy)
- GR – Lesson 1 (posts)
- GR – Lesson 2 (posts)
Renaissance and Reformation (unit title taxonomy)
- R&R – Lesson 1 (posts)
- R&R – Lesson 2 (posts)
- R&R – Lesson 3 (posts)
- R&R – Lesson 4 (posts)
If there’s a better way to do this, I’m open to suggestions. Thanks so much for your help.
Jerrad
Forum: Plugins
In reply to: [Custom Content Shortcode] Is it possible to sort a [pass taxonomy_loop]?The plugin Category Order and Taxonomy Terms Order was causing the problem. Not sure if there’s another plugin out there that can reorder taxonomy terms without causing the issue. I sometimes like to rearrange my post categories.
I have another question. Is it possible to filter by another taxonomy in a Pass? The reason I ask is I added more values to the Unit Title taxonomy for World History (different subject) and the new values display on the US Government page.
Could something like this work…
[pass taxonomy_loop="unit_title" compare="and" taxonomy="content_area" value="us-government" order="ASC"]
Having the same issue.
Forum: Plugins
In reply to: [Custom Content Shortcode] Is it possible to sort a [pass taxonomy_loop]?Still not working. Even tried ASC and DESC with lowercase and uppercase letters. Also tried orderby=”name” which is default.
Here’s my code so you can check to make sure I didn’t mess up anything.
<h3>US Government Units</h3> [pass taxonomy_loop="unit_title" order="ASC"] <strong>{TERM_NAME}</strong><br> [loop type="lessons_bundles" taxonomy="content_area" value="us-government" compare="and" taxonomy_2="lesson_type" value_2="unit-lessons" taxonomy_3="unit_title" value_3="{TERM}" list="true" orderby="title"] <ul><li>– <a href="[field url]" target="_blank">[field title]</a></li></ul> [/loop] <br> [/pass]