Keyword
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.

Position of language switcher

More
11 years 4 months ago #137105 by Yiota
Replied by Yiota on topic Position of language switcher
Make this change in your custom.css file as well
body.themeIsRestaurant.isFrontpage section.content {display:none;}

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137106 by Luca
Replied by Luca on topic Position of language switcher
ok, when the browser is opened on full screen (1680x1050) I can click on the red area (see picture),
but if I resize the browser I can not click more...

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137107 by Yiota
Replied by Yiota on topic Position of language switcher
Check the your body gets the isFrontpage class when you are in the homepage.
Make sure that the itemid's you have put inside index.php for this purpose are correct.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137108 by Luca
Replied by Luca on topic Position of language switcher
isFrontpage class isn't loaded in the both site
newsite.free-time-activities.com/ (my site)
website.free-time-activities.com/restaurant (the fresh demo site without modification)

I see this line on the source code
<body id="com_k2" class="viewIsItemlist layoutIsCategory itemIdIs204 themeIsRestaurant" style="">

if I add isFrontpage class (with Chrome Item Inspector), like this
<body id="com_k2" class="viewIsItemlist layoutIsCategory itemIdIs204 themeIsRestaurant isFrontpage" style="">
both site works.

But where it says to load this class?
I have added in custom.css the line body.themeIsRestaurant.isFrontpage section.content {display:none;} and the file is loaded.

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137109 by Yiota
Replied by Yiota on topic Position of language switcher
Could you please check your index.php and let me know if this snippet of code exists on top?

<?php
if($menu->getActive() == $menu->getDefault() || in_array($itemid,array(141,144))){
$isFrontpage = true;
$nuBodyClass = $nuBodyClass." isFrontpage";
} else {
$isFrontpage = false;
}
?>

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137110 by Luca
Replied by Luca on topic Position of language switcher
yes, I have this one
Log in  or Create an account to join the conversation.

More
11 years 4 months ago #137111 by Yiota
Replied by Yiota on topic Position of language switcher
Try to leave the IDs 204 and 208 and remove the other ones from the default installation.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137112 by Luca
Replied by Luca on topic Position of language switcher
removed id 141 and 144, same problem...

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137113 by Yiota
Replied by Yiota on topic Position of language switcher
Is it possible to provide us with access to your backend to check out your setup? I'm suspecting something there but not quite sure yet.

Thank you.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137114 by Luca
Replied by Luca on topic Position of language switcher
yes, how I can send you the account ?

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137115 by Yiota
Replied by Yiota on topic Position of language switcher
Sent it through the Customer support form through nuevvo.com/contact

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137116 by Yiota
Replied by Yiota on topic Position of language switcher
The issue is located in index.php of your template.
There was a change in the 1.0.2 version of the template which should have been added after you updated your package in that version manually since index.php is not being overridden.

You need to change line 34
<body id="<?php echo NU_BODY_ID; ?>" class="<?php echo NU_BODY_CLASS; ?>">
with
<body id="<?php echo NU_BODY_ID; ?>" class="<?php echo $nuBodyClass; ?>">
which is included in v1.0.2.

Just keep in mind after every update of your template package to also check if any changes have been added to the index.php of the template as well. You can advise the template's Changelog under Downloads section for the changes of each package.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137117 by Luca
Replied by Luca on topic Position of language switcher
Hi, thank you, now seems to working!
I will test later...
However, I would like to point out that the site website.free-time-activities.com/restaurant has been installed from the two package "Quickstart Package for Joomla! 2.5" + "Template Package v1.0.2 Update" and in this last one package doesn't exist the index.php with this modification !
The files tmpl_nokkori-v1.0.2_j2.5-3.x_update.zip has been downloaded yesterday...

I only have a small request: the plus sign (readmore) is not displayed, perhaps I've disabled some module ?

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137118 by Yiota
Replied by Yiota on topic Position of language switcher
When you download the quickstart package you install the latest template package, not the update version of the latest template package. The update version is for already modified installations and that is why it does not include index.php, custom.css and custom.js files.
To compare the index.php file of your version with the one of the latest version, just download the full template package.

Where you do not see the readmore plus sign? To which part?

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137119 by Luca
Replied by Luca on topic Position of language switcher
Ok, thank you for explanation.

See attachment: the first image is your demo, the second is my website that has no more the "readmore plus sign"
Probably I disabled something (module?) that I should not...

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137120 by Yiota
Replied by Yiota on topic Position of language switcher
Just enable the readmore option through the slideshow module.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • Luca
  • Luca's Avatar Topic Author
  • Offline
  • Junior Member
More
11 years 4 months ago #137121 by Luca
Replied by Luca on topic Position of language switcher
Ok, thanks for all !

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #137122 by Yiota
Replied by Yiota on topic Position of language switcher
You are welcome.
Glad you sorted all out.

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.