Hybris theme is not working in storefront - content-management-system

HYBRIS 6.2.0.0 :
I have configured my complete storefront, it was working well in my pc. when i used same code [After copied] in different Hybris pc with same version of HCS i was not able to view theme in storefront, it just showing me HTML data and contents. I can search product, view product add in to my cart also, but theme is not working.
For same storefront its working ok for apparel and electronics sites but not for my new storefront.
Any help please..............

There is some mismatch in hybris 6.2.0.0
Please set your website theme to theme-alpha or theme-lambda, i am sure it will be working perfect after it....

Related

Is there a not documented instruction for Typo3 LMS/flogin plugin

Need a Login System on my Page but with integrated security Features ( like bruteforce login restriction)
downloaded this https://extensions.typo3.org/extension/flogin/
via composer on a freshly empty typo3 10.4.12 installation.
It appears in the Backend
I followed the documentation ->
https://docs.typo3.org/p/lms/login/9.0/en-us/Introduction/About/Index.html
Included the Static Typoscript in my Home / Root template
There lies the problem. The tutorial states add login form on expected page
->Tutorial Screenshot
But i checked everywhere but cant find that Login Form Element
Any Idea what iam missing?
Here is the answer directly from the Developer of this Extension
Thanks again very much!

Magento 1.7 language switcher on category page removes store code from URL

I have read a lot about the issue on stack but could not find a similar issue.
On magento 1.7
The language switcher on a my category pages removes store code from URL's.
site.com/store/pt/vestidos
--> site.com/store/dresses
while it should be site.com/store/en/dresses
Strangely enough, this does not happen with products
site.com/store/pt/product_in_portuguese.html
--> site.com/store/en/product_in_english.html
Another maybe related issue is that on my store home I also get an error upon language switch
www.site.com/store
--> which through .htaccess redirects to www.site.com/store/pt
when I use the language switch there
--> site.com/store/en/?___from_store=pt gives me
"There was no Home CMS page configured or found"
while going to site.com/store/en/home works just fine.
My configuration
Add storecode to URL's - Yes
mod-rewrite enabled

Manadev SEO Layered Navigation Plus issue in magento 1.7

I am using SEO Layered Navigation Plus < http://www.manadev.com/seo-layered-navigation-plus > in Magento 1.7. Few days age, I have put some demo products and it was working fine but when my site goes to live server and I have deleted all the products then it is not working.
Suppose, I have a attribute "Color" with two option White, block etc. Now I click on white then the products are not filtering but the url is changing. Now the strange thing is - After that, if I am refreshing the page then it will redirect to 404 error page.
Please, help me out.
I think you should check the following:
Make sure you unsecure, secure base URL is pointing correctly to your live website and try to flush your Magento cache storage.
Are you using the latest version of the extension ?, maybe you should check for any new updates, the last version was 3.10.

Joo ReCaptcha & Joomla Registration

I have a Joomla/VM site & have installed Joo ReCaptcha.
In the settings of the plugin, I change 'Add to Registration Page?' to yes, but nothing appears.
The Plugin works fine on the conatact & forgot password pages.
The site is Secure Products d00tt c00mm (remove spaces & the such).
I have searched & googled to no avail.
AHIA!!!
I suggest you to use Google recaptcha for virtuemart registration page .
follow step here for adding it manually for vm page
https://developers.google.com/recaptcha/docs/php
and if you want it on joomla registration page then use recaptcha plugin for that
and follow the following steps
http://docs.joomla.org/How_do_you_use_Recaptcha_in_Joomla%3F
1)configure your keys their
2)then enable it from global configuration
then it works

Magento uses default/default as skin theme in newsletter instead of site theme default/my_theme?

I was testing the admin password retrieval email template and the message Magento sent to my admin email uses default/default/images/logo_email.gif as the logo. However, my current site theme is default/my_theme so I thought it should use default/my_theme/images/logo_email.gif but it didn't.
I then tried some other email templates such as new account creation and user password retrieval templates and they are all fine with default/my_theme logo rather than the default/default one.
Is there a problem or is it by design that admin emails use everything in default/default rather than my specified theme?
In your question you didn't state which area your theme settings refer to. I'm assuming you are referring to the frontend store view configuration.
The email is sent by the method Mage_Admin_Model_User::sendPasswordResetConfirmationEmail()
This method calls $mailer->setStoreId(0), which causes Magento to look for the theme configured for the adminhtml area.
This defaults to default/default in according to Mage/Adminhtml/etc/config.xml in the node stores/admin/design/package/name and stores/admin/design/theme/default.
If you are using a Magento version including the Find_Feed extension (in the community code pool), it (stupidly) specifies the admin theme default/find in it's config.xml.
So this gives you the full path
skin/adminthml/default/default/images/logo_email.gif or skin/adminthml/default/find/images/logo_email.gif.