• 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

DTHkelly

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 - 461 through 480 (of 502 total)
← 1 2 3 … 23 24 25 26 →
  • Author
    Posts
  • July 10, 2014 at 5:26 am in reply to: Change Menu color & font #113723
    DTHkelly
    Member

    http://wpsites.net/web-design/changing-the-primary-navigation-colors-in-studiopress-themes/
    http://wpsites.net/web-design/changing-the-color-of-each-nav-menu-item/

    July 9, 2014 at 9:33 pm in reply to: Titles on Posts not pages #113680
    DTHkelly
    Member

    https://wordpress.org/plugins/genesis-title-toggle/ works on pages (not posts). So it should work on pages (I misread your thread, sorry).

    July 9, 2014 at 9:23 pm in reply to: Titles on Posts not pages #113677
    DTHkelly
    Member

    Add plugin support for page (as a custom post type) in functions.php?

    Related: http://wpsites.net/best-plugins/add-custom-post-type-support-to-genesis-simple-menus-plugin/

    But the Genesis Title Toggle plugin suggests a different method

    Finally, if you're comfortable with code you can use the be_title_toggle_post_types filter to change the post types this applies to (it only applies to pages by default).

    Perhaps Bill Erickson's site provides the code for the above?

    July 9, 2014 at 6:43 am in reply to: New To The Genesis Family! #113547
    DTHkelly
    Member

    http://www.rickrduncan.com/free-genesis-child-themes

    July 8, 2014 at 5:45 pm in reply to: Center and Style Secondary Menu #113497
    DTHkelly
    Member

    Two more tutorials re: styling Nav:
    http://wpsites.net/web-design/changing-the-primary-navigation-colors-in-studiopress-themes/
    http://wpsites.net/web-design/changing-the-color-of-each-nav-menu-item/

    July 8, 2014 at 5:39 pm in reply to: How to swap primary and secondary navigation #113494
    DTHkelly
    Member

    Hope the following helps!

    Consider pasting PHP code snippets in: https://wordpress.org/plugins/code-snippets/ instead of your childtheme's functions.php.

    As you noted, you can swap Menu position:
    http://my.studiopress.com/snippets/ > Navigation Menus. Includes snippets re: how to relocate the Secondary Nav.

    From the above snippets, Sub Nav moves from after header to before header (based on the remove action hook and the add action hook).

    Use Genesis Hook Guide for the desired location hook location
    http://genesistutorials.com/visual-hook-guide/

    Look in your theme files for the CSS re: Primary Nav. This should help you style Secondary Nav to look like Primary Nav.

    Here's a tutorial:
    http://wpsites.net/web-design/changing-the-primary-navigation-colors-in-studiopress-themes/

    July 8, 2014 at 1:09 pm in reply to: Changing Post Meta Data Overlaid on Images on Magazine Pro Theme #113458
    DTHkelly
    Member

    From Support:

    Look in the theme folder itself on the server.

    /magazine-pro/js/entry-date.js

    It uses append($time) to produce the date.

    Remove that and replace with the function you wish to show.

    http://codex.wordpress.org/Function_Reference/get_the_category

    We have to replace: append($time) to produce the category

    Would it be:
    append($category)

    Close but ...?????

    July 8, 2014 at 12:37 pm in reply to: Changing Post Meta Data Overlaid on Images on Magazine Pro Theme #113446
    DTHkelly
    Member

    Speedy and (partial) response from Support:

    This is all done with CSS and JS, so you'd need to find all the instances of CSS like this and change it to the corresponding CSS for category and change this script - https://github.com/copyblogger/themes/blob/master/magazine-pro/js/entry-date.js

    And also this css:
    .js .content .home-middle a .entry-time, .js .content .home-top a .entry-time {
    background-color: #E8554E;
    bottom: 24px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 10px;
    position: absolute;
    right: 0;

    July 8, 2014 at 11:34 am in reply to: Changing Post Meta Data Overlaid on Images on Magazine Pro Theme #113439
    DTHkelly
    Member

    I don't know the answer (just submitted a help ticket), but here's what needs to be changed:

    http://www.studiopress.community/topic/magazine-pro-javascript-files/

    July 8, 2014 at 11:01 am in reply to: Center and Style Secondary Menu #113436
    DTHkelly
    Member

    http://sridharkatakam.com/wrap-primary-secondary-navigation-custom-divs-genesis/
    After you create the Secondary Nav div, you can use CSS to style it.

    http://sridharkatakam.com/center-navigation-menus-genesis/

    July 7, 2014 at 6:45 pm in reply to: Show subpages more like a grid #113295
    DTHkelly
    Member

    Great!

    Please post which tutorial worked for you.

    July 6, 2014 at 3:15 pm in reply to: Winning Agent Pro – Change property detail fields #113152
    DTHkelly
    Member

    I use https://wordpress.org/plugins/code-snippets/ to add PHP snippets (instead of adding to childtheme functions.php file)

    Here is a "snippet" that translates 3 separate words/phrases in a Custom Post Type in my Dynamik-Genesis childtheme. I use the Code Snippets plugin to add the snippet.

    Othewise, add your version of the function at the end of your childtheme's functions.php file:

    /* Replace Text */
    add_filter('gettext', 'translate_text'); 
    add_filter('ngettext', 'translate_text');
    function translate_text($translated) { 
     /* Sensei Lesson Translated to Unit */
    	$translated = str_ireplace('Lesson', 'Unit', $translated);
        /* Sensei New Courses Translated to Available Courses */
        $translated = str_ireplace('New Courses', 'Available Courses', $translated);
    	/* Sensei Teacher Translated to Faculty */
        $translated = str_ireplace('Teacher', 'Faculty', $translated);
    	return $translated; 
    }

    I have 3 translations above in the same function. Keep in mind you can only use this function once (otherwise "white screen of death" ensues), so you have to correctly add new string translations within the same function.

    Back up your site. Better yet, test on a test site.

    July 6, 2014 at 3:01 pm in reply to: Winning Agent Pro – Change property detail fields #113151
    DTHkelly
    Member

    The theme author will have the best answer.

    But in the meantime:

    If Property Details are Custom Post Types, see the "translation" links in this thread.

    Need Help Please!!

    You can "translate" English word "Bedrooms" to English words "Lot Size"

    Or open the zip file that you downloaded from StudioPress, find the CPT template file and (off line) change the field text. Upload the revised file to your childtheme.

    July 6, 2014 at 9:50 am in reply to: Adding static content to Magazine Pro homepage #113133
    DTHkelly
    Member

    Would this help with static content on the home page?
    https://wordpress.org/plugins/genesis-featured-page-extras/

    July 6, 2014 at 9:46 am in reply to: [Magazine Pro Theme] Need help with design #113132
    DTHkelly
    Member

    For logo in Nav Bar, have you seen this?
    http://wpsites.net/web-design/add-logo-nav-menu/

    July 6, 2014 at 9:39 am in reply to: Increase the width of header right widget area in Magazine pro theme #113131
    DTHkelly
    Member

    Have you seen this?

    Magazine Pro theme – add logo/site title in navigation

    July 6, 2014 at 7:54 am in reply to: Show subpages more like a grid #113127
    DTHkelly
    Member

    http://sridharkatakam.com/ has a lot of tutorials, and searching "grid" on his site:
    http://sridharkatakam.com/?s=grid

    July 5, 2014 at 4:51 pm in reply to: Need Help Please!! #113087
    DTHkelly
    Member

    http://my.studiopress.com/help/
    You need to be logged in.

    Log in to:
    http://my.studiopress.com/

    At the bottom "Get Help" > "Contact Support"

    July 5, 2014 at 6:33 am in reply to: Functions = Speed issues? #113035
    DTHkelly
    Member

    Glad I use Dynamik (and Genesis extender with Genesis childthemes) for "straightforward templating." Works with ACF, too.

    July 5, 2014 at 6:30 am in reply to: Need Help Please!! #113034
    DTHkelly
    Member

    Studiopress will answer questions about Genesis core (and translating their childthemes) - have you submitted a help ticket?

  • Author
    Posts
Viewing 20 posts - 461 through 480 (of 502 total)
← 1 2 3 … 23 24 25 26 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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