-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search does not return results #348
Comments
Apparently the pip installation approach did not install all the necessary files. So I manually downloaded all the files and edited the conf.py accordingly and now everything works. In summary, search does not work when installing via pip: # Install theme via $ pip install sphinx_rtd_theme
# In conf.py add the following
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] Manually downloading and installing the theme allows search to work correctly: # Download theme from GitHub then place sphinx_rtd_theme folder into _themes directory
# In conf.py add the following
html_theme = "sphinx_rtd_theme"
html_theme_path = ["_themes", ] |
This was a bug that was fixed recently and is an issue with running the theme with Sphinx 1.5.X. To get this to work with the pip file use:
|
The installation instructions in the README should be updated for Sphinx 1.5 |
I think this issue can be closed now. |
I'm experiencing the same issue here and have tried several options (including installing manually by git cloning the theme). I have an error in the Chrome console:
Using |
@fhennecker #728 might be a fix. |
I tried your commit by installing using pip with the following command:
The same issue occurs |
Can you please open a new issue. |
The search feature is not working, it continuously displays "Searching..." and never returns any results. I installed the theme using
pip
and made the appropriate edits in theconf.py
file. I'm using the latest version of Sphinx to build the html. The search feature works fine when I use a default Sphinx theme.The text was updated successfully, but these errors were encountered: