• 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

Victor Font

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 - 7,761 through 7,780 (of 7,856 total)
← 1 2 3 … 388 389 390 391 392 393 →
  • Author
    Posts
  • February 21, 2015 at 11:54 am in reply to: Woocommerce freezing site with Streamline at checkout #141661
    Victor Font
    Moderator

    Genesis themes already come setup for a left and right sidebar. All you have do do is select the format, which can be done on a site level through Genesis/Theme Settings or on a page level by selecting the format. If you install the Genesis simple sidebars plugin, you can create as many sidebars as you'd like and assign different sidebars to individual pages.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 11:20 am in reply to: Custom Post Type Structure #141656
    Victor Font
    Moderator

    What the hierarchy does is allow you to create a parent child relationship within a single custom post type. You will not be able to create a hierarchy of different post types the way you want to engineer this. You will see the hierarchy in the all posts admin screen and when displayed on the front end, the permalink will display the hierarchy. Here is some code that you can add to your functions.php that will allow you to experiment with hierarchy.

    add_action( 'init', 'register_my_cpts' );
    function register_my_cpts() {
    	$labels = array(
    		'name' => 'CPTs',
    		'singular_name' => 'CPT',
    		);
    
    	$args = array(
    		'labels' => $labels,
    		'description' => 'My Custom Post type',
    		'public' => true,
    		'show_ui' => true,
    		'has_archive' => true,
    		'show_in_menu' => true,
    		'exclude_from_search' => false,
    		'capability_type' => 'post',
    		'map_meta_cap' => true,
    		'hierarchical' => true,
    		'rewrite' => array( 'slug' => 'cpt', 'with_front' => true ),
    		'query_var' => true,
    		'supports' => array( 'title', 'editor', 'excerpt', 'custom-fields', 'comments', 'revisions', 'thumbnail', 'page-attributes', 'post-formats' ),
    		'taxonomies' => array( 'category', 'post_tag' )	);
    	register_post_type( 'cpt', $args );
    
    // End of register_my_cpts()
    }
    

    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 10:48 am in reply to: Sidebar alt links not active after CSS edit #141648
    Victor Font
    Moderator

    It's your z-index dimension. Comment it out and the links will work. By making z-index -1, you are stacking it underneath the inner wrap rendering the links inaccessible.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 10:40 am in reply to: Navigation on Header right widget area not responsive #141647
    Victor Font
    Moderator

    I fixed this on another site I was working on. When you place the menu in the header, the class changes to header nav. It is no longer primary nav. I work on so many sites that I can't remember on which site I fixed this, but what I did was was write a little piece of jQuery code to rename the class for header nav back to primary nav and everything worked.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 10:32 am in reply to: Custom Post Type Structure #141646
    Victor Font
    Moderator

    It's still going to be complicated and you'll have to do a lot of custom coding to display the custom post types on the front end. You'll still have to use custom fields or build custom metaboxes for the additional details. For each custom post type you create, you need to create a custom page template to display the posts associated with that category.

    For example, for each custom post type, you would need to a make a copy of page_blog.php from the main Genesis directory and rename it to page_cptname.php, copy the new file to your child theme directory, then add the following code:

    remove_action('genesis_loop', 'genesis_do_loop');
    add_action('genesis_loop', 'mycpt_do_loop');
    function mycpt_do_loop() {
    	global $paged;
    	$args = array('post_type' => 'mycpt_name');
    
    	genesis_custom_loop( $args );
    }
    
    genesis();

    Remember to save permalinks after you create the cpts or they won't display.

    Because you want to use a CPT for each category, you won't be able to create a category hierarchy using categories. You can create a hierarchy though using a menu.

    Hope this helps.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 10:18 am in reply to: Centering post excerpts thumbnail #141645
    Victor Font
    Moderator

    Try adding this code to your functions.php:

    **
    * Remove Image Alignment from Featured Image
    *
    */
    function vmf_remove_image_alignment( $attributes ) {
    $attributes['class'] = str_replace( 'alignleft', 'aligncenter', $attributes['class'] );
    return $attributes;
    }
    add_filter( 'genesis_attr_entry-image', 'vmf_remove_image_alignment' ); 

    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 9:49 am in reply to: Custom Post Type Structure #141641
    Victor Font
    Moderator

    Sounds to me like you're over engineering this. Custom post types are still just posts. Why wouldn't you just use posts? What advantage do you think CPTs will provide?


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 8:09 am in reply to: Sticky Primary & Secondary Nav Cafe Pro #141634
    Victor Font
    Moderator

    Try adding position: fixed; to the secondary nav css.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 7:58 am in reply to: Lifestyle Pro: Full width footer is driving me crazy :( #141633
    Victor Font
    Moderator

    Add the following code to the css block for ".header-full-width.header-image .site-title a" on line 978 of style.css:

    position: relative;
    left: 10px;

    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 7:44 am in reply to: Changing the header banner #141632
    Victor Font
    Moderator

    To change the dimensions of the header, change the following line (27) in functions.php:

    /** Add support for custom header */
    add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 115 ) );

    You will also need to adjust the size of site title and possibly header right in style.css.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 7:23 am in reply to: HELP! Parallax third party theme #141631
    Victor Font
    Moderator

    You need to edit the css in the theme's style.css file. The border and width of the slider is controlled by css found in the .home-section-1 .wrap class beginning on line 1197. Once you change the dimensions of the wrap, I think #2 will take care of itself.

    The featured image should be able to be displayed by checking "Include the Featured Image?" under the Genesis/Theme Settings menu in the Content Archives section.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 7:04 am in reply to: Woocommerce freezing site with Streamline at checkout #141628
    Victor Font
    Moderator

    You have a core genesis function genesis_before_content() getting declared in the child theme's functions.php file. You cannot redeclare genesis core functions in a child theme.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 21, 2015 at 6:57 am in reply to: Images in Menu – Magazine Theme #141626
    Victor Font
    Moderator

    Insert a non-breaking space in the Navigation label field. A non-breaking space is created with   You may have to use 2 or 3 non-breaking spaces to give you the correct width for the images.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 6:14 pm in reply to: Multiple h1 headlines in Genesis themes? #141582
    Victor Font
    Moderator

    There should be multiple H1 tags if the site is HTML5. Here is what Yoast has to say on the matter: https://yoast.com/headings-use/


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 6:09 pm in reply to: Changing post title font & color in Foodie theme #141581
    Victor Font
    Moderator

    How are you loading the BlackJack font?


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 5:59 pm in reply to: Sidebar alt links not active after CSS edit #141580
    Victor Font
    Moderator

    You have a double semi-colon after the z-index. That will break your css.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 5:57 pm in reply to: Images in Menu – Magazine Theme #141579
    Victor Font
    Moderator

    Yes, you can do this. Here's an article that explains how: http://premium.wpmudev.org/blog/wordpress-custom-menu-icons/


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 5:52 pm in reply to: Lifestyle Pro – Widgets not responsive #141578
    Victor Font
    Moderator

    Where did you change the copyright info? I'd start looking for the problem there.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 5:13 pm in reply to: Lifestyle Pro – Widgets not responsive #141573
    Victor Font
    Moderator

    You're HTML is missing a closing tag somewhere. I copied the page source into an editor and formatted the code. You are missing the closing div tag for the wrap around the footer text.

    You have this:

    	<footer class="site-footer" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
    		<div class="wrap">
    			<div align="center">
    				© 2015 Integrated Mobile Technologies, LLC • All Rights Reserved 
    			</div>
    	</footer>
    

    It should be this:

    	<footer class="site-footer" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
    		<div class="wrap">
    			<div align="center">
    				© 2015 Integrated Mobile Technologies, LLC • All Rights Reserved 
    			</div>
    		</div>
    	</footer>

    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    February 20, 2015 at 12:16 pm in reply to: Header Link Not Working on Premise Landing Page #141503
    Victor Font
    Moderator

    Just tried it and the link is working fine.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

  • Author
    Posts
Viewing 20 posts - 7,761 through 7,780 (of 7,856 total)
← 1 2 3 … 388 389 390 391 392 393 →
« 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