SEO guide for Bubble apps šŸ“ˆ

Hey all! As Iā€™m turning my new Bubble app into a SEO-friendly website, Iā€™ve been checking what my favourite SEO tool (SEO Site Checkup) says about it.

There are a few things for which Iā€™d love to have control over, but it seems like some of the things are not so straight-forward to be fixed/improved directly on Bubble. Letā€™s brainstorm about some of them on how we could implement some fixes directly on Bubble.

If you think about it, this would mean weā€™d have a toolbox/tutorial/guidelines to improve the SEO of our apps built with Bubble. Iā€™m not adding the ā€œeasy thingsā€ that Bubble automatically takes care of, but those ones that, by default, are usually an issue. The idea would be having a solution for all the reported issues. Letā€™s go:

:no_entry_sign: Issue: Your page doesnā€™t contain any keywords.
:white_check_mark: Solution: Add this script to the header with the keywords you want to highlight:
<meta name="keywords" content="keyword 1, keyword 2, keyword 3...">

:no_entry_sign: Issue: Your webpage doesnā€™t contain any H1 headings.
:white_check_mark: Solution: Use the option ā€œHTML tag for this element (SEO)ā€ in Bubbleā€™s editor to set different texts as h1, h2, etc. (be careful, you donā€™t want to mess up your SEO with wrong headings!).

:no_entry_sign: Issue: Your webpage is using ā€œimgā€ tags with empty or missing ā€œaltā€ attribute.
:white_check_mark: Solution: Use the field ā€œALT tagā€ in Bubbleā€™s editor. Hint: Use some keyword-rich text.

:no_entry_sign: Issue: Your webpage is using inline CSS styles.
:white_check_mark: Solution: Rather than editing the style of each text to modify e.g. the colour, use a fixed style from the ā€œStyleā€ dropdown (in Bubbleā€™s editor) and simply setup the corresponding style you chose in Bubbleā€™s ā€œStyleā€ tab.

:no_entry_sign: Issue: Your site either doesnā€™t have a favicon or this has not been referenced correctly.
:warning: Alert: I do have a favicon, so not sure what the problem isā€¦

:no_entry_sign: Issue: Your webpage doesnā€™t use any HTML compression (Deflate or GZIP).
:warning: Alert: This should be solved modifying the .htaccess of the website, but Iā€™m not sure how to do this on Bubble. Basically, weā€™d need to add this to .htaccess file:

# compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript

:no_entry_sign: Issue: Your page uses more than 20 http requests, which can slow down page loading and negatively impact user experience.
:warning: Alert: We should always restrict the number of pages, CSS files, scripts, images and Flash files we use. However, thereā€™s no easy way to check this with Bubble. Info about things that could be done, in this video.

:no_entry_sign: Issue: It does not appear that you are caching your pages.
:warning: Alert: Is there a way to cache the websites, server-side?

:no_entry_sign: Issue: Your website loading time is over the average loading speed.
:warning: Alert: There are a few suggestions, but not all of them are possible on Bubble, AFAIK:

  • :warning: Minimise HTTP requests --> Not sure how to check it, see above.
  • :warning: Use Gzip compression --> Not sure how to do it, see above.
  • :warning: Use HTTP caching --> Not sure how to do it, see above.
  • :warning: Move all CSS style rules into a single, external and minified CSS file --> Possible?
  • :warning: Minify all JS files and combine them into a single external JS file --> Possible?
  • :warning: Include external CSS files before external JS files --> Possible?
  • :warning: Place your JS scripts at the bottom of your page --> Possible?
  • :white_check_mark: Optimize images --> Compress and resize your images with some free online tools (I like Resize Image for resizing, and Compressor.io for compressing).
  • :white_check_mark: Reduce redirects --> Stay on top of this (Settings --> SEO / metatags --> 301 Redirections).
  • :white_check_mark: Reduce the number of plug-ins --> Make sure you uninstall unused plugins.

:no_entry_sign: Issue: Your webpage doesnā€™t take the advantages of HTML Microdata specifications in order to markup structured data. View Googleā€™s guide for getting started with microdata.
:warning: Alert: Any suggestions for this?

