How to remove power by joomsocial in email?



If anyone use the version joomsocial 2.6, which runs onjoomla 2.5.x, you easily find that in all emails contain the sentence "power by joomsocial" above the line of copyright.

It takes long time to look around, but people say that you must by pro version to get rid of it.

I look back again the code, and I finally think about listbingo component, maybe it has the same technique, and i'm right. It 's all in CTemplate like in GTemplate of listbingo.

Now I will show you how to remove it. Open the file components/com_community/library/template.php. Go to line 308 and remove the code:

1.if (!COMMUNITY_PRO_VERSION) {
2.//POWERED BY LINK//
3.$jConfig = JFactory::getConfig();
4.$siteName = $jConfig->getValue( 'sitename' );
5.$powerBy = 'Powered by http://www.jomsocial.com/">JomSocial for . JURI::root() . '">' .$siteName . '';
6.}

Test again, everything 's done. Hope this is helpful for you.

[Read More...]


How to remove the tag meta generator" in joomla 1.7 and joomla 2.5?



Some time we want to remove the tag joomla 1.5 ,Joomla 1.7 orjoomla 2.5. I found some ways to do that.

First, you can edit the joomla core file: : \libraries\joomla\document\html\renderer \ head.php at line 91

Finally you can edit at index.php in the template that you use. Please find this line:

1.code="">include type="head" />

And add this just above: setMetaData('generator','my site'); ?>

and finally you have

1.$this->setMetaData('generator','my site'); ?>
2."head" />

In some template, it is in the header blog and maybe in header.php. In template of T3, it is in plugins\system\jat3\jat3\base-themes\default\blocks ... Find this could be difficult for you, but i will help you understand more your template and it good for you in further development.

[Read More...]


plugin_adsmanager 2.6.5 joomla 2.5.2 for xmap component



I have used Xmap component of joomla (joomla 1.5 ,Joomla 1.7,joomla 2.5) for long time, I have to say that it is really wonderful and the most important thing is it 's free. It runs well in every version of joomla. Today, I use plugin adsmanager 2.6.5 with xmap (joomla 1.7, joomla 2.5) but get some errors. Plugins that shared on the internet cause some errors such as:

1.Unable to detect manifest file
2.Error installing COM_INSTALLER_TYPE_TYPE_XMAP_EXT

I try to figure out in two forums: http://forum.joomprod.com; http://joomla.vargas.co.cr/en/forum?task=viewtopic&f=2&t=3908&view=print but there is no solution. I have changed this plugin and it run well with Joomla 1.7.5, joomla 2.5, joomla 2.5.1, joomla 2.5.2; Xmap 2.2.1 or xmap 2.0, xmap 2.2.2; Ads Manager 2.6.x.(2.6.5)

And this plugin is free. I understand the sense of people who want to solve this problem, if you have any question, please leave a comment here, i will try to help you.

Download free here: plugin_adsmanager 2.6.5 joomla 2.5.2 for xmap component

[Read More...]


How to modify categories view in virtuemart?



In virtuemart forjoomla 1.5 , the category view is difficult to find out where to modify. Specially, the default number of columns is 4, and now you want to change to 3, you don't have any option to change. I have taken all day to find out where it is and how the virtuemart runs.
Firstly, the home page of virtuemart is set by the file administrator/components/com_virtuemart/html/shop.index.php, and the template is components/com_virtuemart/themes/default/template/common/shop.index.tpl.php. For example, if you don't want to display categories view at the front page you can delete
echo $categories at line 7.
You can read more How to modify categories view in virtuemart? at jw-extension.net
[Read More...]


How to add captcha in registration of joomla 1.5?



The previous article has mentioned about recaptcha. This article we will show the detail how to add recaptcha to register page.


First read this article to download recaptcha plugin and config it.


Then go to folder components/com_users/controller.php line 61 and place this:


global $mainframe;
$mainframe->triggerEvent('onCaptchaConfirm');


Finally, go to template file in components/com_user/views/register/tmpl/default.php or in folder template/template_name/html/com_user/register/default.php and insert this:


<?php global $mainframe;
$mainframe->triggerEvent('onCaptchaDisplay'); ?>


at where you want.


This can help you stop spammer from register automatically and spam you forum.


Hope this is helpful.

[Read More...]


An easy way insert captcha in any module or component of joomla?



A popular way to stop spammer from spamming is using captcha. But writing an own captcha will take a lot of time. There is one simple way to solve this problem is using Joomla reCAPTCHA Integrator Plugin. It uses an external captcha from recaptcha.net now belong to google http://www.google.com/recaptcha.



How to use it:


1. Download it from: http://www.joomlaez.com/


2. login to http://www.google.com/recaptcha to get reCAPTCHA Public Key and reCAPTCHA Private Key. Or you can use mine:


ex: public key: 6Lf6AssSAAAAAEvaWJr-DvFPAj5pXLQeZaeP_zTX private key: 6Lf6AssSAAAAAJLFx2HpG86yCwEoskIpW3ZQ7Znk


3. Install , enable and enter public and private key


4. In HTMLmodule insert {captcha} where you need to display captcha


5. In general please insert

{code}

global $mainframe;
$mainframe->triggerEvent('onCaptchaDisplay'); {/code} to display captcha.


6. If Auto-verify with reCAPTCHA option is enabled, the plugin will check if captcha verification data exists then automatically connect to reCAPTCHA and ask for confirmation. This method requires a little more system resource on every page load but really useful if you have many pages need captcha verification.
If you don't want to enable captcha verification globally but for just few pages then you might want to disable Auto-verify with reCAPTCHA option. To verify user response, insert the following PHP code to the controller file of individual Joomla! extension where captcha verification needed:
{code}
global $mainframe;
$mainframe->triggerEvent('onCaptchaConfirm'); {/code}


[Read More...]


How to prevent spammer in forum kunena?



Many joomla programmers use forum kunena. After a time, there are many articles are posted automatically by spammers. There is some way to stop it.

you can use component: Spam killer for kunena. But many people say it doesn't work. So it is not a good way.

After a time thinking, I find that these spammer relate to com_users to register user automatic, posting article automatic by some code inside forum kunena. If we stop spammer registration, we can stop these annoyed things.How can we do this? JWUSER is a good solutions.

1. Fist, download jwuser. Choose the suitable version for yourjoomla 1.5 ,Joomla 1.6 ,Joomla 1.7 website.

2. Then, config your website at global configuration: not allow register for new user.

3. Set the registration page of your website to registration page of jwuser.

Everything run as before, you also have more option from jwuser. No spammer can post article in kunena forum.

[Read More...]


 

Link Liên kết

Thông tin liên hệ

YH: huonggiangdhtn
Skype: tthuonggiang
Return to top of page Copyright © 2010 | joomla extensions jw-extension.net