How can i change text and links in the header part? - prestashop

Please how can i change text and links in the highlited zones in the picture below :
Click to see
Thanx a lot

Prestashop comes with a translation mechanism. Usually from your Prestashop backend, navigate to Localization > Translation, then identify "Modify Translations ". Select the type of translation, the theme and the language and hit on the button "Modify" on the right hand side. Look for any module in the front office translations group that contains "search".
Your situation may be a little be different because you are not using the default theme. You theme developer has probably created a new quick search module. You would need to identify the actual module and it should be easy to identify it from the list of translatable module. If the module is not well developed, it will not be possible to modify them. In that case, you should ask your theme developer.
I hope it help. Good luck with your business.

Related

IntelliJ Plugin Development: LookupElement with class preview

For a custom language I created a CompletionContributor. Everything works fine. But I'm limited to the information I can display (only in the list or the bottom "advertisement" and only 1 line).
When trying to auto-complete on a java class name it will display more information on the selected line in a small side window. I would like to exploit that mechanism but I really don't know how it is done.
When looking at the options provided, I can use a custom LookupElementRenderer but there is no method in LookupElementPresentation related to the right window.
Any idea how it is done?
Are you referring to documentation popup which may be displayed if the corresponding setting (Setting->Editor->General->Code completion->Show the documentation popup in) is turned on?
If you want the feature to work for your language you have to use lang.documentationProvider extension point.

Edit Shopify Admin Area

Can I add additional links to the Shopify admin panel? (ie. under Apps and Settings)? It would be great to include a link straight to the edit HTML/CSS screen instead of navigating via Themes - '...' - Edit HTML/CSS. It will help speed-up the development process when working in the browser direct.
Its in the settings_schema.json. When you go to your themes, choose edit css/html, then find the config section on the left. Expand if necessary and find the file settings_schema.json. You can edit this file to create custom items that you can modify through the admin dashboard by choosing the "customize theme" option.
Basically, you can customize the customize theme area. :)
To address your specific situation, I would create a checkbox in the theme admin to enable/disable a link to what you are looking for. Then could code into the theme somewhere to display that link if it is enabled and other conditions are met. This is optional however, as you could just directly add this code to the theme as well without the enable/disable functionality, just makes it a little cleaner. I'm including the info about settings_schema.json to help others as well.
Summary:
In the admin dashboard click Online Store
Then Click Themes
Next Click the little ... button and choose Edit HTML/CSS
In the left column find the config section and expand it
Click settings_schema.json to edit the file and customize theme admin
Hope this helps someone :)
Shopify is a SaaS or fully hosted (cloud) solution. The admin panel can't be modified "out of the box". You could write a userscript (JavaScript injection) which would alter the Shopify Admin for you. Tampermonkey will help you!
Shopify has a pretty great desktop editor you can download, and directly open your HTML and CSS files in your text editor. When you save, the changes are automatically pushed live to the theme.
https://apps.shopify.com/desktop-theme-editor

PHPStorm Live templates not expanding

I've just started to play araound with PHPStorm and I can't get the live templates to work. For example there's one for a public function..'pubf' then tab to expand however when I tab mine out it looks like this...
<pubf></pubf>
What's going on? Is there a setting I need to enable to get it to work?
Thanks
Just for a little more clarity:
Even though you're under the PHP branch, you still need to apply the abbreviation to an application. Click the "Define" link and check the PHP box.
It was a question of scope for the template, just needed to select the appropriate file types.
Try:
Settings / Emmet and changing the default 'Expand abbreviation with' from tab to say custom
Make sure the context is selected underneath your template text. There is a small 'Change' link there where you set the context. I had to choose all contexts.

Issue on using "scrolling text" module in Joomla

I have downloaded and installed various module for scrolling text horizontally using these websites.
After I created new module and point out the position of that module, I can view that module in my web page. The text didn't appear because I didn't mention it in my module.
In Both of those modules, I couldn't find out that where have to I place the text to be scrolled in that particular modules?
I have searched a lot. But I couldn't get anything.
Any help will be appreciated!
Thank you in advanced!
These extensions display text from articles. So all you have to do is simpley:
Create a category in the Content Manager
Create some articles and assign them to your newly created category
In the Module settings, there will be an option to choose which category you wish to display the articles from, simply select your category
Hope this helps
There is no need of using any other modules for scrolling the text.
I used Custom HTML as menu type and write the code on editor.
The steps I have done as below:
Go to site -> Global configuration -> set Editor-None in default editor
Go to Extension-> module Manager -> New -> select the module type as Custom HTML
Copy the html code for scrolling text and Paste it in the text part and save the module.
Check your site. Now, your site is having the scrolling text. Then, You can change the Editor as before.

Is there a client-side IDE for textareas on webpages?

Much of my work involves a web-based CMS I cannot modify. That means lots of textareas, and none of the IDE features I love, such as tab functionality, syntax highlighting, etc.
Are there any browser modifications, or bookmarklets, or anything that would allow a client side inline override of textareas, allowing IDE like features (even as basic as simply allowing use of the tab key instead of alt+009) in a webpage's textarea field?
Yes there are. For example: Web Wiz Rich Text Editor, the first one I found when Googling "browser text editor". :) It appears to be free to use, with paid premium versions.
I'm sure there are others!