Issue on using "scrolling text" module in Joomla - module

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.

Related

Edit document properties in MS-Word 2016

I am currently trying to setup a template where the user is prompted to add "tags" to their document when they open a new MS-Word file. Currently I have broken this down in a few parts.
Startup prompt
Connect the document/script to the "tag" property (so the user don't have to manually change it)
Ideally implement a drop-down menu, so I don't accidentally tag some files with small differences such as spaces, case sensitive formating etc.
Currently I have tried most of what Word has to offer, which is why I came here. The easiest answer is to go in "File -> Information -> Tags" and edit this manually, but this is what I hope to automate. I have used the feature "Quick Parts", where I can add a field which edits properties such as "Author", "Tags" etc. The problem here is that they are not customizable, so I can not implement a drop-down menu. I have tried to use the "Developer" section in Word to add controllers such as drop-down menus, but I have not found a way to connect these to the document properties. I also tried using the FILLIN command to see if it could be used as shown below, just to test if I could set these properties from the document in this way.
{ SET bkmTitle { TITLE { FILLIN "Enter the document title" } } }
The problem with this implementation is that I don't want to press F9 in these fields when I start up a new project. I have not done much research into the startup prompt because I see this as the finishing touch, but if anyone has any advice on that too, it would be greatly appreciated.
I don't have any experience with macros/VBA, but I am open to learn if that is the easiest way to realize this project. Thank you kindly in advance.
From Charles Kenyon's links I solved my problem with Quick Parts. My solution was to extract the .docx file so I could access the .xml file within. Inside the .docx file (also works with the .dotm template file found in /AppData/Roaming/Microsoft/Templates). Using 7-zip I opened the .dotm archive and went on word -> document.xml.
I made a template by editing the Normal.dotm (MS-Word template file). Here I added a Quick Part for "Category", then saved the template. I then opened the .xml file as mentioned above where I could edit this Quick Part for the template from textfield to a drop down menu (was not possible to change in Word to my knowledge).
To change it into other types than drop down menu, it is possible to add other control forms from Word by clicking on the "Developer" tab and selecting other controls such as "Checkbox". When you open the "document.xml" file afterwards, you can now see the schema for a checkbox.
When editing the "Document Properties" style Quick Parts, they are automatically linked to the document properties, which is what I wanted to learn how to do. It is probably possible to also use the document.xml file to explore how to link other fields to the document properties. I hope this answer might help others if they want to explore more options in MS-Word.

IntelliJ File and Template Macro Missing

I just updated my IntelliJ and have found that when I create a new class or page the auto completion tags are not generated anymore. Meaning that I get a blank page with no tags. I assume it was a Macro that was helping to generate these header and footer tags. Does anyone know if there is another way of re-instantiating this functionality? If the only way to do this is via File and Code Templates, does anyone have the macros for the tags? Thank you!!
Picture 1 is what the class looks like when I create a new class. I then have to manually add in the tags as you can see in picture 2. Before the update intellij was auto populating the class name and the brackets.
After speaking with support, it appears there is a bug in one version down from 2017.2.2 of intelliJ.
After I updated my intelliJ, my templates were being populated again. Here is the link to the download:
https://www.jetbrains.com/idea/download/#section=windows

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

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.

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.