Home Page Content Removal Not Working

Homepage Community Forums Aspire Theme Support Home Page Content Removal Not Working

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #17938
    jondonley
    Customer

      I used Aspire to upgrade this website.

      http://www.renewedvitalitymd.com/

      Originally I used Aspire 1.0, but I was working on some mobile issues and decided to upgrade to 1.1. first.

      After the upgrade, switching off the content section on the home page is not working. The content goes away, but my primary sidebar remains. If you scroll all the way to the bottom of the homepage, there is a sidebar there. . The only php edit I made was to adjust the logo size. Otherwise everything is the same.

      Can you advise?

      #17941
      Wes
      Moderator

        Are you using any Plugins that affect Layouts? Or have you added any custom code anywhere that alters layouts? That was the issue I’ve seen in the past on other themes, where someone had the wrong setting set in their plugin. That may not be the issue, but it’s the first thing I check when running into something like this.

        If that’s not the case, I can login and check for you if you want to create a Temporary user/pass. Just let me know

        #17945
        jondonley
        Customer

          Dear Wes,
          I added a small hook – genesis_site_title Hook. Its just to add the phone number in the upper right.

          <div class=”pnumber”>Call (214) 389-1234</div>

          But when I remove it, the mystery sidebar on the home page remains.

          This is my plugin list – I can’t see anything here:

          Akismet
          BackupBuddy
          CallRail Phone Call Tracking
          Constant Contact Plugin for WordPress
          Genesis Simple Edits
          Genesis Simple Hooks
          Genesis Simple Sidebars
          Google Analyticator
          Gravity Forms
          iThemes Security
          Jetpack by WordPress.com
          JW Player 6 Plugin for WordPress
          Revolution Slider
          Simple Social Icons
          Stream Video Player
          TinyMCE Advanced
          User Access Manager
          WP Google Maps
          Yoast SEO

          I would really like to send you a log in to the site. Is there an email address I can send that to?

          Thanks!

          #17946
          Wes
          Moderator
            This reply has been marked as private.
            #17957
            jondonley
            Customer

              Dear Wes,

              I found the plug in conflict – it is with Genesis Simple Sidebars.

              Meantime I seem to have developed a new problem, and this one is not a plugin issue because I deactivated all plugins and its still there.

              Each page is pulling a featured image, even if I dont specifically assign one, it just grabs one from somewhere on the page. Any ideas on this?

              Here is an example: http://www.renewedvitalitymd.com/hormones/

              Thanks

              Thanks

              Wayne

              #17958
              jondonley
              Customer

                I found the documentation on this in your forum. I am all good. Thanks for your help.

                #17959
                Wes
                Moderator

                  You can remove this in your functions.php file if you need to remove the Featured Image from showing on your Single Post pages –

                  //* Add featured image above the entry content
                  add_action( 'genesis_entry_header', 'aspire_featured_photo', 5 );
                  function aspire_featured_photo() {
                  
                  	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
                  		return;
                  
                  	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
                  		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
                  	}
                  
                  }
                  #17960
                  Wes
                  Moderator

                    Ah, just saw your comment after my reply 馃檪 Let me know if you run into any issues.

                  Viewing 8 posts - 1 through 8 (of 8 total)
                  • You must be logged in to reply to this topic.