• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

derekalvarez

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 21 through 40 (of 47 total)
← 1 2 3 →
  • Author
    Posts
  • October 8, 2013 at 1:55 pm in reply to: News Theme Table CSS #65879
    derekalvarez
    Member

    The reason I think it's the theme is because I tested it another Genesis theme/website I have and it showed up correctly.

    September 20, 2013 at 5:22 pm in reply to: How to specify a sidebar for a template #63594
    derekalvarez
    Member

    I found a better plugin (for me)...
    http://wordpress.org/plugins/widget-context/

    This took care of everything. Thanks for setting me on the right track!

    September 17, 2013 at 11:23 am in reply to: How to specify a sidebar for a template #63017
    derekalvarez
    Member

    It had worked at first and then stopped, weird.

    September 17, 2013 at 11:20 am in reply to: How to specify a sidebar for a template #63016
    derekalvarez
    Member

    I tried...


    is_page(events)

    and...


    !is_page(events)

    And it either stops showing it altogether or shows it on every page. Then I tried...


    is_page(events) or !is_page(events)

    And it shows it on every page.

    September 17, 2013 at 11:07 am in reply to: How to specify a sidebar for a template #63011
    derekalvarez
    Member

    That worked perfect! Thanks, Brad!

    I looked here to see how to do the opposite...
    http://codex.wordpress.org/Conditional_Tags

    I want to take another widget and make sure it doesn't show on the events page... do you know how to do this? Something like...


    if_page(events): false

    September 17, 2013 at 8:37 am in reply to: How to specify a sidebar for a template #62978
    derekalvarez
    Member

    Did you mean this...
    http://test.epicmag.org/events/

    September 17, 2013 at 8:06 am in reply to: How to specify a sidebar for a template #62976
    derekalvarez
    Member

    I can change the template file, but the plugin doesn't create a page for me to select the sidebar. Here is the code I have on the template file...


    <?php
    /**
    * Default Events Template
    * This file is the basic wrapper template for all the views if 'Default Events Template'
    * is selected in Events -> Settings -> Template -> Events Template.
    *
    * Override this template in your own theme by creating a file at [your-theme]/tribe-events/default-template.php
    *
    * @package TribeEventsCalendar
    * @since 3.0
    * @author Modern Tribe Inc.
    *
    */

    if ( !defined('ABSPATH') ) { die('-1'); } ?>

    <?php get_header(); ?>

    <div id="content-sidebar-wrap">

    <div id="content">
    <div id="tribe-events-pg-template">
    <?php tribe_events_before_html(); ?>
    <?php tribe_get_view(); ?>
    <?php tribe_events_after_html(); ?>
    </div> <!-- #tribe-events-pg-template -->
    </div>

    <div id="sidebar" class="sidebar widget-area">
    <?php genesis_sidebar() ?>
    </div>

    </div> <!-- #content-sidebar-wrap -->

    <?php get_footer(); ?>

    I asked the plugin author and he said to check with my theme author.

    September 16, 2013 at 3:52 pm in reply to: How to specify a sidebar for a template #62886
    derekalvarez
    Member

    I forgot to mention it's an Events Calendar plugin template file and I can't access a page to edit it like that. They automatically create a page link called /events

    September 16, 2013 at 1:55 pm in reply to: Header Menu Associate Theme #62867
    derekalvarez
    Member

    That's interesting, I didn't figure the .home .widget would change the header widget. Thanks for pointing that out, Aaron!

    September 10, 2013 at 5:24 pm in reply to: Add sidebar to Events Calendar page template #61810
    derekalvarez
    Member

    I figured it out for anyone else who has this problem...


    <?php
    /**
    * Default Events Template
    * This file is the basic wrapper template for all the views if 'Default Events Template'
    * is selected in Events -> Settings -> Template -> Events Template.
    *
    * Override this template in your own theme by creating a file at [your-theme]/tribe-events/default-template.php
    *
    * @package TribeEventsCalendar
    * @since 3.0
    * @author Modern Tribe Inc.
    *
    */

    if ( !defined('ABSPATH') ) { die('-1'); } ?>

    <?php get_header(); ?>

    <div id="content-sidebar-wrap">

    <div id="content">
    <div id="tribe-events-pg-template">
    <?php tribe_events_before_html(); ?>
    <?php tribe_get_view(); ?>
    <?php tribe_events_after_html(); ?>
    </div> <!-- #tribe-events-pg-template -->
    </div>

    <div id="sidebar" class="sidebar widget-area">
    <?php genesis_sidebar() ?>
    </div>

    </div> <!-- #content-sidebar-wrap -->

    <?php get_footer(); ?>

    September 10, 2013 at 2:07 pm in reply to: Add sidebar to Events Calendar page template #61752
    derekalvarez
    Member

    I might go that way, but the styling doesn't look as sharp when I tried it... I was figuring this way I'd have to change less code.

    September 10, 2013 at 12:47 pm in reply to: Add sidebar to Events Calendar page template #61729
    derekalvarez
    Member

    Thanks, Brad. Here it is... http://wordpress.org/plugins/the-events-calendar/

    I've changed the code a bit and it added the sidebar, but now the sidebar isn't aligning correctly...


    <?php
    /**
    * Default Events Template
    * This file is the basic wrapper template for all the views if 'Default Events Template'
    * is selected in Events -> Settings -> Template -> Events Template.
    *
    * Override this template in your own theme by creating a file at [your-theme]/tribe-events/default-template.php
    *
    * @package TribeEventsCalendar
    * @since 3.0
    * @author Modern Tribe Inc.
    *
    */

    if ( !defined('ABSPATH') ) { die('-1'); } ?>

    <?php get_header(); ?>
    <div id="content" class="content-sidebar-wrap">
    <div id="tribe-events-pg-template">
    <?php tribe_events_before_html(); ?>
    <?php tribe_get_view(); ?>
    <?php tribe_events_after_html(); ?>
    </div> <!-- #tribe-events-pg-template -->

    </div>

    <div id="sidebar" class="widget-area">

    <?php genesis_sidebar() ?>

    </div>

    <?php get_footer(); ?>

    August 21, 2013 at 12:45 pm in reply to: Remove breadcrumbs from one page? #57991
    derekalvarez
    Member

    Geez, how simple was that? Thanks for the help, now I feel pretty dumb 😉

    August 20, 2013 at 6:25 pm in reply to: Remove breadcrumbs from one page? #57806
    derekalvarez
    Member

    Anyone?

    August 15, 2013 at 11:07 am in reply to: Remove breadcrumbs from one page? #56601
    derekalvarez
    Member

    I need to remove them from this page...
    http://www.tucsonrealestate.net/killer-idx/

    Because it is a template for all the pages like this...
    http://tucsonrealestate.blasshomes.com/newonmarkettoda_150944.cfm

    August 15, 2013 at 11:05 am in reply to: Remove breadcrumbs from one page? #56600
    derekalvarez
    Member

    I need to remove them from this page...
    http://www.tucsonrealestate.net/killer-idx/

    Because it is a template for all the pages like this...
    http://tucsonrealestate.blasshomes.com/newonmarkettoda_150944.cfm

    August 14, 2013 at 11:05 am in reply to: Going Green Sidebar Width #56343
    derekalvarez
    Member

    Thanks, Angela. I appreciate it!

    July 26, 2013 at 12:02 pm in reply to: How to edit blog page text in Generate theme #52627
    derekalvarez
    Member

    I opted for the second part. That's exactly what I needed, thanks!

    June 27, 2013 at 9:10 am in reply to: Align footer when screen size shrinks #48025
    derekalvarez
    Member

    That sounds like it would work, Chris. But I experimented and found this solution...

    I removed the Genesis viewport code from my functions.php file and then added this code to "Genesis>Theme Settings" in the wp_head() area...

    <meta name="viewport" content="width=1400, maximum-scale=1.0" />

    That did the trick for me because in this case I wanted everything to scale down just like it looks on the desktop.

    June 25, 2013 at 3:47 pm in reply to: Align footer when screen size shrinks #47717
    derekalvarez
    Member

    Thank you, Chris. I tried that and it didn't work because I think I didn't communicate clearly what I need... The bottom part of the bear image is not aligning with the rest of the bear when the screen gets smaller.

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 47 total)
← 1 2 3 →
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble