Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Problem with going between full and moblie site
waplist
New
When i click on full site and return to mobile site it shows blank page.website show when someone first time after it show blank page after doing above procedure.and is this forums theme available?
Tagged:
0
Comments
@waplist
Welcome to the community.
I've changed your thread title, as it was not descriptive of the issue.
Please see here:
http://vanillaforums.org/discussion/25115/how-to-how-can-a-new-user-better-help-the-community-when-asking-a-question#latest
You have posted this in Vanilla 2.0 - which version of Vanilla are you using?
Which theme are you using?
It's better not to ask multiple questions in the same thread.
You can find the answer to your 2nd question here:
http://vanillaforums.org/discussion/25280/which-theme-is-used-in-the-vanilla-forum-website
@whu606 version is 2.1.5 and when i use theme other than defualt it starts that problem
@waplist
Have you got a link to your site?
@whu606 http://nettricks.in
@waplist
That seems to be displaying a mobile theme by default.
Which theme do you want to use?
In your conf/config.php file there should be a line:
which would be a desktop theme.
Vanilla displays a separate mobile theme by default to relevant devices, which you can customise as you need.
@whu606 should i write there folder name of theme or which i see in dashboard?
@waplist
The theme should load automatically when you select it via the Dashbaord.
If it isn't, you can try adding the name manually for now, but you should still work out why the theme is not 'sticking'.
Go in to the themes folder of your install, and see what name the folder of the theme you want has (it will be similar, but probably not identical to the name in the dashboard.) That is what you will need to use in your config. Upper and lowercase are relevant.
Try this plugin http://vanillaforums.org/addon/gobackmobile-plugin
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
@vrijvlinder
That isn't the problem.
The OP's main theme is currently a mobile one.
Perhaps he thinks you can also pick the mobile theme from the dashboard?
To change mobile themes you need to do it manually by entering this in the config.php
$Configuration['Garden']['MobileTheme'] = 'name of mobile theme';
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
no
1 - look in the views folder of the theme you want.
2 - then open up the about.php
e.g. if the theme was bittersweet
https://github.com/vanilla/vanilla/blob/master/themes/bittersweet/about.php#L3
and look at the themeinfo line.
$ThemeInfo['bittersweet'] = array(
and the themes folder name must match exactly as well
so it would be
themes/bittersweet
and the config.php would be
$Configuration['Garden']['Theme'] = 'bittersweet';
it the themeinfo was $ThemeInfo['BitterROOT'] = array(
the theme folder would be
themes/BitterROOT
and the config.php would be
$Configuration['Garden']['Theme'] = 'BitterROOT';
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
I suppose to avoid this rename with all the same name.
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
make sure your .htaccess is correct.
and post your config.php (take out all password and private info like email addresses, etc).
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.