Change texts in Magento - magento

I need to change text on our Magento homepage, but I can't do it. When I go to CMS -> pages -> homepage -> content, the thing I want to change isn't there. This is our website: http://bsw-bv.com/. Could anybody tell me how I can change the text in the blue boxes beneath the slider?

You can try editing the text in the 'CMS -> Static Blocks' menu of the admin panel of your Magento store. You can try editing 'Homepage Image Carousel' entry from the list appears under this menu.
In case you are not able to edit the text in above menu then we can only say that the text you want to change is not a part of default Magento installation, but it is a part of your theme, we can only suggest you search for that particular text in your theme's PHTML files. Search for 'Professional Cleaning Solutions' in your case.

Related

Magento layered navigation position

i bought one theme and i want to fix my layared navigation to work well.
I need help from which file i have to edit to fix my layered navigation to show after my menu.
First you should find correct template file,then override the template within your theme, then finally rearrange the code so that it displays beneath the vertical navigation. The following may (possibly) work for you. But I don't know what type of theme you are using.
go to your magento backend url, then go to system->configuration->developer then open the debug panel.
Change the current configuration scope to 'Main Website'. Upper left corner of config page.
This should add some items to the debug panel. Set template path hints to 'yes'.
go back to the website and find the phtml file that controls your nav.
copy the file into the theme your using using the same folder structure.
edit that code.
PS another solution may be available to alter the layout files of your site. they get overridden in a similar fashion to phtml files.

Magento- how to replace menu text with menu image

In magento how to add a icon in menu like home icon contact us
i need to replace the text with an image am not good in magento please help me to find a solution
This is unfortunately not built into Magento but depends entirely on the theme that you are using. Some themes do offer icons in the menu.
You can do it in the code however but that needs some html and css skills

Magento navigation menu but not added as Category

I am very new in Magento.Actually we have a client who has purchased a Magento theme and top navigation of theme is displaying some menu links like delivery,Contact Us and these are not added as Categories.May be hard coded in the theme.Can anyone tell from which file these links are appearing so that i can edit them.
Use template path hints to find out where they are.
http://www.pauldonnelly.net/magento-turning-on-template-path-hints/

Changing Layout of Product Options in Magento

I'm currently customizing the bluescale theme for Magento. I have moved the position of the "product options" box for configurable products from lower on the page to just under the title.
I am now trying to remove the 3 links below the add to cart button (add to wishlist, compare, and ask a question), but cannot figure out where to do so. Where can I find the template for the actual "product options" box? You can see the webpage here: http://bit.ly/xgFy2a
P.S. I can't simply delete the template file for the links, as they still appear elsewhere.
Thanks,
Brett
You can debug your template locations by enabling Template Path Hints like this:
Open the admin control panel
Open the system tab and select configuration
Select Developer on the left sidebar
Select Main Website From the Current Configuration Scope Drop Down (upper left)
Open the debug dropdown
Set Template Path Hints To Yes

How to Disable/Enable WYSIWYG editor in Magento 1.4

When entering code in CMS static block(possible page as well) and in this code there is empty DIV tags such us:
<div class="dropoff_button"></div>
The DIV tags will be gone next time you open the block to edit. it will look as this
without the div tags
...and saving again it modifies your code.
I think it something to do with the 'show/hide editor'. By default it goes into the WYSIWYG editor, so when updating static block i don't see any other solution than
1."hide the editor' by clicking 'show/hide editor'
2.delete the old code from the editor
3. get code that doesn't miss the DIVs
4. Merge new code with code in 3 in some other editing software than magento
5. paste result in the magento editor,
6. Save
Is this bug? What is your solution? Can i turn of WYSIWYG editor?
This may not be consider as an answer but it solved our problem. It turns out that the editor WYSIWYG can be disabled by completely or by default at Admin->System->Configuration. Under 'General Tab' there is 'Content Management' section and there you can set different modes for this editor.
In our case we set to "Disable by Default" so that any time we open static block it does not clean the code only if we choose by clicking "Show/Hide Editor"
The editor, whether in WYSIWYG or not, tries to clean up your code. You may notice that it also replaces all your newlines and indentation as well. This means that you cannot just freely enter HTML into the CMS editor w/o it interfering.
I have not found a simple way to trigger the CMS not to clean your code on the way into the database.
Hope that helps. Thanks,
Joe
You can allow specific tags into tinymce.
You just need to edit the settings var in /js/mage/adminhtml/wysiwyg/tiny_mce/setup.js and add the following line:
extended_valid_elements : 'iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder|allowTransparency],style,script',
You can see more info about it at this other thread:
Magento - How to allow certain tags (iframe, embed) in Magento's CMS editor?
It works for me on Magento 1.6.

Resources