twentyfourdegrees
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Hierarchical CPT result in 404 on viewClosing this item because I’m starting over.
Forum: Developing with WordPress
In reply to: Hierarchical CPT result in 404 on viewHi Ravindra,
thanks for your help but the error remains. It’s really weird, maybe I should start over just to see.
Forum: Developing with WordPress
In reply to: Embedding a Vimeo videoSorry this is resolved. Is made a typo in the customizer field settings.
Thank you Nikita, I can hereby confirm that an update to v1.12.1 has solved the issue. All clear now.
kind regards,
Michael
Forum: Developing with WordPress
In reply to: Node_modules and publishing a theme liveWell I’m a bit new to npm and I’m trying to enqueue both Flowbite CSS and JS. But I will try to follow your advice, thanks!
Forum: Developing with WordPress
In reply to: Disguised mail system, hiding the original mailaddressHi George, the mail-addresses should be top-secret for one user to another, not for the admins.
Forum: Fixing WordPress
In reply to: Create a custom meu with location and a home pageOh that’s a nice approach: injecting it in the database directly. I will investigate, thank you very much.
Forum: Developing with WordPress
In reply to: Getting post titles while in a loopResolved.
Forum: Developing with WordPress
In reply to: Getting post titles while in a loopThanks, I get it now. FYI: I replaced the first loop with:
<?php $i = 0; while($slider->have_posts()): $slider->the_post(); ?>and also added an endwhile of course.
Thanks Joy!!
Forum: Developing with WordPress
In reply to: Getting post titles while in a loopI’m afraid that, only for the purpose of making the tooltips work, I have to create 2 loops, right?
Forum: Developing with WordPress
In reply to: Getting post titles while in a loopOh that’s true Joy, thanks for finding the issue !
So this means my whole structure is a bit faulty?
Forum: Developing with WordPress
In reply to: wp_list_categories: don’t show top levelFound it and sharing for further reference. You never know who might need it 😉
#allCatList > li > a { //background-color: yellow; visibility: hidden; }Thanks for all the help @anssilaitila. And @bcworkz: I’m afraid your solution is a little bit to high-ended for me at this time but I’m learning a lot.
Cheers!
Forum: Developing with WordPress
In reply to: Loop Query: multiple CPT, sort by 1Oh thank you @joyously, I will have a try with that one. Maybe it is an easy fix, although it will require some scaffolding 😉
Forum: Developing with WordPress
In reply to: wp_list_categories: don’t show top levelWeird: I always get the opposite and I’m not able to “reverse” the solution:
#allCatList .cat-item:not(.children) li { background-color: yellow; }Forum: Developing with WordPress
In reply to: wp_list_categories: don’t show top levelAlready trying 2 approaches:
#allCatList ul li:not(.children) > a { background-color: red; } #allCatList li .cat-item:nth-child(1) a { background-color: yellow; }