Forum Replies Created
-
AuthorPosts
-
suzyo
MemberHI, Genwrock! Yes, there is a theme made by Jonathan Perez and developed by Travis Smith, called Sandbox, which is a "starter" theme for Genesis.
suzyo
MemberAh, yes, likely, thanks. So I can just axe it, right?
Will it be referenced in functions php?
Thank you, Brad.
January 11, 2014 at 12:56 am in reply to: Featured Images no longer being resized after update to 2.0.2 #84586suzyo
Membernevermind, i fixed it. the update wasn't having any of my sloppy code.
suzyo
Memberfixed the first part, still can't find "filed under" anywhere.
'//* Removes the post meta and post info functions
remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
'suzyo
Memberyou've been waiting for an answer since oct 6. today is oct 18. this forum is not working, studiopress.
suzyo
Memberalso would like to remove "filed under". i've upgraded to 2.0 and enabled HTML5 and absolutely everything i did before is wiped out.
i used the cobalt apps converter as recommended by bran alton and brian gardner. it is disastrous.
suzyo
MemberActually, this had to be changed after enabling HTML5 in 2.0; these are the new hooks that work w 2.0
This is what worked for me. I'm using a template that I made for cat results, and am displaying the thumbnail, the post title, and the excerpt.
'//* Remove the post content (requires HTML5 theme support)
remove_action( 'genesis_entry_content', 'genesis_do_post_content' );
add_action( 'genesis_entry_content', 'genesis_page_category_content' );
function genesis_page_category_content() {
the_excerpt();
}
'September 25, 2013 at 8:32 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64234suzyo
MemberThanks, Sommer. I did that earlier. This is the framework's page.php
'<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package Genesis\Templates
* @author StudioPress
* @license GPL-2.0+
* @link http://my.studiopress.com/themes/genesis/
*///* This file handles pages, but only exists for the sake of child theme forward compatibility.
genesis(); 'September 25, 2013 at 7:11 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64223suzyo
MemberNo, because the calendar would not be using this new page.php, because it doesn't exist. As I keep saying, TEC Community Events submission form is not written on a page, nor does it make use of a page. It is created dynamically, on-the-fly, and uses the underlying page.php.
HOWEVER, I don't HAVE a page.php, so it is using something ELSE.
To create a page.php would be like yelling to Mars while the people on Jupiter are waiting for your message.
September 25, 2013 at 6:56 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64219suzyo
MemberThis reply has been marked as private.September 25, 2013 at 6:36 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64210suzyo
MemberAnd, thank you, but I'm frustrated. Nobody has understood the question.
September 25, 2013 at 6:35 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64209suzyo
MemberTONY! Have you read any of the posts? I KNOW HOW TO USE THE CONDITIONALS. THE PROBLEM IS THAT THERE IS NO PLACE TO PUT THEM BECAUSE GENESIS DOES NOT HAVE A PAGE.PHP
September 25, 2013 at 6:26 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64206suzyo
MemberTony, you linked me to my own post, and, if you look carefully, you'll see that they did not answer my question.
My question is how to apply the conditionals when there is no page.php in Genesis.
September 25, 2013 at 6:04 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64200suzyo
MemberHi Tony, hi Summer, thank you.
Tony, I want the Community Events submission form to be the only full-width "page".
Summer, the Community Events submission form is not a page, rather, it displays by dynamic, on-the-fly creation of a "page" based on your theme's page.php. No shortcodes, because, no place to put 'em. Conditionals only, to be written on the underlying page, which is your theme's page.php, which does not exist in Genesis.
The Events Calendar itself uses a number of templates, but there IS NO TEMPLATE for the submission form.
Yeah, weird, I know. As I wrote above, the dev says:
"The Community Events plugin uses your theme’s page.php template so you’ll want to edit that and use the following conditional code to detect when you are on one of the community pages and show/hide whatever sidebar you want that way."
I can't apply the conditional(s) to a template that doesn't exist. (Actually I tried to add it to page.php in the Genesis Framework itself, but, no go.)
It's hump day.
September 25, 2013 at 5:43 pm in reply to: Tribe EVents Calendar, Conditionals, and lack of page.php #64194suzyo
MemberHI Summer, and thanks. The problem is that a template cannot be applied to the TEC stuff, it's not on a "page". It uses the page of the theme it is applied to.
See what I'm sayin'?
suzyo
MemberGot the answer from Jennifer at Copyblogger Media support.
Thank you, Jennifer!
'remove_action( 'genesis_post_content', 'genesis_do_post_content' );
add_action( 'genesis_post_content', 'genesis_page_category_content' );
function genesis_page_category_content() {
the_excerpt();
} 'I added this to a Category template that I had created. Will be doing something similar w Search results.
suzyo
MemberThis reply has been marked as private.suzyo
MemberAaaaaaaaaaaaaand...Eleanor Roosevelt said something like "You must do the thing you fear the most." I will report back when finished.
suzyo
MemberAnd now I'm on a mission to write a new loop for a new category template.
suzyo
MemberUgh. The answer is that I need to write a new loop, isn't it?
-
AuthorPosts