I can disable through Smart Search Option.
The search suggestion cannot seem to be disabled when I edit the template file in modules though:
public_html/modules/mod_finder/tmpl
Which file can I update to achieve this?
With search module:
www.spacebizguide.com
With search component:
www.spacebizguide.com/component/finder/search?q=search&Itemid=101
It seems that you have fixed the error already (possibly it was a caching issue). In any case, you don't need to edit any template file to do so. Just go to Components -> Smart Search. Click on Options on the top right, and then click on "Hide" Next to "Search Suggestions". Do not forget to clear your Joomla (and browser) cache after doing so.
Related
I need to be able to link to another document on the site in the rich text editor by browsing and selecting it without manually typing in a URL to the document. Is this possible with Crafter?
I looked through the documentation about the RTE configuration plugins, and it looked like maybe the insert-component or insert-linkBrowse plugins would do it, but I made an attempt to configure them and add an item in the RTE editor controls, but it had no effect. I couldn't find any documentation specifically about those plugins, so everything I did was just a (wrong) guess.
There is nothing out-of-the-box that addresses this use-case. Options:
Build your model such that it has a repeating group of item pickers after the RTE and then followed by another RTE if need be (this means it won't be inside the RTE), which would make things more structured and arguably cleaner
Build it as a customization (it'll be a TinyMCE plugin)
Wait for the feature to be built by Crafter CMS: https://github.com/craftercms/craftercms/issues/1412
When using the various navigation and usage features of ReSharper, is there a way to make it hide some of the projects (with tests) in the solution?
Often when I'm browsing through the code, I'm not really interested in the tests, but only the production code.
I received this answer from the Resharper support team.
I have looked at "find usages" deeper and figured out that there is the
following item in filter dropdown -- "Show Unit Test Usages" (attached). So
if you uncheck this item -- usages from Test Projects won't appear in search
result.
Well im not sure this works for the navigation and usage features but for analysis it does, tryto use the skip files and folders menu to add folders which should be excluded.
Under Optionmenu use Settings under the Code Inspection section and select "Edit Items to Skip" and select your folder.
Take a look at this Article too
First, there's no setting in ReSharper to "forget" a certain project in solution.
However, in some cases, navigation combos may help you out.
For example, when you search for types, files or symbols with ReSharper, you can restrict search scope with navigation combos. Say, in NHibernate, entering "dm spec " in Go to Type restricts search scope to Projects\Core\NHibernate.DomainModel\NHSpecific
As evident from title, I entered a bug in MantisBT but mistaken choose wrong project. I can go back and edit most of the parameters of bug but it doesn't allow me to change the project. I looked in configuration and there seems to be no option for that there as well. Is there a way I fix the bug information by changing the project to the correct value?
You can move issues between projects if your system configuration and access levels allow it (look for the Move button in the View Issue Details page)
You can also move multiple issues by doing the following:
Go to View Issues page.
Filter on the issues you want to move (optional)
Tick the issues from the list that you want to move or select all.
Go to the bottom of the list and select "Move" then click Go.
Select project to move to.
Note that since MantisBT uses a universal id across all projects, moving an issue doesn't break links to it, since URL to the issue will remain the same.
Have used Joomla a fair bit, but have ending up taking over a site previously looked after by someone else. It had been recently updated to 2.5.6 from 1.6 and is sort of ok, but there are a few issues I'm finding particularly with the Admin Menus.
the extensions manager is missing its sub menu of 'update' 'discover' etc - does anyone have any idea to remedy this?!
a couple of components don't exist in the directory structure (admin or components) but are listed in the in the components menu in admin, so if I try to reinstall them it won't add the menu option...(get error saying menu item already exists). Does anyone know how to clear the menu options from admin so I can reinstall the components properly?
its a bit of a mess but I haven't the time to start from scratch on this site as its already been highly customised!
Any help much appreciated - as I say I'd be familiar enough with joomla but setting up from scratch without all the mess!
Many thanks
Clare.
For question # 2 you need to use phpmyadmin, or a similar tool and remove the offending components from the xxxx_extensions table. xxxx is a random 3,4, or 5 character string which was created during installation.
Also check the xxxx_menu table for menu items from these components.
Usually admin menu items appear in the "menu" menus.
WARNING! be extremely careful when hand editing your SQL tables. You can completely destroy your site, if you make a mistake. NEVER do a "drop" nor an "empty" with the tool.
As to question #1, I have not seen this behavior. Have you tried an update? or reloading Joomla over your current site? (If you do this, be sure to backup your site! We use Akeeba backup to do this)
I'm using a standard link list web part. What I want to achieve is before my users click on the link a pop-up javascript warning box will display, stating that they are leaving the domain. In regular anchor tag I would preceed the URL with javascript:ShowWarning('http://www.youtube.com');.
I've search the AllLinks table in the database but did not find the links was looking for.
Where or how are these stored?
Thanks,
Risho
Firstly, editing the SharePoint database directly is a really bad idea. You shouldn't do it unless you really, really know what you are doing, and even then you will probably break the system.
Secondly, any change made in the data will be what shows up in the editor, and I don't think the editor supports links that don't start with "http://".
A better approach is to use jquery to add the popup behaviour to the links when the page is loaded.