• 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

varshasalvi

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 26 total)
1 2 →
  • Author
    Posts
  • April 20, 2015 at 2:28 pm in reply to: Iphone /Ipad compatibility #148589
    varshasalvi
    Member

    Thank You Christoph. Does it mean that '//' these are causing an error in displaying the site in any way?

    March 20, 2015 at 5:24 pm in reply to: How to View my blog on iphone/ipad without distortion #145057
    varshasalvi
    Member

    Hello Julia,
    Thank you for reply. Could guide me as to what changes i need to make to the media queries ? Is there a CSS document or anything which would help me to understand how I could make those changes ?
    Also , could I completely remove the mobile responsiveness for my site?

    Thanks ,
    Varsha

    August 13, 2014 at 4:51 pm in reply to: how to make your website mobile responsive #118666
    varshasalvi
    Member

    Yup . I dont really have enough knowledge of PHP and css but I will try .
    was hoping for some tutorial. But I will give it a try.
    Thanks!

    August 13, 2014 at 4:13 pm in reply to: how to make your website mobile responsive #118662
    varshasalvi
    Member

    Oh So that means I have to make my website unresponsive?

    How can I do that ? Any tutorial or reference?

    August 13, 2014 at 3:36 pm in reply to: how to make your website mobile responsive #118653
    varshasalvi
    Member

    Oh ok My apologies. Maybe I dint explain myself properly.

    By 'Mobile Version' what I mean is what plugins like WPtouch offer .e.g.
    https://wordpress.org/plugins/wptouch/screenshots/

    Instead i want it to look like this example:
    http://www.designlovefest.com

    If you see this website looks same on the desktop browser as on the phone.
    Does it mean that this is mobile responsive or not mobile responsive.

    Sorry I am a little confused with the terminology here.
    Thanks

    August 13, 2014 at 3:07 pm in reply to: how to make your website mobile responsive #118642
    varshasalvi
    Member

    I do not want to make the Responsive theme unresponsive.
    I just want it to function like responsive like its supposed to but is not doing right now.

    August 13, 2014 at 11:14 am in reply to: How to increase the height of Jetpack Slideshow #118605
    varshasalvi
    Member

    It is working now 🙂

    Thank you Brad & Anita!

    August 13, 2014 at 10:46 am in reply to: How to increase the height of Jetpack Slideshow #118604
    varshasalvi
    Member

    Hi Anita,
    Well still no luck:(

    I do not have caching plugin on neither do I have Photon activated.
    I also tried putting the code in Stylesheet.css and removed it from the Custom CSS.

    I am not using the regenerate thumbnails plugin. Could you tell how that would make a change here?

    Thanks!

    August 12, 2014 at 10:06 pm in reply to: How to increase the height of Jetpack Slideshow #118502
    varshasalvi
    Member

    Hi Brad,

    I used the firebug tool too! However when i put the code in the CSS file and refresh the browser ,code gets overwritten.

    It just temporarily expands when change is made in the firebug window. but doesn't retain when the window is refreshed.

    August 12, 2014 at 11:27 am in reply to: How to increase the height of Jetpack Slideshow #118435
    varshasalvi
    Member

    Hi Brad,

    Its not working on my browser .. I am using firefox. I also tried the !important command to override the CSS.
    Still not working.

    Which browser did you test it on?

    August 9, 2014 at 1:43 pm in reply to: Size of featured images on CPT pages #117975
    varshasalvi
    Member

    Is there anyway I can share the code ?

    August 9, 2014 at 1:37 pm in reply to: Size of featured images on CPT pages #117971
    varshasalvi
    Member

    Thank you for that analysis. Any idea on what could be going wrong? I dont know php programming well 🙁 Trying to debug this !

    August 9, 2014 at 12:53 pm in reply to: How to add 'Back to Blog link' from a website page? #117955
    varshasalvi
    Member

    Perfect ! Thanks Brad.

    I am facing one more issue though:(

    I am using the same code for Portfolio CPT and its not working

    add_action( 'genesis_after_loop', 'wpsites_hook_button', 25 );
    function wpsites_hook_button() {
    if ( is_post_type_archive('portfolio') ) {
    echo'<div class="back-to-blog">';
    echo'BACK TO BLOG';
    echo'</div>';
    }
    }

    The error is that the page just goes blank when I update the functions.php file. Have no idea why this is happening.

    August 8, 2014 at 2:18 pm in reply to: How to add 'Back to Blog link' from a website page? #117814
    varshasalvi
    Member

    I got it it to work . I do not not have a knowledge about php but I am learning as i go . I made a mistake in the loop
    add_action( ‘genesis_after_loop’, ‘wpsites_hook_button’, 25 );
    function wpsites_hook_button()
    I changed button with back to blog.

    However, now its a button on the page and if I change the CSS to make it look like a link the css of other buttons on the page also changes.
    Is there a way to avoid that ? I am thinking I will have to create like another custom(button/link or something)
    Also, if I have to do the same thing for portfolio page , i have to just replace the conditional tag to

    if ( is_post_type_archive('portfolio') )

    right?

    August 7, 2014 at 8:56 pm in reply to: How to add 'Back to Blog link' from a website page? #117697
    varshasalvi
    Member

    I pasted the code in the functions.php folder of my current child theme which is 'Beautiful Pro'.

    I did use Notepad++ to copy the code first

    August 7, 2014 at 1:09 pm in reply to: How to add 'Back to Blog link' from a website page? #117621
    varshasalvi
    Member

    Hi Brad,

    I am using this code :

    add_action( 'genesis_after_loop', 'wpsites_hook_back-to-blog', 25 );
    function wpsites_hook_back-to-blog() {
    if ( is_post_type_archive('art-gallery') ) {
    echo'<div class="custom-back-to-blog">';
    echo'BACK TO BLOG';
    echo'</div>';
    }
    }
    But it is giving me an error! I got this snippet from the link you provided above and changed the genesis-before-loop to after , changed the conditional tag and button class to back-to-blog class i created in CSS.

    Could you tell me where am I going wrong?

    July 31, 2014 at 12:10 pm in reply to: How to display post titles on portfolio page? #116464
    varshasalvi
    Member

    Also how can i create the " Back to Portfolio link" ?
    Is there a php/html code ? and where do i insert this code?

    Thanks!

    July 24, 2014 at 3:38 pm in reply to: how to create a portfolio page in genesis #115768
    varshasalvi
    Member

    That would be great !!!
    Thanks a lot Brad.

    July 24, 2014 at 1:28 pm in reply to: how to create a portfolio page in genesis #115746
    varshasalvi
    Member

    oh never mind , i got it !
    Sorry for that.
    However i still have one question, can i make changes to the CSS file in your post to match my theme?
    and could still elaborate on

    You’ll also need to create a new admin-style.css file which goes inside a new folder named lib and include the icons folder from the Executive Pro theme in the same folder.

    Thanks in advance !

    July 24, 2014 at 1:21 pm in reply to: how to create a portfolio page in genesis #115745
    varshasalvi
    Member

    Thank you Brad,
    But will this work for Beautiful pro theme?
    Also,
    you have mentioned this in your post :
    You’ll need to create 3 new page templates using a text editor like Notepad++:
    archive_portfolio.php
    single_portfolio.php
    taxonomy_portfolio_type.php

    Next step is to paste all the functions.php code into your child themes functions.php file.

    So do you mean create these separately and then just copy all the code from them and paste it in existing child theme's functions.php?

    and what is this step for :
    You’ll also need to create a new admin-style.css file which goes inside a new folder named lib and include the icons folder from the Executive Pro theme in the same folder.

    Thanks.

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