De repente ha dejado de funcionar la imagen del captcha que viene por defecto en el componente JCommets. No sé por qué, pero he encontrado la salución aquí: http://premius.net/blog/web-design/101-how-to-fix-jcomments-captcha-image-not-showing.html
Implica editar el código de un fiecho del componente.
- Open file /administrator/components/com_jcomments/admin.jcomments.php
- Find line:
$lists["captcha"] = JCommentsHTML::selectList($captcha, 'cfgcaptchaengine',
'class="inputbox"' . $disabledCAPTCHA, 'value', 'text',
$config->get('captcha_engine'));
and replace with:
$lists["captcha"] = JCommentsHTML::selectList($captcha, 'cfgcaptchaengine',
'class="inputbox"' . $disabledCAPTCHA, 'value', 'text',
$config->get('captcha_engine', 'kcaptcha'));
- Save changes in file
- Open JComments settings and re-save current settings
- Finish
For some unknown reason, the feacebook like message box displayed at any k2 article shows half size, so we cannot add a comment to a like action. Searching on the k2 forums we found a working solution to fix this problem:
1. go to this directory: /components/com_k2/templates/default/item.php (or /templates/your template/html/com_k2/default/item.php)
2. find: "fb.like"
3. Then modify the data-width. I changed mine to "450" for full width facebook comment form
Done!
To remove 'Basic Settings" from the profile view or eit. Go to User Manager: click the "Options" button. In that popup window you'll see: Frontend User Parameters and set that to "Hide."
For other profile fields: go to Extensions>Plugin Manager>User Profile and select the options you want.
Sacado del foro joomla.org.
Este es un artículo creado desde el frontend. Desde el menú de un usuario publisher. Es muy fácil y sencillo.
Al editar o añadir un artículo en el frontend no me deja buscar imágenes en los directorios del servidor. No me carga el javascript browser que navega por los directorios. Como lo he solucionado?
Me ha pasado varias veces que intento editar un artículo de K2 desde el Frontend, y resulta que no me carga el editor WYSIWYG, en mi caso uso el JCE. La solución es sencilla aunque me ha costado bastante tiempo de encontrar.
Te presentamos nuestros Packs Web Empresa, que incluyen el alojamiento y la instalación de la plantilla Joomla que más te guste por un precio increíblemente económico.
Visita nuestra selección de plantillas DEMOS aquí.
En la nueva versión de Virtuemart 2.0.26d me he encontrado con unas nuevas plantillas para el popup que sale cuando añades un producto al carrito. Esto es nuevo. Antes el contenido de este popup del fancybox javascript se encontraba en el fichero controllers/com_virtuemart/controllers/cart.php donde están las funciones de añadir productos al carrito, y algunas de las funciones ajax.
After the setKeyWord function in \administrator\components\com_virtuemart\models\product.php place:
function untreeCat($vm_catid, &$ccont){
$db = JFactory::getDBO();
$query = 'SELECT `category_child_id` FROM `#__virtuemart_category_categories`
WHERE `category_parent_id`="'.$vm_catid.'"';
$db->setQuery($query);
$db->query();
$rows = $db->loadRowList();
if (empty($rows)){
return;
} else {
foreach($rows as $row) {
array_push($ccont, $row[0]);
$kat = $row[0];
$this->untreeCat($kat, $ccont);
}
}
}
Then search for this:
Google has changed javascript URL. This affects both Joomla reCaptcha and K2. To make it to work I did this:
Joomla plugin:
Edit plugins/captcha/recaptcha/recaptcha.php and change URL
Line 24: const RECAPTCHA_API_SERVER = "http://api.recaptcha.net/recaptcha/api";
Save file.
K2:
Edit components/com_k2/views/item/view.html.php and change URL
Line 168: change URL to "http://api.recaptcha.net/recaptcha/api/js/recaptcha_ajax.js"
Save file.
Done! Working for me now!