• 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

cdils

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 - 381 through 400 (of 416 total)
← 1 2 3 … 19 20 21 →
  • Author
    Posts
  • January 21, 2013 at 5:23 pm in reply to: Hotlink possible in Text Widget in Prose? #13597
    cdils
    Participant

    Hi there,

    You should be fine using a link in the text portion of the Text widget (but not the headline). As a matter of fact, any HTML tags should be supported. If you wanted to use shortcodes or execute PHP or get fancy, there are additional steps you'd need to take.

    You can insert a regular link like this:

    <a href="http://yoursite.com">This is a link</a>

    And an email link like this:

    <a href="mailto:[email protected]">Email me</a>

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 21, 2013 at 5:19 pm in reply to: Connecting To Aweber #13594
    cdils
    Participant

    Hey there,

    The official site for the plugin has some Β info (about halfway down the page) for connecting to Aweber.

    http://www.brandonkraft.com/contrib/plugins/genesis-enews-extended/

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 20, 2013 at 5:48 pm in reply to: Creating a single category page #13364
    cdils
    Participant

    Thinking so more on this... Using that tutorial and setting it to use the Blog template will get rid of your "intro" text that you've typed into the page (just the nature of using the Blog template).

    If you go to Posts > Categories > and edit your Q&A category, you'll see a spot to add an "Archive Headline" and "Archive Intro Text" - what about filling in that information and then just linking to your category archive page here:

    http://stress-free-mama.com/category/stress-questions-and-answers/


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 20, 2013 at 5:22 pm in reply to: Creating a single category page #13360
    cdils
    Participant

    Make sure that page is using the "Blog Template" and not the Default Template.


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 20, 2013 at 11:06 am in reply to: Taxonomy Images #13287
    cdils
    Participant

    This line needs to be corrected from

    $post_meta = ' wp_get_attachment_image( $term->224, ‘full’ ) [post_terms before="Price: " taxonomy="price"]

    to

    $post_meta = wp_get_attachment_image( $term->224, ‘full’ ) . '[post_terms before="Price: " taxonomy="price"]

    Including it within the single quote was telling it is was text as opposed to code to execute. πŸ™‚


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 4:27 pm in reply to: What Happened to Video Tutorials? #12974
    cdils
    Participant

    Hi Jodzee,

    Here's a tutorial on setting up the AgentPress home page you might find helpful: http://www.carriedils.com/homepage-agentpress-theme/2076

    Here is another post explaining the differencebetween AgentPress and the third-party IDX plugin used in the theme demo: http://www.carriedils.com/agentpress-dsidxpress-dssearchagent/797

    As for thumbnails for category listings, you are correct: you need to assign featured images to those posts.

    Take a look at those tutorials and see if that helps clarify things for you. If not, I'd kindly request opening a new thread with one or two specific questions at a time - It's overwhelming to cover all the bases in a single response. πŸ™‚

    Cheers,

    Carrie

     


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 4:00 pm in reply to: Crystal Theme portfolio Broken #12956
    cdils
    Participant

    Did you upgrade to Genesis 1.9.1? There was a release shortly after 1.9 that addresses some style issues.

    You have right-click and view source disabled on your site, so I can't get a look at your code. But if you've updated to 1.9.1. and are still having issues, you might consider submitted a ticket to the help desk here:

    http://my.studiopress.com/help/

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 3:30 pm in reply to: Modifying read more link, but NOT for category 347 #12941
    cdils
    Participant

    Hi Jill,

    You can add a conditional statement to your code above. It'd look something like this

    add_filter( 'excerpt_more', 'child_read_more_link' );
    add_filter( 'get_the_content_more_link', 'child_read_more_link' );
    add_filter( 'the_content_more_link', 'child_read_more_link' );

    function child_read_more_link() {
    if (!is_category( '347' ) || !in_category( '347' ) )
    return '<a class="more-link" href="' . get_permalink() . '" rel="nofollow">Continue Reading...</a>';
    }

    You can find a full list of WordPress conditional tags here: http://codex.wordpress.org/Conditional_Tags. The is_category conditional checks to see if it's the archive page for '347' and the in_category checks to see if the current post is in category '347'. If either of those statements is false, it'll return your customized read more link.

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 3:22 pm in reply to: Suggestion: Tutorial search #12937
    cdils
    Participant

    Hi there,

    You can find general tutorials for Genesis at http://my.studiopress.com/tutorials/. You can also find theme setup tutorials on http://my.studiopress.com/.

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 7:52 am in reply to: Site update – guidance please? #12841
    cdils
    Participant

    Hi RSB,

    Are you still running WP 2.7? I would strongly recommend bringing your installation up to date, both your WordPress install and the Genesis Framework - running outdated versions leaves you vulnerable from a security standpoint.

    I'm not sure if the Corporate Theme you're running is the most current version. It looks like you've made some customizations, so you might want to hold off on a child theme update.

    I can't make any guarantees that the updates won't impact your layout or customizations, so definitely backup your database and theme files before doing any updates.

    I'd update WordPress first, then check your site. Then update plugins (if needed) one by one, and check your site. Lastly, I'd update to Genesis 1.9, and check your site. πŸ™‚ Doing the updates in that order will help you pinpoint where things went awry (if they did).

    Be prepared to spend some time tweaking just in case, but I would 100% recommend bringing your installation up to date.

    Just my two cents,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 7:46 am in reply to: What Happened to Video Tutorials? #12839
    cdils
    Participant

    Hi Anita,

    You can still find video tutorials sprinkled in here: http://my.studiopress.com/tutorials/.

    There are additional video tuts available on http://studiopress.tv/.

    Not sure about an AgentPress-specific video tutorial, but here's a pretty nice written post on set up: http://my.studiopress.com/setup/agentpress-theme/

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 7:41 am in reply to: My site: NomadSpirit, created with Quattro #12838
    cdils
    Participant

    Hi there, the site looks very nice! With your source code minified, it's hard to see if there might be excessive scripts running, etc, but the page load was just fine for me.

    Pingdom.com has a great tool for checking page load times. It'll show load times and server trips for each script - might be helpful for you as you're fine-tuning.

    Good work!

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 18, 2013 at 7:35 am in reply to: Taxonomy Images #12835
    cdils
    Participant

    When you say wp_get_attachment_image is outputting text, is it literally printing wp_get_attachment_image to the screen? If so, you might have accidentally put it in quotes so that it's being parsed as text and not PHP.

    Can you paste the exact code you're using?

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 4:19 pm in reply to: rems and pixels #12737
    cdils
    Participant

    Hi Ron,

    This may not answer your question directly (I'm still trying to wrap my head around rem), but I found this article helpful: http://snook.ca/archives/html_and_css/font-size-with-rem

    Cheers,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 4:16 pm in reply to: Hide some widgets on mobile devices #12736
    cdils
    Participant

    I think you can use the CSS visiblity element. Something like this in your stylesheet:


    @media
    only screen and (max-width: 768px) { //change that pixel width to whatever screen size

    .your-widget-class { visiblity: hidden; }

    }

     


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 4:05 pm in reply to: wordpress SEO – date / author archives #12735
    cdils
    Participant

    Oh yes, functions.php can be a dangerous place to play! I recommend having FTP up and running so you can dash in and manually remove anything from the file in case of emergency.

    StudioPress themes are great enough without customizations, but if you ever get the itch (and you just might!), it's a lot of fun to get in there and tinker.

    Until then,

    Carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 3:55 pm in reply to: wordpress SEO – date / author archives #12732
    cdils
    Participant

    Yep, you got it! If you're on a single-author blog, then the author archives just look like a duplicate of your regular archive. Disabling that eliminates any perceived duplicate content by a search engine.

    I'm not an SEO expert, but I don't think there's any harm in leaving your regular archive page (what you see on a 404) as is. But of course, it's always nice to customize. πŸ™‚


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 3:48 pm in reply to: wordpress SEO – date / author archives #12729
    cdils
    Participant

    The plugin disables those specific archive pages (author.php and date.php), it does not remove references to those pages from archive.php (That can get confusing! You might find the template hierarchy helpful - http://codex.wordpress.org/Template_Hierarchy)

    In short, the SEO plugin took access to those pages out of the mix, but since they're part of the Genesis archive template (archive.php), you'll need to customize via one of the options above.


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 2:10 pm in reply to: Education theme – hide tags and categories from visitors #12711
    cdils
    Participant

    Once you throw an error in functions.php, it's impossible to edit any further in the WP dashboard. You'll need to access the file via FTP and remove the code that way. That should reset you.

    Before adding in this code, make sure you remove your previous code so it doesn't throw another error. πŸ™‚

    Not directly related, but still helpful... You might like this article (http://surefirewebservices.com/wordpress/how-to-use-remove_action-with-conditional-tags). It explains the why of using functions.


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

    January 17, 2013 at 12:31 pm in reply to: Taxonomy Images #12671
    cdils
    Participant

    You can use wp_get_attachment_image to grab the image associated with your taxonomy. It might look like this:

    wp_get_attachment_image( $term->image_id, 'thumbnail' )

    So, incorporated into your $post_meta it would work like this:

    $post_meta = '[post_terms before="Bucket Rating: " taxonomy="rating"]' . wp_get_attachment_image( $term->image_id, 'thumbnail' ) . 'more stuff';

    Note that $terms is the name of a particular taxonomy. You can set that variable dynamically if you're looping through multiple taxonomies or hardcode it.

    Experiment with it and let me know if that sets you in the right direction.

    Cheers,
    carrie


    Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question. πŸ™‚

    I host a weekly WordPress-focused podcast called Office Hours. I tweet @cdils.

  • Author
    Posts
Viewing 20 posts - 381 through 400 (of 416 total)
← 1 2 3 … 19 20 21 →
« Previous Page

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