Hi Wes, sorry for the delay in getting back to you. Wow! Almost a year. I’m still trying to convince my client to move forward with a rebuild. What’s the latest version of WordPress I can run with legacy Aspire Pro (v1.3)?
Thanks!
Hi Wes,
Thanks for the prompt response. If I upgrade, which version is easier to update from my existing install, your Genesis or Block Theme version?
I just spent an hour with this issue and the technical support staff at Cloudways has confirmed that the Aspire 1.3 theme is not compatible with PHP 8.1.
Is there an update planned anytime soon? If not, is there a simple fix to resolve the compatibility problem?
Thanks!
Actually, that WAS the problem, but it wasn’t anything that I did. Apparently, the stock Aspire Pro PHP code for the landing page removes the site-footer. I commented out the offending lines in the code below and everything works now. Thanks!
<?php
/**
* This file adds the Landing template to the Aspire Theme.
*
* @author Appfinite
* @package App
* @subpackage Customizations
*/
/*
Template Name: Landing
*/
//* Add custom body class to the head
add_filter( 'body_class', 'aspire_add_body_class' );
function aspire_add_body_class( $classes ) {
$classes[] = 'landing-page';
return $classes;
}
//* Remove skip link for primary navigation
remove_filter( 'genesis_skip_links_output', 'aspire_skip_links_output' );
//* Force full width content layout
add_filter( 'genesis_site_layout', '__genesis_return_full_width_content' );
//* Remove site header elements
remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
remove_action( 'genesis_header', 'genesis_do_header' );
remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
//* Remove Menus
remove_theme_support( 'genesis-menus' );
//* Remove breadcrumbs
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
//* Remove site footer widgets
remove_action( 'genesis_before_footer', 'aspire_footer_widgets' );
//* Remove site footer elements
remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
remove_action( 'genesis_footer', 'genesis_do_footer' );
remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );
//* Run the Genesis loop
genesis();
Wes, I stand corrected. The offending plugin was actually CM Tooltip Pro, not Easy Google Fonts. The developer just emailed me an update, which he says will fix the problem. I’m just posting an update in case anyone else experiences this problem. Thanks again.
Yep, you were right. The error is the result of the Easy Google Fonts plugin. I reached out to the developer, but haven’t heard back yet. Thanks again for your help Wes.
Hey Wes, when I check the console I get this error message:
Failed to load resource: the server responded with a status of 400 ()
JQMIGRATE: Migrate is installed, version 1.4.1
Failed to load resource: the server responded with a status of 400 ()
And when you inspect the error I get this website address:
https://fonts.googleapis.com/css?family=default&ver=4.9.8
Does the Aspire template reference this resource because if it does that in fact in an invalid URL?
Yes, they seem to be loading fine, but do a page inspect with Google’s Developer Tools and check out the Console errors.
+1 for some new themes!
Hey Wes, every time I work on a new project I find myself returning to Appfinite. What does that tell you?
Thanks Wes, but I have no idea how to re-register the “Header Right” widget. Do you have a link to instructions?
Thanks!
Yes, that’s my preference and I’ve used the SS plugin many times. But how can I get it into the top area of the home page near the menu?
That worked perfectly. Thanks Wes.
Doh! I was looking at the old Aspire Pro folder. These are some very good updates. Thanks Wes!
Hey Wes, this is all that was in the README.md file:
# Aspire Theme
## Installation Instructions
1. Upload the Genesis Sample theme folder via FTP to your wp-content/themes/ directory. (The Genesis parent theme needs to be in the wp-content/themes/ directory as well.)
2. Go to your WordPress dashboard and select Appearance.
3. Activate the Aspire theme.
4. Inside your WordPress dashboard, go to Genesis > Theme Settings and configure them to your liking.
## Theme Support
Please visit https://appfinite.com/forums for theme support.
And the answer would be yes, you can. LOL I just downloaded the latest version, but I couldn’t find the changelog.
Hey Wes, I think I’m going to abandon the carousel idea. I just can’t find an easy way to implement it so it looks good on both a desktop computer and mobile device.
Having said that, how can I turn off the Parallax effect in the home page of this theme? BTW, I upgraded my Aspire theme to 1.2.
Will this code also prevent the bottom of the carousel from submerging when I expand the browser window?
Also, the image size I’m using for the carousel is 1600px x 900px. However, when I expand the browser beyond 1600px wide I run out of image and get bands on both sides. Is there anyway to prevent that?
BTW, what’s height: 100vh mean? I’ve never seen that measurement before.
Thanks Wes! You’re the best!
Thanks Wes. Can I simply download the latest version from my account page?
I played around with for a few hours, but the only solution I could come up with is adding a whole lot of @media queries, but that doesn’t seem practical. I hope someone else has a better idea. 🙂
Here’s the website I’m working on: http://wmp2.idealynx.com/
As you’ll see, I managed to remove the Featured Section 1 image and insert the Soliloquy Carousel, but I can’t figure out how to get rid of the extra space above and below the carousel.
Plus, when you expand the browser, the carousel submerges into the Front Page 2 widget section, which is a problem because I loose my carousel caption area and navigation circles.
How can I fix these problems?
Thanks!
I ended up using Easy Google Fonts and it works great! Plus, it’s a visual system that allows me to try different combinations very quickly. I may just use it to preview different design options and then hand code everything.
Okay, the code I listed above didn’t work. I’m currently searching for another solution.
Not yet. I think that in order to enable a Retina image you either need a Javascript app or a plugin. Here’s one I’m considering: https://meowapps.com/wp-retina-2x/
Hey Wes, sorry for the delay in responding and the time that you’ve invested in helping me. I truly appreciate your support. Please know that I will respond in kind with future theme purchases.
Yes, you are right. I’m way too far along to change anything. I think I have everything dialed in pretty well, except the logo issue. I’m trying to keep the logo a static size, which I thought I had working, but at about 1200px wide the logo changes to a smaller, blurry version. At 1023px it resets to the static logo, so I may need to look at my media queries.
Thanks again for your help.
This code does the trick:
background-size: 100%, 100%;
background-repeat: no-repeat;
background-position: center;
But, when I apply the code there is a large gap above and below the scaled down image. I think this is being controlled by the fp1 image-section div, but I can’t make it flexible.
Here is a link that should help you with that – http://stackoverflow.com/questions/12609110/responsive-css-background-images You may need to add those solutions in your Mobile/Responsive area in your css file, and you’ll probably need to add !important
BTW, thanks for the link Jason. That looks like a good resource. I typically use this site for CSS/HTML related issues: https://www.w3schools.com/css/default.asp
Hey Jason, I asked the folks at StudioPress about this and they said I need to consult the theme developer (i.e. Wes).
Hey Wes, if you’re watching these threads throw me a bone. 🙂
Thanks Eric. There seems to be a lot of variables at play with images. For example, it’s my understanding that Retina displays require double the amount of pixels, which basically means twice the image size.
So, assuming the maximum image size for a page or post is 700px for the Aspire theme, it would probably make sense to create images that 1400px wide. However, I personally think 1200px is probably fine.
But what I don’t know is what happens if I scale a 1200px image down within WordPress to say 800px. I’m assuming that the number of pixels is reduced accordingly, but how does that affect Retina displays?
Sounds good Wes. Can you direct me to any tutorials that may help me achieve this manually?
Thanks Andy. I guess what I’m asking is, “is there a best or standard size to use” for most images? For example, according to StatCounter, the most popular screen sizes are:
1. 360×640
2. 1366×768
3. 1920×1080
If we use this example, wouldn’t it mean that, (if I want my images to look great a full size) I should upload at least a 1920 x 1080 image? My understanding is WordPress will allow me to select a smaller version of the same image (full size, large, medium, thumbnail).
Never mind. Resolved with this code:
.genesis-nav-menu.responsive-menu .sub-menu {
margin-left: 20px;
}
Never mind. I solved it by modifying these elements:
.header-image .site-title > a {
height: 76px;
margin-top: 0px;
}
.header-image .light .site-title > a {
height: 76px;
margin-top: 0px;
}
I’m having the same problem. How did you make your logo static?
Thanks for the explanation. I think I can make this work, I just need to select images that will work with various screen sizes when scaled up or down. It looks like when the image is scaled down to an iPhone I lose the left and right sides and when the image is scaled up to say a 27″ iMac I lose the top. As you know, some of that can be corrected by modifying this code:
.front-page-1 {
max-height: 740px;
position: relative;
}
But what do I do if I decide to replace the background image in Front-Page-1 with a Soliquoy carousel? How would I do that?
[UPDATE]
I spoke too soon. The fixed image in Section 1 is going to be a problem because it’s not scaling properly. Should I try to patch that or is it better to select another theme that may work better for this particular website?
Oops! Never mind. I was using an HTML comment block, instead of PHP. Works great! Thanks!
Hmmm. Maybe I should pick another, non-Parallax theme. Which other theme do you offer is closest to Aspire, in terms of being able to carryover my settings, but without the Parallax effect?
Yep, that worked. Thanks!
When I resize the browser down to around 1200px wide, the logo shrinks because of the code on line 2502 in your style.css file….which is set to 200px width. I would bump that up to around 250px so you can see it a little better. I’m not sure if that’s what you’re referring to or not since it’s not showing up blurry on my end, but we can start there.
Hey Wes, I tried that. It didn’t seem to have any effect—at least on my end. What if we just make it a static size. How is that done?
In terms of logo size, I tried a few options. Right now, I’m using a 300px x 76px, because it filled the space better, but I also have a 300px x 60px in the media library.
Also, some users prefer the logo stay the same size (not shrink on scroll), so if you wanted to do that as well just let me know.
I think the scaling is pretty cool effect, but I would prefer a clearer logo if I had to choose.
Here’s the website, but it’s in the very early stages, so I haven’t done hardly any customization. http://wmp2.idealynx.com/
Paolo,
Nice job on your website. May I ask which translation plugin you’re using?
http://vaidiskate.com/
Thanks!
By the way, I know you said this is for the scroll effect, but I don’t see any scrolling in this theme. Am I missing something?
Awesome! Thanks Eric.
Worked perfectly. Thanks Wes.
BTW, when I clicked the old link it’s redirecting to the new page. Why is that? Does WordPress handle 301 Redirects automatically?