i am using joomla and I want to remove the four link tabs that reffers to googleplus twitter and facebook and news feeds . they are on top of the home page . how can I do that .
Those are added by your template. Check your template's configuration (from your backend), it most likely will have an option for you to disable it. If not, check your template's files (located in /templates/
I have checked my plugins but I could not find anything useful . I am using the pronostar template . it has no useful option to remove this . I have found my template files but I do not know wich file I should change.
1) It could be a module. Then you should go to Extensions > Module Manager under Administrative Panel and turn off the module with Social icons. It could be named arbitrarily, but you could find it by position.
For Joomla 3, positions are drawn here.
2) It could be configured in the template. Then, go to Extensions > Templates > Styles > Protostar and open it by clicking the template name.
I have the following settings with my (other) template:
]
Related
I am unable to find this page in the Joomla files. I want to edit this table and place a link in every row in the table. This is a creative contact form plugin for Joomla.
The page link from the Joomla administrator is https://SITENAME.COM/administrator/index.php?option=com_creativecontactform&view=submissions
Thanks in advance.
If I see it right, it's not a plugin, it's a component. I assume that you want to change the view, not the database table.
You should find all the files that handle the output of these components in the directory:
JOOMLA/administrator/components/com_creativecontactform/views/
or for frontend in the directory
JOOMLA/components/com_creativecontactform/views/
The file you're looking for should be in the directory
JOOMLA/administrator/components/com_creativecontactform/views/submissions
Upate: You should not change the original files. If you like to change the output you have do create an override. See section Component Output Types and Layout Overrides in the Joomla documentation Understanding Output Overrides.
I created a page within dnn (v9.0.2, 2sxc 8.12.0) with all modules (only 2sxc content modules) like the page design had defined it. After this I created a template from this page. After this I created a couple of sites using this template.
My problem is, if I change the content of module A on page 1 - all modules A on the other pages 2..n of this template have this content now too. Same effect, if I use the duplicate functionality.
Does anyone have a hint how to use page temlating using 2sxc content modules?
What you need to do is open the template file in an editor and locate the section that describes the module. The best way to do this is to find the EntityId of the content item on the page from which you created the template. Then, find that number string in the template. Just remove the string, leaving the XML node otherwise intact.
When you build the page, you'll get a 2sxc module that is uninitialized and you'll need to specify the content.
If anyone is listening, I wish that this behavior was different. I'd prefer that the template assigned to the module could be preserved, but with the default content showing.
Basically the issue is that DNN has only one way to export a page, and we would need something where our code could contribute something before the export is complete.
At the moment there are two ways to do this.
One way is to use the method described by Joe, modifying the XML export
The other way is to place un-initialized blocks on the template page - meaning that you select your content-type / template, or your app, but don't start adding any content yet. This should result in the identical XML as the one modified manually.
I am trying to add images to my Joomla article page. They do not display. Only the path is showed, like the following
{gallery}hotel/Al-Bandary-Tower{/gallery}
Please help me to find out the reason.
Thanks in advance.
1) Go to Extensions -> Plugin Manager and make sure that Simple Image Gallery that you use is turned on. Click on it to open settings.
2) You should have a name of root images directory - directory above "Hotel" in your case - under Images root.
3) In the very end of the settings check that GD library is supported by the server. Otherwise, ask your hoster to turn it on for your account.
4) In the details panel set the radiobutton to "Enabled". Save the settings.
(source)
If you use K2, note that you can use Simple Image Gallery tags only in K2's introtext or fulltext blocks.
I had an link in my DNN site Menu - pointing to aspx page of my installed module.
I replaced this link with an external link.
And now i wish to change back to old one - aspx from module. BUT am not getting that listed in the dropdown
How to get that back or I missed anything ? I could found the module still in that EXTENSIONS.
Please suggest
Rigin
I think you may be a little confused,
Modules are placed on pages, (One or mor module generally makes up a page.
Menu links refer to pages,
To add a module to a menu it must be on a page.
Once you have placed you module on a page you can select it from the select a web page drop down
A dnn module got 2 pages a view page and a settings page. So you must be sure that your module start's with the correct page.
So what you want is not possible the way you want it.
Best way for you is to control the page in your module. You can control this with for example a user controls(ascx). See image for a default module view.
I have a site with several Templates (.dwt)
Two questions:
Is there a way to easily find which pages or files are attached to a specific template without having to open every file?
Is there a way to update only selected files attached to a template?
This page has a whole lot of info on working with templates:
Dreamweaver Template Help
To find all pages that use a specific template you can do a search (command+f or control+f) for <!-- InstanceBegin template="/Templates/***YourTemplateName***.dwt.php", make sure to to choose Entire site from the first drop down...
...and Source Code from the second
You can update an open file by choosing Modify -> Templates -> Update Current page