Edit Shopify Admin Area - shopify

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

Related

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.

Customise Tinymce Fullscreen

I really like Wordpress' "Distraction free editing mode"
and don't like tinymce's default "fullscreen mode"
Is there a plugin that I don't know of that is available for tinymce to allow for this? By this I mean:
spacing on the margins
An outline that appears around content
A toolbar that appears upon hover
A save button that appears upon hover
Or, which I think is more likely, will I just have to style it myself?
I am not sure, because i am not much into wordpress, but their functionality is probably a tinymce plugin of their own. You could search for the tinymce plugin folder in a wordpress installation and copy the plugin you need from there.

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.

Customizing Sharepoint 2010 v4.master

I would like to customize v4.master in markup so that certain areas (Libraries, Discussion for instance) would not be visible. I tried deleting the placeholder and that didn't work. How can I hide certain areas of that master page?
Thanks!
There are clean master page it's name "Starter Master Page" .It's better to start customize Starter Master page instead of v4.Master
You can download it and learn more from the following link
Starter Master Pages for SharePoint 2010

Display QuickLaunch on WebPartPage in sharepoint 2010

I'm trying to work out how to get sharepoint 2010 to display the quicklaunch on a web part page, the default.master trick I used in 2007 doesn't appear to work any more.
In my 2007 install, I simply edited the default.master and moved the quicklaunch code outside of the PlaceHolderLeftNavBar element but this doesn't have any effect in SP2010.
Thanks
A simple way to eneble Quick Launch Menu on WebPartPages is remove tags UIVersionedContentUIVersionedContent and PlaceHolderLeftNavBar using SharePoint Designer 2010.
See this article: http://denmartins.wordpress.com/2011/05/07/exibir-menu-quicklaunch-em-webpartpages/
If you really want to place another copy of the quicklaunch on a web part here is the steps
Using Sharepoint Designer 2010 go to your site and navigate to Master Pages -> v4.master
Click edit file copy everything in the <div class="ms-quickLaunch"> that should copy everything you need for the quicklaunch to run. For best result use the code view and hover over the quicklaunch and you should see the div, click on it and copy (Ctrl + C)
Now you can paste that on another web part page and it should work, I tried it by creating a new test page and it worked
You need to make changes in v4.master (in masterpage library), not in default.master.
For details on SharePoint 2010 master pages, please, follow this link:
http://sharepoint-sandbox.com/index.php?/Tips-and-Tricks/Customization/tip-80-sharepoint-2010-new-masterpages.html
Your masterpage trick on my SharePoint Foundation 2010 environment works fine.
Anyway, I don't think, that moving any standard code from placeholder is a good idea. If you want change position of quicklaunch menu, you should move the leftnavbar placeholder itself, including all the contents.
Placeholders are generally used to allow some pages, for example application pages, replace placeholder contents. So, if you hide the placeholder, and move it's contents out, these changes will be lost, and the standard menu will be shown. (and if you do not hide the placeholder, you can get two menus on one page :) )
Hope it helps!