Tasha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Thanks to the advice from vtxyzzy I managed to solve this. My solution for future users:
I created a catergory-17.php (my catergory ID) as per the codex and customised it so that the posts display the way I would like them and now it works fine.
I also found the following way to do it which also seam to work fine:
https://www.ads-software.com/support/topic/display-the-posts-of-one-category-in-a-page-solved?replies=37I would love to hear which approach is considered best so if anyone would like to give input that would be great.
Thanks again vtxyzzy!
Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Thank you for your help. Unfortunately that is not an option but I do appreciate your help. I’ll read up about the category template.
Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Yes sure, it is still the same as in the original post:
https://www.luankruger.angelicdesign.co.uk/
The only thing that has changed is the category id.
I’m hoping I’m just missing something obvious?
Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Yes I believe it does.
Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Sorry I had to hand the site over to my sister so removed it. I put it back now with the code:
<?php if (in_category(’17’) && is_home() ) continue; ?>
in home.phpI created two posts. The one with no category go to Joernaal like it should. But the one with the category Luan does not appear anywhere.
Thank you so much for looking!
Forum: Plugins
In reply to: [Rizzi Guestbook] Not showing any other content of my pageThank you anyway.
Forum: Plugins
In reply to: [Comment Guestbook] Change email, name and logged in to different languangeI just reread my post and realised “Ingeteken as . Wil jy uitteken?” doesn’t mean anything to anyone. In English it would be:
Loggged in as . Do you want to sign out?
In other words it doesn’t show the username after logged in if I translate the code.
Hi Stephanie, thank you for your reply. This hasn’t fixed my problem although I have seen other posts with the same solution. I’m wondering if it has something to do with my custom Bootstrap 3 build?
Forum: Fixing WordPress
In reply to: Display different posts on different "pages"Thank you for the suggestion vtxyzzy. I had a look but that plugin hasn’t been updated in two years so I think I’ll wait to see if someone can tell me what I’m doing wrong. Thanks though!
Did you ever get an answer for this question? I have the same question?
Forum: Plugins
In reply to: [WP Bootstrap Gallery] Editing GalleryThat would be great! Thank you. Just one more question please. Can I use this as a lightbox to open images that are not in a gallery?
Forum: Fixing WordPress
In reply to: Bootstrap Vertical Menu in sidebar stacking order problemFor anybody that come accros this in future. The solution, obviously with your own id’s:
$(function(){
// initial size adjustments
resizeMe();
// Resized window!
$(window).on(“resize”,function(){
resizeMe();
});
});function resizeMe(){
if ($(window).width() <= 768){
$(‘#sidebar-nav’).insertAfter(‘#myJumbotron’);
}else{
$(“#sidebarBG”).prepend($(“#sidebar-nav”));
}
};Forum: Fixing WordPress
In reply to: Bootstrap Vertical Menu in sidebar stacking order problemCan someone please tell me if I’ve done anything to offend anyone or break the rules on this forum, I don’t seem to get any answers for quite a few questions I’ve asked now. I would really like to fix it if I’ve done something wrong please.
Forum: Fixing WordPress
In reply to: Bootstrap Vertical Menu in sidebar stacking order problemI installed Jetpack as suggested by Esmi but it didn’t change anything. Which features of Jetpack should I activate? Thanks