:no_entry_sign: Issue: Your website is not using a custom 404 error page.
:white_check_mark: Solution: Make sure you add a 404 page to your project (although this is mandatory on Bubble, so you should be alright).

NOTE 1: For some points (h1 tags, keyword metatags, ALT attribute for images and 404 page), these analyse tools are not able to retrieve the right values even if they are implemented on the website, as they donā€™t detect some JS-related features when loading the pages.

NOTE 2: It could happen that for your specific cases, after running the SEO tool above, you find other things that youā€™re not doing properly.

The idea is that over time, with all our feedback, I can edit the steps above until we have a solution for all the possible issues. If you detect additional issues for which you may need help, just let me know and Iā€™ll add it to the description (with the solution).

Hope this can be helpful for some of you and, eventually, we can have a guide of best SEO practices for Bubble apps. Thanks for your feedback beforehand!

51 Likes

@eurogar First off, thank you so much for this post! Already made some changes based off of this so hopefully we will see an improvement in our SEO.

Re the keywords, are you adding them in the settings tab or are you adding them on the actual pages themselves?

2 Likes

Thanks, @dean.peters! Glad you find this thread useful! You simply have to add that to the ā€œScript/meta tags in headerā€ section of the settings tab, and youā€™re good to go! :slight_smile:

1 Like

Hi eurogar,

First of all, thank you very much for this post. It was really useful and we already created an account on SEO Site Checkup to check our improvements in SEO. We found almost the same issues that you wrote above.

However, we still have some issues regarding some aspects that I hope someone can clarify:

  1. Keywords: Same as you, SEO Site Checkup couldnā€™t find any keyword. We first tried to set our keywords in our workflow, by adding a step ā€œadd/edit head tagsā€ in the event ā€œpage is loadedā€, but nothing happened. So, following your comment below the post, we added a list of keywords in the ā€œscript/meta tags in headerā€ section of our settings. It actually worked for SEO Site Checkup, as they could finally find our keywords, but this list of keywords was also shown every time a page was changed on the website during page loads, so we had to step back and return to our old version.
    Is it possible to add our keywords there, without this list to shortly be shown during page load?
    Moreover, would it be possible to have different keywords for single pages on our website?

  2. Heading: Here we really do not understand why SEO Site Checkup does not read our headings. We used the option ā€œHTML tag for this element (SEO)ā€ and we only set one h1 on every page, then h2 and so on, when needed. We tried to inspect the HTML code of our page and actually the titles we signed as h1 are effectively shown in the inspection as h1 tags.
    Is it a common problem for Bubble sites with this tool or could we have possibly made another mistake?

  3. Img tag: We set alt tags for all the images on our website. However, there is still an issue for the tool that signals that we still have empty or missing ā€œaltā€ attributes. Checking the full list, the only link provided is for . We have not uploaded that image. We have seen that it is an issue that already happened to other users. Should we care about this or just leave it how it is?

  4. Favicon: We also have a favicon, but the tool doesnā€™t check it

  5. 404 error page: We do have a customized error page but the tool doesnā€™t check it. Can this problem be solved anyhow?

Along with the issues you raised, we also found other problems.

  1. The tool did not find any backlinks to our website. However, we certainly have one backlink. We also tested it on the referred website and the link works perfectly. It is a link on a page of a local DJ. Is it possible that the tool doesnā€™t see it because the page is not important enough, or could it be another problem?

  2. We did not pass the social media test using SEO Site Checkup. We saw that bubble does not have a plugin with the recommended ā€œaddthis.comā€, therefore we downloaded Bubbleā€™s plugin ā€œsharethisā€. On Sharethis, we added the buttons that we wanted to include and received a code. We first tried to add this code in the plugin settings of the property ID field (headings), but we did not have any result. Then we added this code in our workflow by adding a step ā€œadd/edit head tagsā€ in the event ā€œpage is loadedā€, but still nothing happened.
    Someone has experience with this plugin?

We would be really grateful if someone could solve some of our issues. Best luck to everyone and great success!

URexpert Team

2 Likes

Brilliant thread @eurogar !
Just out of interest, did you manage to solve the issue in regards to Gzip?

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.