soriso
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need to remove page title in Adventure theme: no page.phpHi alamantra,
Im having the same problem. I wanted to remove the page name for the ‘home’ page. I see in your site that it’s still there but below an image. Were you actually able to figure this out?
Thanks!!
Forum: Fixing WordPress
In reply to: Including sidebar to static page with loopsYup! It worked like a charm! ??
Forum: Fixing WordPress
In reply to: Including sidebar to static page with loopsWow it worked!! How awesome is that! Thanks.
But wait, I noticed the code changed a bit. Is this still considered looping? And also how do I make the About Us comes first before Events?
Thanks Mac!! ??
Forum: Fixing WordPress
In reply to: Including sidebar to static page with loopsIt’s still the same… This is what I did
<div> <!-- primary content --> <div id="primary-content"> <div class="blocks"> ----- <?php do_action('mystique_after_primary'); ?> </div> </div> <!-- /primary content --> </div>
Forum: Fixing WordPress
In reply to: Including sidebar to static page with loopsIt worked!!! But the content is all on the right side… does this have to do with the style sheet? By the way I you want to check the site <:)> here’s the link https://kiwirootsmusic.com/front-2/ I placed it back to home for now. Thanks again!
Forum: Fixing WordPress
In reply to: Including sidebar to static page with loopsWow! Thank you for doing this!! I kinda gave up with the other theme and lost hope. But I will definitely try this and let you know. I’m sure I’ll have tons of questions. Thanks again vtxyzzy, I really appreciate it ??
Forum: Fixing WordPress
In reply to: multiple static page in one static pageYea, I tried inserting it in the page.php and removing it from the frontpage.php. What it did was it inserted the sidebar to all pages but the content of the pages are all showing after the sidebar. How do I make it show in the frontpage? Thanks again!
Forum: Fixing WordPress
In reply to: multiple static page in one static pageAnother question, how can I include the sidebar without placing the loop below it?
<?php get_sidebar('right'); ?>
This is what I have right now… https://www.kiwirootsmusic.com
<?php /* Template Name: Front Page */ ?> <?php get_header(); ?> <?php get_sidebar('right'); ?> <div id="primary"> <div id="content" class="narrowcolumn"> <?php $about = get_posts('page_id=12&post_type=page'); foreach($about as $post) : setup_postdata($post); ?>
Forum: Fixing WordPress
In reply to: multiple static page in one static pageWow!!! it’s working!!! Thank you so much vtxyzzy.
Now I just have to figure out how to align it ??
Forum: Fixing WordPress
In reply to: multiple static page in one static pageOk I now have the blank front page in my home page. But I guess I still have a problem in showing the 2 static pages I have in the front page. Is there something wrong with the loop I have that’s it’s not showing anything?
Thanks!!!
Forum: Fixing WordPress
In reply to: multiple static page in one static pageOk, I hope I’m getting close I activated the child theme and was able to select frontpage template. But now the problem is there’s nothing to show so my site looks like this https://kiwirootsmusic.com
On second thought I think I’m not getting close ??
Forum: Fixing WordPress
In reply to: multiple static page in one static pageI can’t find the Front Page template in the Template dropdown. How do I make it show up? Question though, when I created the frontpage.php file I placed it under the Child Theme is that correct?
Sorry I have so many questions. Thanks for being patient.
Forum: Fixing WordPress
In reply to: multiple static page in one static pageHmm no, I didn’t create one. Sorry this might sound stupid but how do I do that? Do I create it as part of the .php files or just Page > Add New Page ? And how can I choose a template for this?
Also here’s my site: https://kiwirootsmusic.com/
Thanks again!
Forum: Fixing WordPress
In reply to: multiple static page in one static pageOk, I created a child theme and inside are two files style.css & frontpage.php. I place the loops for the pages I wanted to show (about & events). But its still not working. ??
Can you please help me?
This is whats inside my frontpage.php
<?php /* Template Name: Front Page */ ?> get_header(); ?> <div id="primary"> <div id="content" class="narrowcolumn"> <?php $about = get_posts('page_id=12'); foreach($about as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); ?> <?php endforeach; ?> <?php $events = get_posts('page_id=25'); foreach($events as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); ?> <?php endforeach; ?> </div><!-- #primary --> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: multiple static page in one static pageThanks! I will try and let you know how it goes.