• 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

rbrown08

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 - 1 through 20 (of 36 total)
1 2 →
  • Author
    Posts
  • December 9, 2014 at 10:42 pm in reply to: Genesis Fatal Error #134127
    rbrown08
    Member

    I'm sorry are you telling me I should? I'm starting to think I've been hacked. I ran the site through Sucuri and received malware warnings. Also received malware warnings for my other site bgldesigns.com, which is hosted by a different company. Could this be the issue?


    @Roxann3Brown

    December 9, 2014 at 9:26 pm in reply to: Genesis Fatal Error #134125
    rbrown08
    Member

    Thanks for your response... I did not.


    @Roxann3Brown

    December 15, 2013 at 6:39 pm in reply to: Custom Styles #79305
    rbrown08
    Member

    I read another thread that suggested installing the Jetpack plugin, which adds a custom style sheet. I did that and I've got the slider button working now. Still need to figure out how to override the styling that WooCommerce is placing on my button in the footer section.


    @Roxann3Brown

    July 18, 2013 at 8:08 pm in reply to: Internet Explorer 10 Not Displaying Site Correctly #51377
    rbrown08
    Member

    Hi Stewart,

    Thank you for looking at this for me and for the screenshot. I've heard this from a few people; do you think it could be a setting they have on their computer?

    ~Roxanne


    @Roxann3Brown

    April 17, 2013 at 9:51 pm in reply to: genesis translations plugin #36067
    rbrown08
    Member

    I have a site that is a multisite wp install - one side of the site is in English, the other side in Spanish.  Both areas of the site use all of the same plugins.  I have one plugin "Simple Maps" that I need to translate to Spanish for the Spanish part of the site.  Does anyone have any ideas or suggestions on how I might be able to do this?

    The page where the plugin is being used is on the "Where to Buy" page on the English side and "Donde Comprar" on the Spanish side.  I need the search fields labeled in Spanish for the Spanish site.  http://www.lanadil.com

     

     


    @Roxann3Brown

    April 16, 2013 at 2:13 am in reply to: Executive Theme – Active Page Not Highlighted on Home #35726
    rbrown08
    Member

    Perfect, Thank you!  It works now 🙂

     


    @Roxann3Brown

    March 20, 2013 at 9:52 pm in reply to: Genesis Featured Page Widget Issue #29855
    rbrown08
    Member

    Thank you!  I just noticed something else that doesn't work properly.  When you click on the button, you should land at the area of text just after the word count set for the widget.  Mine just takes you to the top of the page.


    @Roxann3Brown

    March 20, 2013 at 9:14 pm in reply to: Genesis Featured Page Widget Issue #29851
    rbrown08
    Member

    Sorry, forgot about that.  I do still need assistance and have turned the site on.

     


    @Roxann3Brown

    January 24, 2013 at 8:15 pm in reply to: How to Create a Splash Page #14514
    rbrown08
    Member

    Somehow my post was sent twice and I couldn't delete....


    @Roxann3Brown

    January 24, 2013 at 8:14 pm in reply to: How to Create a Splash Page #14513
    rbrown08
    Member

    You're welcome.  I'm glad someone else thinks it's as cool as I think it is, lol.


    @Roxann3Brown

    January 24, 2013 at 7:52 pm in reply to: How to Create a Splash Page #14506
    rbrown08
    Member

    @tomarob,  That's a good way too because you can use that template for several pages if you like.

    For creating CSS buttons for your site, I love this:  http://css-tricks.com/examples/ButtonMaker/.


    @Roxann3Brown

    January 24, 2013 at 6:52 pm in reply to: How to Create a Splash Page #14485
    rbrown08
    Member

    @bamajr,

    Here's the code I used on a template page and you I've put in BOLD where the html code would go.  This worked for me...

    <code>

    <?php
    /**
    * This file adds the For Women template to our Child Theme.
    *
    * @author Roxanne Brown
    * @package Child
    * @subpackage Customizations
    */

    /*
    Template Name: For Women
    */

    // Add custom body class to the head
    add_filter( 'body_class', 'add_body_class' );
    function add_body_class( $classes ) {
    $classes[] = 'forwomen';
    return $classes;
    }

    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); // Force Full-Width Layout
    remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' ); // Removes breadcrumbs
    remove_action( 'genesis_post_title','genesis_do_post_title' ); // Removes post title
    remove_action( 'genesis_post_content', 'genesis_do_post_content' ); // Removes content
    add_action( 'genesis_post_content', 'child_do_content' ); // Adds your custom page code/content

    // Do Custom Content
    function child_do_content() { ?>

    THIS IS WHERE YOU CAN PUT IN YOUR HTML CODE.

    <?php }
    genesis();


    @Roxann3Brown

    January 24, 2013 at 4:14 pm in reply to: Splash Page with Quicktime Video #14419
    rbrown08
    Member

    Thanks, I think I'll take a look at Vimeo and how that would look.  I really do appreciate the comments 🙂  You gave me more food for thought...


    @Roxann3Brown

    January 24, 2013 at 4:07 pm in reply to: Splash Page with Quicktime Video #14415
    rbrown08
    Member

    Thanks for the feedback anitac.  It's actually not my site and I am working on talking them out of using the video, but they really want it.


    @Roxann3Brown

    January 24, 2013 at 12:27 pm in reply to: Splash Page with Quicktime Video #14358
    rbrown08
    Member

    I've got the landing page creation part down.  I just can't find how to embed the video on the landing page template I've created.  Through further researching, I believe I need some javascript.


    @Roxann3Brown

    January 23, 2013 at 11:15 pm in reply to: How to Create a Splash Page #14246
    rbrown08
    Member

    I couldn't just iframe the video in because the whole idea is that the page will not have the header and footer sections like the entire website has.  What I need is an intro page that strictly has the video running and then the user clicks a link to enter the site.

    I've tried iframes in the past for other types of projects and IE doesn't read iframes; I don't know if that is still the case.


    @Roxann3Brown

    January 23, 2013 at 7:36 pm in reply to: Splash Page with Quicktime Video #14214
    rbrown08
    Member

    Although that plugin would work, I want the page to be a template that does not load the header and the footer sections.  Can that be done without creating a page template?  I don't think so...


    @Roxann3Brown

    January 23, 2013 at 3:01 pm in reply to: How to Create a Splash Page #14127
    rbrown08
    Member

    Hi, I'm wondering if you got this figured out as I've been asked to do the same thing.  I can make the landing page, but I don't know how I'm to add the flash animation to it.


    @Roxann3Brown

    January 18, 2013 at 5:33 pm in reply to: Small difference IE/FF vs Chrome/Safari on primary navigation #12989
    rbrown08
    Member

    I'm having a similar issue with my navigation menu.  I wish someone would answer your question; I can't figure it out or find any information online.


    @Roxann3Brown

    January 18, 2013 at 2:50 pm in reply to: Center Text on Navigation Menu #12930
    rbrown08
    Member

    I still can't figure this out.  Can anyone help me understand what it is I need to do to get the text centered without moving the highlight image down?


    @Roxann3Brown

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 36 total)
1 2 →

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