Jessy

Forum Replies Created

Viewing 43 posts - 1 through 43 (of 43 total)
  • Author
    Posts
  • in reply to: Feature Image showing above blog posts #22301
    Jessy
    Customer

      Remove this code from your functions file –

      //* Add featured image above the entry content
      add_action( 'genesis_entry_header', 'squareone_featured_photo', 5 );
      function squareone_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' ) );
      	}
      
      }

      Or you could leave it in and comment the code out so it doesn’t show up on the site. That seems to be how they’re doing it in the latest versions of their newer themes.

      in reply to: Unsubscribe #21703
      Jessy
      Customer

        They’re using the bbPress plugin here on this site, so the way to Subscribe and Unsubscribe are the same on all of the other WordPress sites that use this plugin.

        There’s a good chance you may have subscribed to those forums a long time ago. Here’s how to Unsub. Go to the Theme page you want to unsub from (let’s use Ambition for example) https://appfinite.com/forum/ambition/

        Then look for the Breadcrumbs section (right under the title)
        Home › Community Forums › Ambition Unsubscribe

        Click Unsubscribe

        I believe that should work for that entire Theme Forum. You may have to do that for each Theme you’re subscribed to.

        *********************************

        However, if you create a new thread in a forum, or if you reply inside of someone’s thread, then anytime there is a response in that thread you’ll receive an email. That’s pretty normal, but I think you can still unsubscribe from those threads individually by clicking the Unsubscribe link near the top of where the thread begins.

        in reply to: Remove the footer text #21702
        Jessy
        Customer

          The default Footer Text on Genesis Themes are generated from Genesis itself (the Framework). If you look at the Genesis Documentation you’ll see the code you can add to either remove or change the text https://my.studiopress.com/documentation/snippets/footer/customize-the-site-footer/

          Here’s where I found that info (after searching this forum) – https://appfinite.com/topic/change-site-footer/

          in reply to: About Wes Straham #20096
          Jessy
          Customer

            @khun You can edit the Footer here – http://my.studiopress.com/snippets/footer/#credits

            That’s from the StudioPress documentation and snippets page.

            in reply to: Logo not showing on mobile #19984
            Jessy
            Customer

              The front-page.php is a File inside your Child Theme. In the link I posted above, they added an update to this file which fixed the same issue you’re having. So all you would need to do is replace the front-page.php file with the newer version (1.1).

              Did you make any changes or customizations to this file directly? If you didn’t, then you can swap it out with the new file and see the changes show up instantly.

              in reply to: stay image appearing on page? #19973
              Jessy
              Customer

                Those are your Featured Image Thumbnails. If you don’t plan to use them, you could uncheck the Featured Image option in your Genesis Theme Settings.

                If you do plan to use them on your Blog page but prefer to not have them show on your Single Posts/Pages then you can comment out or remove the code from your functions file –

                Here’s the code that shows Featured Images on your Single Posts Pages (functions.php file) –

                //* Add featured image above the entry content
                add_action( 'genesis_entry_header', 'followme_featured_photo', 5 );
                function followme_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' ) );
                	}
                
                }
                in reply to: Logo not showing on mobile #19972
                Jessy
                Customer

                  What’s your site link? (for the logo)

                  For the second issue, I believe they got this fixed in an update a few months ago – https://appfinite.com/topic/ambition-theme-next-buttons-on-blog/ The front-page.php contains the update needed for the fix. If you’re referring to something different then I’ll have to take a peek at what it could be.

                  in reply to: Display Featured Image on top of the post/page #19971
                  Jessy
                  Customer

                    I don’t have this theme so I’m not sure if this will work or not, but here’s the code I use (copied from another thread/theme) –

                    //* 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' ) );
                    	}
                    
                    }
                    

                    If needed, you could replace the aspire with skope in the function. May or may not be necessary though.

                    in reply to: Default Font? #19969
                    Jessy
                    Customer

                      I don’t see the Lato font anywhere in the this theme. The only font’s I see are Open Sans and Source Sans Pro.

                      If you don’t want to change the fonts in the CSS there are some Google Font plugins you can download and try. WordPress.org has quite a few free ones for download. I’d try any of those first to see if they work with the theme. I thought I saw a plugin made specifically for Genesis Themes, but can’t remember the name of it.

                      in reply to: Blog Page Appearing as Home #16930
                      Jessy
                      Customer

                        What are your front page settings on your “Reading” link from the Settings menu? It should be set to “Your latest posts”. If it is, then we’ll need to figure out what else may be going on.

                        If you have a link to your site that may help me see what’s going on.

                        in reply to: Opaque box behind text #16929
                        Jessy
                        Customer

                          You can add this to your inline code –

                          background: rgba(0, 0, 0, 0.73);

                          That will add a see though/transparent black background behind the text. Here is what it will look like – http://i.imgur.com/6NkUrNn.png

                          There are ways to make it show evenly in the center of the widget vertically and horizontal if you’re interested in doing that. If so, let me know!

                          in reply to: Increasing Portfolio page to show more than 24 records #16258
                          Jessy
                          Customer

                            There should be an option to change that in the Portfolio settings on the Genesis Settings page near the bottom. It should say – “Number of Posts to Show”

                            in reply to: Image on full width page not mobile responsive #16273
                            Jessy
                            Customer

                              Is there a specific page that shows the issue? Because I’m not seeing any issues when I check the link/homepage.

                              in reply to: no right sidebar on 2 pages #16193
                              Jessy
                              Customer

                                Did you try selecting the “Full Width” template for your pages? The Page Layouts are at the bottom.

                                in reply to: Image on full width page not mobile responsive #16194
                                Jessy
                                Customer

                                  Hi, do you have a link to your site?

                                  in reply to: Layer Slider comes out shortly late. #16179
                                  Jessy
                                  Customer

                                    @intelisystems Your site seems to show up pretty fast for me personally. But Andy is right, you would need to contact the developer of that plugin if there is an issue with that plugin since they created it and they would know best how to fix it. But again, your site is loading fast and the plugin is loading Instantly on my end. I’m not seeing the same issue. Everything looks fine to me.

                                    in reply to: Google Bot Issue Involving Epik Theme #16151
                                    Jessy
                                    Customer

                                      Hi, this can be fixed by going to your Header uploader and clicking the REMOVE option for your header.

                                      If that doesn’t work I’d probably need to login to your site to see what’s causing this to happen…..or you can have Wes do it for you since he’ll know best.

                                      Also, make sure your theme is up to date. If you’ve made customizations, then you’ll want to at least make sure your functions.php file is up to date.

                                      in reply to: Portfolio Masonry #16117
                                      Jessy
                                      Customer

                                        Do you have a link to your site?

                                        in reply to: Header height change #16092
                                        Jessy
                                        Customer

                                          Hi Tom,

                                          You could adjust the padding to your #title-area on line 199 in your CSS file –

                                          #title-area {
                                          	float: center;
                                          	overflow: hidden;
                                          	padding: 20px 0;
                                          	width: 960px;
                                          }

                                          The 20px covers the top and bottom, so if you change it to 10px (for example) it would make the top and bottom padding 10px. Try that, and if you want to remove more space then just lower the number more.

                                          in reply to: Creating a full width widget for all pages #15075
                                          Jessy
                                          Customer

                                            If you’re just trying to create a full width page, then you can create the page and select the Full Width Layout option at the bottom. Example – http://demo.appfinite.net/epik/layouts/fwc/

                                            You wouldn’t need to create any widgets for that since all you would need to do is add content on the page.

                                            in reply to: Epik: Previous/Next post links #15071
                                            Jessy
                                            Customer

                                              Not sure if this will help or not, but give it a try and let me know – http://bit.ly/1zPDMT0

                                              Jessy
                                              Customer

                                                Thanks Eric. If I wanted to remove the parallax effect how would you do it?

                                                Jessy
                                                Customer

                                                  The background images scale as they should on my end using a Macbook Pro with external 24 inch monitor, and also when I check on my iPhone and iPad (haven’t checked my Droid tablet since I assume it will show the same as the iPad).

                                                  Was the issue already fixed or am I missing something?

                                                  in reply to: full width image #14573
                                                  Jessy
                                                  Customer

                                                    It depends on how large the logo is, or how wide you want the logo to be. Once you figure out the size of the logo, then you’ll figure out how long it should be.

                                                    in reply to: Responsive Header section #14574
                                                    Jessy
                                                    Customer

                                                      Hi,

                                                      Do you have a link to your site to take a quick look at what’s going on?

                                                      in reply to: Change color of button in e-news widget #14565
                                                      Jessy
                                                      Customer

                                                        If you edit your style.css, you can remove this code from line 3141 – .epik-darkblue input[type="submit"]

                                                        Then add it on its own line which will separate it from the other code. You can add it on its own line like so –

                                                        .epik-darkblue input[type="submit"] {
                                                        	background: #d91420l;
                                                        }

                                                        You can change the color to whatever you want and it should change that button instantly.

                                                        in reply to: Playing with site header #14563
                                                        Jessy
                                                        Customer

                                                          I did notice that there is display: none; added to the title-area to remove the default title/link. If the code is removed, it shows up, but obviously you want the logo image itself to be the main link. Can you tell me what else you’ve added to your code so I can see if I can figure it out?

                                                          in reply to: Blog Template – Setting # of posts #14519
                                                          Jessy
                                                          Customer

                                                            You should be able to do this in your Genesis Theme Settings page. Click Genesis > Theme Settings and scroll down to see the Post options.

                                                            in reply to: Top menu, can i use it for #14517
                                                            Jessy
                                                            Customer

                                                              You can add custom text or phone number in the “Header Right” widget area by adding a text widget in that section.

                                                              in reply to: How use the theme #14495
                                                              Jessy
                                                              Customer

                                                                Theres a lot of tutorials and code snippets at the top of the Epik Forum here – https://appfinite.com/forum/epik-theme-support/ – Top Yellow Highlighted Sticky Posts.

                                                                That will cover exactly how the homepage is setup.

                                                                For the columns page, it’s pretty much setup the same way as all Genesis Themes are, so you can duplicate it by following this from SP – http://my.studiopress.com/tutorials/content-column-classes/ You won’t need to add the css since it’s already included in your stylesheet. But the HTML code will work fine.

                                                                in reply to: Increase size font in the Header Right Widget Area #14481
                                                                Jessy
                                                                Customer

                                                                  You can change the font size on line 2076 in your style.css file from your child theme –

                                                                  .genesis-nav-menu {
                                                                  	clear: both;
                                                                  	color: #ccc;
                                                                  	font-size: 13px;
                                                                  	font-weight: 600;
                                                                  	letter-spacing: 1px;
                                                                  	line-height: 1.5;
                                                                  	margin: 0;
                                                                  	padding: 0;
                                                                  	width: 100%;
                                                                  }

                                                                  You can find this section by doing Command + F on your keyboard if you’re using a Mac, and Control + F if you’re using a PC. Just search for genesis-nav-menu and you’ll find the section it’s located in.

                                                                  in reply to: Increase size font in the Header Right Widget Area #14475
                                                                  Jessy
                                                                  Customer

                                                                    Hi,

                                                                    Do you have a link to your site?

                                                                    in reply to: Problems with the Logo and Header Right Widget Area #14438
                                                                    Jessy
                                                                    Customer

                                                                      Look at line 2088 in your style.css and add display: inline-block; and change the float: left; to none instead –

                                                                      .genesis-nav-menu .menu-item {
                                                                      display: inline-block;
                                                                      float: left;
                                                                      list-style-type: none;
                                                                      margin: 0;
                                                                      padding: 0;
                                                                      text-align: right;
                                                                      }

                                                                      That should instantly fix it.

                                                                      in reply to: Portfolio #14409
                                                                      Jessy
                                                                      Customer

                                                                        They have some tutorials here that show how to have multiple portfolios – https://appfinite.com/tutorials/

                                                                        in reply to: Remove Menu from Landing Page on Epik #14408
                                                                        Jessy
                                                                        Customer

                                                                          I think it’s because they’re using the custom menu in the header widget area, and you’re using the primary menu.

                                                                          You should be able to remove it by adding this code to your landing page php file –

                                                                          remove_action( 'genesis_after_header', 'genesis_do_nav' );

                                                                          Or you could just use css to have it removed visually by adding this –

                                                                          .epik-landing .head-wrap {
                                                                              display: none;
                                                                          }
                                                                          in reply to: Just can't find it: Tiny little space in my welcome widget #14368
                                                                          Jessy
                                                                          Customer

                                                                            Whoops, I thought you meant your logo for some reason. I totally misread that!

                                                                            Anyways, add line-height: 0; to your welcome widget code in your css on line 1319 and it will definitely fix it –

                                                                            .welcome .widget {
                                                                                line-height: 0;
                                                                                margin: 0 0 0px;
                                                                                overflow: hidden;
                                                                            }

                                                                            I saw another thread with a similar issue, so that’s how I was able to figure it out.

                                                                            in reply to: header image link #14365
                                                                            Jessy
                                                                            Customer

                                                                              It’s supposed to show up by default. What customizations have you made to your css, functions.php or other php files?

                                                                              in reply to: Just can't find it: Tiny little space in my welcome widget #14364
                                                                              Jessy
                                                                              Customer

                                                                                I assume you got it fixed? I don’t see any extra space.

                                                                                in reply to: header stuff #14359
                                                                                Jessy
                                                                                Customer

                                                                                  You can use any size you want for the header. You can look at any of the tutorials online (Google search). Here is the first result – http://www.carriedils.com/add-logo-genesis-theme/ to help you get a better understanding of how it works.

                                                                                  in reply to: trying to link to JS and CSS for home page only #14332
                                                                                  Jessy
                                                                                  Customer

                                                                                    I’m not sure if this will be helpful or not, (and you may already know this) but I noticed that this code is added on the front-page.php file –

                                                                                    // Adds javascript for scroll
                                                                                    add_action( 'genesis_after_footer', 'scroll_javascript' );
                                                                                    function scroll_javascript() { ?>
                                                                                    	<!-- SMOOTH SCROLL -->
                                                                                    	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
                                                                                    	<script>
                                                                                    	$(function() {
                                                                                    	  $('a[href*=#]:not([href=#])').click(function() {
                                                                                    	    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
                                                                                    	      var target = $(this.hash);
                                                                                    	      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
                                                                                    	      if (target.length) {
                                                                                    	        $('html,body').animate({
                                                                                    	          scrollTop: target.offset().top
                                                                                    	        }, 1000);
                                                                                    	        return false;
                                                                                    	      }
                                                                                    	    }
                                                                                    	  });
                                                                                    	});
                                                                                    	</script>
                                                                                    	<!-- End of SMOOTH SCROLL -->
                                                                                    <?php
                                                                                    }

                                                                                    Which is supposed to add the smooth scroll javascript code for the arrow on the demo homepage. Maybe you could try editing the code above or copying it and adding in your own code to see if that helps.

                                                                                    Jessy
                                                                                    Customer

                                                                                      Both links look fine to me as well (demo and phipoint link). I’m checking from an iPhone 5S in both modes, and I see no blurry images.

                                                                                      I also checked StudioPress’ Parallax theme and the images resize the exact same way.

                                                                                      in reply to: Primary Nav Items align to right #14260
                                                                                      Jessy
                                                                                      Customer

                                                                                        I’m confused, as far as I know, all you would have to do is reverse the order (and thats due to the way CSS works rather than the theme)…..so is revising the order of the menu items/links not working? I’ve done it with no issue, so I’m just wondering what’s going on.

                                                                                        There seems to be no issue with reversing the order in the WP menus, so what else is the issue? Do you have a link to your website?

                                                                                        in reply to: Which slider is being used in the demo? #14257
                                                                                        Jessy
                                                                                        Customer

                                                                                          Never mind, I found the answer in the Read Me file. Genesis Responsive Slider.

                                                                                        Viewing 43 posts - 1 through 43 (of 43 total)