Joomla 2.5 Article Menu Assignment - joomla2.5

I am trying to assigning a menu with category blog type. The article category is custom created and it is at level 2. Means
i have a root article category say 'rootcategory'. if i assign menu to this category it is fine.
but i have a child category under 'root category' say child- 1. if i assign this to menu
it is showing error. like category not found .
Please help me . Thanks in advance

Have you linked "child- 1" with a valid article/ category blog /... which has not the status "registered" or "special"?
Could you provide a URL?

Related

How to customize referenced taxonomy term in custom content type form

I'm new to drupal and need some help .
Context :
In drupal 8, I have a custom content type 'projet' with a custom field referenced a custom taxonomy term list .
The taxonomy term have a title and description (default fields).
In the 'add projet' form (route /node/add/projet) for the linked entity field and need to display checkbox list (this is working) displaying the title and the description. I can't find how to acheive this .
Tested configuration :
I have already test to change display and form display settings on the custom content type (route : /admin/structure/types/manage/projet/form-display)
also tried to change the display setting on taxonomy management
(route : /admin/structure/taxonomy/manage/axe_de_travail/overview/display )
Screenshoot :
For now on route /node/add/projet I have my taxonomy field displayed as
actual display:
What I expected is:

Moving "Product Options" Below Description Tab OpenCart

Haloo guys, I'm new here , i have a problem about template,
I want move this product options
http://i.stack.imgur.com/6BK4r.png
to bottom of Description tab .
Before, i can move it , but i had a problem , when i moved the product options Below Description Tab, when all required fields filled , then i push button "add to cart" , it said all required fields is Required!
Please help me, Thank you.
http://pastebin.com/rXPZCYBx
its the product page,
the product option page start from here
<div class="options push-<?php echo $this->journal2->settings->get('product_page_options_push_select'); ?>">
i make it back to normal

wrong related articles by category

am using joomla 2.5, k2 as a content manager. am trying to display related articles by category under every k2 article. so i instaled module everywhere, create a new k2 template and finaly add this code : <h3>Voir Aussi</h3>
{module Related By Category|category_id=<?php echo $this->item->category->id; ?>}
4 articles are displaying but they don't belong to the same category of the article.
here is the link for my site: my site
how can i fix it?

Facebook Like button - comment box with breif description and image

On my website when the user selects the facebook like button they have the option to enter comments. This popup window to enter comments only contains the users avatar and place to enter comments. How can i include my pic and a brief description of the site directly below the comment???
At first I thought it was from the HTML title attribute or meta property="og:title" ... but populating these have no affect
I have another site that contains both pic and a desc below the comment but the pic seems to be grabed at random -but always the same- from the site and the short desc I thought from the -title- attribute but its not - I changed the -title- and it still shows the same desc, its like its cached???
Any ideas how to control or populate a brief description and image within the comment section of a like button???

Magento:How to display drop down attribute on the product listing page

I have created a drop down attribute with a configurable product.
I would like to add in the grid/list product’s page the combo with the choice of my select attribute in order to be able to put in directly from this page the product into my cart wich is impossible for the moment : i have to go on the second page to choose the attribute.
i’ve read a lot of threads but i don’t find a way to achieve it.
thanks for the help.
So you want product "add to cart button" with "custom attributes" to be added to the product listing pages..there's an extension for this, see below:
http://www.mageworx.com/ajax-cart-magento-extension.html
I have only managed to add an "add all item to cart" button and "add to cart" button on my category listing pages.
For the attributes which have a frontend type “Select” we need to define options that on the product page converted into a dropdown. For example attribute color may have options Red, Green, Blue etc. which are defined in the admin area.
We can easily collect all the defined options for any attribute.
// use your own attribute code here
$attribute_code = "color";
$attribute_details = Mage::getSingleton("eav/config")->getAttribute("catalog_product", $attribute_code);
$options = $attribute_details->getSource()->getAllOptions(false);
Foreach($options as $option){
// print_r($option) and find all the elements
echo $option["value"];
echo $option["label"];
}
For more information about magento cart products, visit our Web\Agency-shop