• 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

Saqib Ali

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 33 total)
1 2 →
  • Author
    Posts
  • February 2, 2019 at 3:05 pm in reply to: CSS Affect on Store Page #489244
    Saqib Ali
    Member

    There are irregular gaps (columns) between the products. It was perfectly fine until I installed the WooCommerce donate plugin.

    Ah, never noticed the buttons, good spot, cheers.

    I'd like the products to be next to each other just like the theme demo https://demo.seothemes.com/studio-pro/shop/

    February 2, 2019 at 11:55 am in reply to: CSS Affect on Store Page #489240
    Saqib Ali
    Member

    Could it be that the Genesis Connect plugin is causing an issue?

    December 5, 2017 at 7:57 am in reply to: reposition genesis_header_right widget area #214280
    Saqib Ali
    Member

    So how do you implement CSS Grid within the editor area of WordPress?

    The tutorial only covers the header area.

    June 13, 2017 at 9:53 am in reply to: Pages not working #207702
    Saqib Ali
    Member

    Yep, it worked, ah woocommerce is so damn annoying! Cheers!

    May 23, 2017 at 6:22 am in reply to: Set custom stylesheet to override styles.css #206871
    Saqib Ali
    Member

    Cheers @victorfont I've updated the functions.php file and have given styles.css a higher priority, however, when I tried to give an even higher priority for the custom stylesheet, the page has spat out an error on the top.

    
    //* Loads Responsive Menu, Google Fonts, Icons, and other scripts
    add_action( 'wp_enqueue_scripts', 'market_enqueue_scripts' );
    function market_enqueue_scripts() {
    
    	wp_enqueue_style( 'google-font', '//fonts.googleapis.com/css?family=Gentium+Basic:400,400italic|Arimo:400,400italic|IM+Fell+English:400,400italic|EB+Garamond|Homemade+Apple', array() );
    	wp_enqueue_style( 'ionicons', '//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css', array(), CHILD_THEME_VERSION );
    	wp_enqueue_style( 'custom', get_stylesheet_directory_uri() . '/custom.css' );
    	wp_enqueue_script( 'global-script', get_bloginfo( 'stylesheet_directory' ) . '/js/global.js', array( 'jquery' ), '1.0.0' );
    	wp_enqueue_script( 'localScroll', get_stylesheet_directory_uri() . '/js/jquery.localScroll.min.js', array( 'scrollTo' ), '1.2.8b', true );
    	wp_enqueue_script( 'scrollTo', get_stylesheet_directory_uri() . '/js/jquery.scrollTo.min.js', array( 'jquery' ), '1.4.5-beta', true );
    	wp_enqueue_script( 'market-fadeup-script', get_stylesheet_directory_uri() . '/js/fadeup.js', array( 'jquery' ), '1.0.0', true );
    	wp_enqueue_script( 'match-height', get_stylesheet_directory_uri() . '/js/jquery.matchHeight-min.js', array( 'jquery' ), '1.0.0', true );
    	wp_enqueue_script( 'match-height-init', get_stylesheet_directory_uri() . '/js/matchheight-init.js', array( 'match-height' ), '1.0.0', true );
    }
    
    //* Load main style sheet after WooCommerce */
    remove_action( 'genesis_meta', 'genesis_load_stylesheet' );
    add_action( 'wp_enqueue_scripts', 'genesis_enqueue_main_stylesheet', 30 ); //change load priority
    
    add_action( 'wp_enqueue_scripts', 'custom', 40 ); //custom stylesheet
    
    May 23, 2017 at 6:20 am in reply to: Set custom stylesheet to override styles.css #206869
    Saqib Ali
    Member

    Thank you @victorfont I've updated the functions.php file and have given styles.css a higher priority, however, when I tried to give an even higher priority for the custom stylesheet, the page has spat out an error on the top.

    
    //* Loads Responsive Menu, Google Fonts, Icons, and other scripts
    add_action( 'wp_enqueue_scripts', 'market_enqueue_scripts' );
    function market_enqueue_scripts() {
    
    	wp_enqueue_style( 'google-font', '//fonts.googleapis.com/css?family=Gentium+Basic:400,400italic|Arimo:400,400italic|IM+Fell+English:400,400italic|EB+Garamond|Homemade+Apple', array() );
    	wp_enqueue_style( 'ionicons', '//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css', array(), CHILD_THEME_VERSION );
    	wp_enqueue_style( 'custom', get_stylesheet_directory_uri() . '/custom.css' );
    	wp_enqueue_script( 'global-script', get_bloginfo( 'stylesheet_directory' ) . '/js/global.js', array( 'jquery' ), '1.0.0' );
    	wp_enqueue_script( 'localScroll', get_stylesheet_directory_uri() . '/js/jquery.localScroll.min.js', array( 'scrollTo' ), '1.2.8b', true );
    	wp_enqueue_script( 'scrollTo', get_stylesheet_directory_uri() . '/js/jquery.scrollTo.min.js', array( 'jquery' ), '1.4.5-beta', true );
    	wp_enqueue_script( 'market-fadeup-script', get_stylesheet_directory_uri() . '/js/fadeup.js', array( 'jquery' ), '1.0.0', true );
    	wp_enqueue_script( 'match-height', get_stylesheet_directory_uri() . '/js/jquery.matchHeight-min.js', array( 'jquery' ), '1.0.0', true );
    	wp_enqueue_script( 'match-height-init', get_stylesheet_directory_uri() . '/js/matchheight-init.js', array( 'match-height' ), '1.0.0', true );
    }
    
    //* Load main style sheet after WooCommerce */
    remove_action( 'genesis_meta', 'genesis_load_stylesheet' );
    add_action( 'wp_enqueue_scripts', 'genesis_enqueue_main_stylesheet', 30 ); //change load priority
    
    add_action( 'wp_enqueue_scripts', 'custom', 40 ); //custom stylesheet
    
    May 21, 2017 at 7:43 am in reply to: Updating custom CSS via IDE #206794
    Saqib Ali
    Member
    This reply has been marked as private.
    May 20, 2017 at 11:39 am in reply to: Updating custom CSS via IDE #206765
    Saqib Ali
    Member

    Actually one more thing, now that the file has been enqueued correctly, how would you go about making this custom stylesheet more prominent because some the style.css stylesheet is not being overridden by some changes I've made in the custom.css stylesheet.

    May 20, 2017 at 7:34 am in reply to: Updating custom CSS via IDE #206747
    Saqib Ali
    Member

    Ah, that's it @braddalton, thank you very much!

    March 30, 2017 at 9:13 am in reply to: Dividers #204059
    Saqib Ali
    Member

    Cheers, whenever I try doing this, it throws the corresponding widget off, I'll have to try another method.

    March 8, 2017 at 5:08 pm in reply to: Layout issues #202731
    Saqib Ali
    Member

    Cheers.

    Something along them lines should do, I'll just need to tweak it a bit.

    March 1, 2017 at 4:18 am in reply to: Colored content boxes and buttons code not working #202236
    Saqib Ali
    Member

    Yes, that's done the trick, cheers!

    February 28, 2017 at 1:59 pm in reply to: Colored content boxes and buttons code not working #202208
    Saqib Ali
    Member

    Thank you for pointing that.

    However, the CSS isn't having an effect on it.

    December 6, 2016 at 5:12 pm in reply to: Header image site title clash #197146
    Saqib Ali
    Member

    It's sorted, I corrected it by targeting:

    .primary-nav .site-header { display: none; }

    It's strange how the logo was being mirrored, one of the plugins has effected the backend font, highlighting and layout, need to find it.

    Cheers.

    December 6, 2016 at 4:04 pm in reply to: Header image site title clash #197140
    Saqib Ali
    Member

    Nothing?

    December 6, 2016 at 4:45 am in reply to: Full width slider #197109
    Saqib Ali
    Member

    Cheers @Victor Font, btw below the genesis-nav-menu my logo seems to have been replicated, any reason why this is happening? And I can get rid of this area of the site altogether? When I resort to using:

    display: none;

    However, the logo within the genesis-nav-menu disappears also, somehow they're linked.

    Would I need to address this within PHP?

    December 2, 2016 at 3:25 am in reply to: Moving logo into main navigation (magazine pro theme) #196901
    Saqib Ali
    Member

    Cheers @braddalton really appreciate the help and good job with the video.

    November 30, 2016 at 4:44 pm in reply to: Moving logo into main navigation (magazine pro theme) #196837
    Saqib Ali
    Member

    Thanks, appreciate you highlighting the same link @braddalton.

    I tried the first approach but I was going around in circles.

    I've copied and pasted the code from the link into my functions.php file but I only see options for being to add:

    - Changing primary to secondary / vice versa
    - Search
    - Time and Date

    How would I go about adding the logo into the top left or as the first item?

    add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 );
    /**
     * Filter menu items, appending either a search form or today's date.
     *
     * @param string   $menu HTML string of list items.
     * @param stdClass $args Menu arguments.
     *
     * @return string Amended HTML string of list items.
     */
    function theme_menu_extras( $menu, $args ) {
    	//* Change 'primary' to 'secondary' to add extras to the secondary navigation menu
    	if ( 'primary' !== $args->theme_location )
    		return $menu;
    	//* Uncomment this block to add a search form to the navigation menu
    	/*
    	ob_start();
    	get_search_form();
    	$search = ob_get_clean();
    	$menu  .= '<li class="right search">' . $search . '</li>';
    	*/
    	//* Uncomment this block to add the date to the navigation menu
    	/*
    	$menu .= '<li class="right date">' . date_i18n( get_option( 'date_format' ) ) . '</li>';
    	*/
    	return $menu;
    }
    November 30, 2016 at 9:57 am in reply to: Moving logo into main navigation (magazine pro theme) #196824
    Saqib Ali
    Member

    Was I supposed to do this?

    //* Reposition the primary navigation menu
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_header', 'genesis_do_nav' );
    November 16, 2016 at 12:57 pm in reply to: Moving logo into main navigation (magazine pro theme) #196255
    Saqib Ali
    Member

    And also the slider now is getting eaten up by the nav-primary.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 33 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

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