Backend problems

  • Posts: 441
  • Thank you received: 24
11 years 7 months ago #140672

-- url of the page with the problem -- : mywebsite.com/mypage
-- HikaShop version -- : 2.2.3
-- Joomla version -- : 3.21
-- PHP version -- : x.x.x
-- Browser(s) name and version -- : XXXXX x.x.x
-- Error-message(debug-mod must be tuned on) -- : Error_message

I have two problems with backend:
1.- in prodcuts i want to see all the products so i select all the subelements, and access denied message is displayed.
2.- In regions, only shows 20 regions at a time so i have to go through 14 page to disable all except my country, is there any way to display all the regions so i can check them all.

Please Log in or Create an account to join the conversation.

  • Posts: 12953
  • Thank you received: 1778
11 years 7 months ago #140690

Hi,
Can you show me some screenshots of the problems that you are having so that I can reproduce them on my end ? Also, can't you set the pagination of your "region" listing to "All" ?

Please Log in or Create an account to join the conversation.

  • Posts: 441
  • Thank you received: 24
11 years 7 months ago #140791

As you can seen in first two images each time a change the filter, it does not matter to what the access denied is displayed.
In the other two images you can see there is no pagination at all







Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 12953
  • Thank you received: 1778
11 years 7 months ago #140830

Hi,
1. Can you download the last hikashop version through our website, install it, and test it again ?

2.We just made a fix about this issue, so can you edit the file "administrator\components\com_hikashop\helpers\helper.php" , and replace these lines :

	jimport('joomla.html.pagination');
		if($this->pageInfo->limit->value == $max)
			$this->pageInfo->limit->value = $limit;
		$pagination = new JPagination($this->pageInfo->elements->total, $this->pageInfo->limit->start, $this->pageInfo->limit->value);
By :
		if($this->pageInfo->limit->value == $max)
			$this->pageInfo->limit->value = $limit;

		if(HIKASHOP_J30) {
			$pagination = hikashop_get('helper.pagination', $this->pageInfo->elements->total, $this->pageInfo->limit->start, $this->pageInfo->limit->value);
		} else {
			jimport('joomla.html.pagination');
			$pagination = new JPagination($this->pageInfo->elements->total, $this->pageInfo->limit->start, $this->pageInfo->limit->value);
		}

Please Log in or Create an account to join the conversation.

  • Posts: 441
  • Thank you received: 24
11 years 7 months ago #140873

ok both solved

Please Log in or Create an account to join the conversation.

Time to create page: 0.102 seconds
Powered by Kunena Forum