twentyfourdegrees
Forum Replies Created
-
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; }
Forum: Developing with WordPress
In reply to: wp_list_categories: don’t show top levelWell, this is a bit weird. I’m trying to go for the CSS approach since my knowledge of CSS is better than WP-PHP.
But I’m not there yet, I always get the opposite of what I’m trying to achieve.
Here’s the simplified code:
<ul id=“allCatlist” class=“list-unstyled”> <li class=“cat-item cat-item-33”> <a href=“#” Category 1</a> <ul class=“children”> <li class="cat-item cat-item-5”> child 1 </li> <li class="cat-item cat-item-6”> child 2 </li> <li class="cat-item cat-item-1”> child 3 </li> </ul> </li> <li class=“cat-item cat-item-2”> <a href=“#” Category 2</a> <ul class=“children”> <li class="cat-item cat-item-3”> child 4 </li> <li class="cat-item cat-item-8”> child 5 </li> <li class="cat-item cat-item-4”> child 6 </li> </ul> </li> </ul>
So, what I’m trying to achieve is that the “Category 1” and “Category 2” are not visible.
What am I missing…?
Forum: Developing with WordPress
In reply to: wp_list_categories: don’t show top levelThanks for your answers, I’ll try them both tomorrow – stay tuned ??