http://divyesh.suitshq.com/en/womens-lava-bracelet.html
using magento 2.1.0
When I change language its not changes some words in to page like Add to cart, Right sidebar details, Review tab form etc.
I need to convert whole page in Icelandic when I change language.
Are you shure, that you have translates for all php constants in .csv file? Try to run
bin/magento i18n:pack %PATH TO .csv% %LOCALE CODE%
and then run
bin/magento setup:static-content:deploy %LOCALE CODE%
Related
I should create a moodle wiki and I have got some sections on my wiki-page. Now I would like to create a table of contents where The user can jump between the sections like on Wikipedia.
What I tried:
section1
...
<h2 id="section1">Section1</h2>
The problem I got is that when I save the page the id property will be removed from the tags
If you are using one of the latest version of Moodle, it is possible to make the HTML ids stick if you add you HTML markups within the Wiki HTML editor.
This has to be the ultimate change you do to the document. Once you have your HTML correctly tagged, directly hit the Save button without going back to the editor's preview mode. They should be available in the Wiki after that.
If you need to edit the page again, be sure to keep a local copy of your HTML structure, in order to avoid having to add the HTML markups again. They will be removed everytime you edit the page or if you switch from the HTML editor to the WYSIWYG preview mode.
I need to wget the whole page including the dropdown menu
Linux Ubuntu 16, I am trying to wget a whole page including the dropdown menu that's on the right side you can check the page here https://bitcoincore.org/en/doc/0.18.0/
The dropdown menu I mean is that starts with blockchain then control then generating and their content and the content inside the choices inside them
I tried wget https://bitcoincore.org/en/doc/0.18.0/
When I tried wget https://bitcoincore.org/en/doc/0.18.0/ they were empty.
I need to include the whole page content including the clickable options inside it as long as they open inside the page and am afraid of copy-paste to word file as its sensitive lines that I need the original to be in the face of me in the case of this website got broken and archive org also what I expect is to download the whole page including all the content in the body that's clickable
I am converting a module from Magento 1 to 2. The plugin settings are in the store > configuration menu (etc/adminhtml/system.xml) and they have images displaying in the Magento 1 module in CDATA tags in the comments.
My question, where do I put these images in Magento 2, so that I can call them after compilation. From what I am reading, my images should end up in pub/static/admin or something like that. What location should I put them in and do I need to do anything else, like register them via .xml?
My module is in the app/code/... folder, here is a screen shot of what I am trying to accomplish:
In your module folder you should put the image under view/adminhtml/web/images folder, the route should be:
app/code/Namespace/Module/view/adminhtml/web/images/image.jpg
after that make sure you run the command:
php bin/magento setup:static-content:deploy --area adminhtml
and in your template.phtml you could get the image with something like this
$block->getViewFileUrl('images/image.jpg');
Hope it helps!
I want to display the result from a PHP file inside my content element. Kindly help me on this. Typo3 version is 4.7.2
Example:
I have a PHP file which returns the list of countries in the form of HTML select box.
I have a content element Product info inside the content element I have placed a contact form i want to add the country list from the PHP file inside this Form
Thanks In advance
There are several ways:
Include a php file using a USER or USER_INT content object.
Write your own extension (the extension "extension_builder" helps there, but you need to use an older version for T3 v4.7)
You could write your own ViewHelper and use it from a FLUIDTEMPLATE content object.
I want to do some changes in magento theme actually product detail page, but I am unable to find that what theme it is. There are 4 directories where files can be.
In app/design there are 2 directories, default and base and then further more
And same is hierarchy in skin folder
So is there some place where I can see that which files are being used or is there some variables or functions in magento that I can use to check that from where it is getting file. I don't know much about magento and zend framework. I tried to echo some content in product_controller but it seems that I am not printing output in write file. So what can be the way for me to know that where is the file of product detail page view where I can add a form and some link, is there any sort of custom HTML in magento that I can add in product detail page? I actually want to have a form in it that will take it to anohter page that I will create in magento and that page will use some data from form. Or if there is some extension for it?
Please tell if you know any thing about it , that is really appreciated.
thanks
You can find out where your themes set from
System > Configuration > Design
System > Design
turn on template hints from System > Configuration > Developer
or you can add print_r(get_included_files()); to the end of index.php to see what files are actually used in current php page
You can find out which is set from following place
System > Configuration > Design
System > Design
here you can see the name of theme who layout,templates and skin is used
then u can explore the folder having the same name as files from that folder are in use.