*

MB Themes

Re: Reporting something with categories
« Reply #15 on: February 16, 2018, 05:01:24 PM »
Can you switch to bended and try it with this theme?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

slicer

  • ****
  • 204 posts
Re: Reporting something with categories
« Reply #16 on: February 16, 2018, 05:13:54 PM »
Can you switch to bended and try it with this theme?

Sure ^^ switched to Bender and it works like a charm, take a look if you like.

*

MB Themes

Re: Reporting something with categories
« Reply #17 on: February 16, 2018, 06:13:04 PM »
Let me setup stela and attributes plugin on my dev server and we can try to reproduce it.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

slicer

  • ****
  • 204 posts
Re: Reporting something with categories
« Reply #18 on: February 16, 2018, 06:24:26 PM »
Sure ^_^ thanks in advance for your great support and patience with customers.

*

MB Themes

Re: Reporting something with categories
« Reply #19 on: February 16, 2018, 07:59:32 PM »
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

slicer

  • ****
  • 204 posts
Re: Reporting something with categories
« Reply #20 on: February 16, 2018, 08:30:51 PM »
@slicer
https://dev1.abprofitrade.eu/

(admin access)
[email protected]
demo123

It's happening on your demo as well

to reproduce:

clic on

then clic on show more filters  (right corner of search button)
then clic on Select Value ...
clic Mercedes Benz
then boom you will see
skoda
skoda
skoda

or

whatever
whatever
whatever
forever

when you clic on that it fixes itself but the next sub-secuent value will carry on the same bug.


A question: How do you use that banner space?  my banner plugin doesn't work that great  >:(

Marked as best answer by frosticek on February 16, 2018, 08:54:08 PM
*

MB Themes

Re: Reporting something with categories
« Reply #21 on: February 16, 2018, 08:54:02 PM »
@slicer
Thanks, it is pretty hard bug and you will not be able to fix it (probably).

Go to file:
oc-content/plugins/attributes/functions.php

Find code:
Code: [Select]
$html .= '<option value="' . $c['pk_i_id'] . '">' . atr_name($s['locales']) . '</option>';
Replace it with:
Code: [Select]
$html .= '<option value="' . $c['pk_i_id'] . '">' . atr_name($c['locales']) . '</option>';
(so you change $s into $c).

 8)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

slicer

  • ****
  • 204 posts
Re: Reporting something with categories
« Reply #22 on: February 16, 2018, 09:08:58 PM »
@slicer
Thanks, it is pretty hard bug and you will not be able to fix it (probably).

Go to file:
oc-content/plugins/attributes/functions.php

Find code:
Code: [Select]
$html .= '<option value="' . $c['pk_i_id'] . '">' . atr_name($s['locales']) . '</option>';
Replace it with:
Code: [Select]
$html .= '<option value="' . $c['pk_i_id'] . '">' . atr_name($c['locales']) . '</option>';
(so you change $s into $c).

 8)

YESSSSS ^_^ it works =) ty ty

well I have no idea what the heck that thing does or what it means but... I do know how to replace it rofl

*

MB Themes

Re: Reporting something with categories
« Reply #23 on: February 16, 2018, 10:15:57 PM »
It was taking name of last parent instead of children.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots