[Joomla] Categorie menu verdwijnt

Pagina: 1
Acties:

Vraag


Acties:
  • 0 Henk 'm!

  • SaN
  • Registratie: September 2002
  • Laatst online: 13:37
Mijn vraag
Ik ben bezig met de webshop van [mbr]*snip* spam[/], en nu heb ik een probleem waar ik niet uitkom. Ik gebruik Joomla, met Hikashop als plugin voor de webshop. Ik had wat kleine veranderingen doorgevoerd in de opties van Hikashop om het er iets beter uit te laten zien.

De volgende dag begon het menu aan de linkerkant van de webshop, met alle categorieën vanzelf te verdwijnen. Vaak al na een paar clicks in de webshop. Ook verdwijnen sommige categorieën totaal. Klik bijvoorbeeld op "Kip & Ander Vlees". Daar staan zo'n 25 subcategorieën in. Zodra het menu aan de linkerkant verdwijnt (vaak na het klikken op een product en daarna weer terugkeren naar de hoofdpagina) zijn er ineens ook nog maar 3 subcategorieën over onder "Kip & Ander Vlees"

Wat overigens ook vreemd is, is dat ik op mijn PC thuis eerst een behoorlijke tijd kon werken met de website zonder problemen. Pas na één a twee uur verdween het menu voor de eerste keer.

In de incognitomodus van Chrome lijkt het menu helemaal niet te verdwijnen. In Edge verdwijnt het menu vrij snel, maar is het ook weer direct terug als je edge opnieuw opstart en opnieuw naar de website gaat. In Chrome is dat niet het geval en lijkt het menu pas na een bepaalde tijd weer terug te komen. Hier lijkt mij ergens de sleutel in te liggen tot de oplossing voor dit probleem, maar ik heb er te weinig verstand van om hem hieruit te halen.

Bij deze een screen capture van het probleem

Wat ik al gevonden of geprobeerd heb
Ik heb de cache van joomla uitgeschakeld en uiteraard even nagedacht over welke settings ik heb aangepast in hikashop de dag eerder. Ik heb geprobeerd om sommige van die settings terug te zetten, maar zonder resultaat.

[ Voor 7% gewijzigd door SaN op 27-11-2020 15:30 ]

Alle reacties


Acties:
  • 0 Henk 'm!

  • SaN
  • Registratie: September 2002
  • Laatst online: 13:37
Ah, ik kan blijkbaar niet linken naar de website. Lastig. Nu kan ik de openingspost ook niet meer editten.

Ik wilde nog even toevoegen dat ik ook naar de instellingen van de module van het categorie menu heb gekeken, maar dat ik daar niks vreemds kan vinden.

Acties:
  • 0 Henk 'm!

  • RobIII
  • Registratie: December 2001
  • Niet online

RobIII

Admin Devschuur®

^ Romeinse Ⅲ ja!

(overleden)
SaN schreef op vrijdag 27 november 2020 @ 13:44:
Ah, ik kan blijkbaar niet linken naar de website.
Nee, maak even een testcase voor zover mogelijk ;) (Hoewel dat in dit geval vrij lastig is wellicht - maar dan voegt de link ook weinig toe).
SaN schreef op vrijdag 27 november 2020 @ 13:44:
Lastig. Nu kan ik de openingspost ook niet meer editten.
Nu wel. Was nog bezig, heb maar 2 handjes :P

Ik zou eens beginnen met kijken of de dingen die "verdwijnen" ook echt weg zijn of wel nog in de HTML voorkomen (view source); dat sluit iig al uit of 't in je CSS zit of dat er server-side al iets mis gaat. Kijk verder eens in je console of je daar nog dingen ziet.

[ Voor 32% gewijzigd door RobIII op 27-11-2020 13:47 ]

There are only two hard problems in distributed systems: 2. Exactly-once delivery 1. Guaranteed order of messages 2. Exactly-once delivery.

Je eigen tweaker.me redirect

Over mij


Acties:
  • 0 Henk 'm!

  • SaN
  • Registratie: September 2002
  • Laatst online: 13:37
RobIII schreef op vrijdag 27 november 2020 @ 13:44:
[...]

Nee, maak even een testcase voor zover mogelijk ;) (Hoewel dat in dit geval vrij lastig is wellicht - maar dan voegt de link ook weinig toe).


[...]

Nu wel. Was nog bezig, heb maar 2 handjes :P

Ik zou eens beginnen met kijken of de dingen die "verdwijnen" ook echt weg zijn of wel nog in de HTML voorkomen (view source); dat sluit iig al uit of 't in je CSS zit of dat er server-side al iets mis gaat. Kijk verder eens in je console of je daar nog dingen ziet.
Bedankt voor de tip! De paginabron is inderdaad anders voor de website in incognito modus dan in de normale modus.

Dit is alles wat ik in de normale modus (als het menu verdwenen is) nog kan vinden van module 254 in de bron.
code:
1
2
3
4
5
6
7
#hikashop_category_information_module_254 div.hikashop_subcontainer,
#hikashop_category_information_module_254 .hikashop_rtop *,#hikashop_category_information_module_254 .hikashop_rbottom * { background:#ffffff; }
#hikashop_category_information_module_254 div.hikashop_subcontainer,
#hikashop_category_information_module_254 div.hikashop_subcontainer span,
#hikashop_category_information_module_254 div.hikashop_container { text-align:center; }
#hikashop_category_information_module_254 div.hikashop_container { margin:10px 10px; }
#hikashop_category_information_module_254 .hikashop_subcontainer { -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; }


Sidebar 1, waar de module hoort te staan is ook nagenoeg leeg.
code:
1
2
3
4
5
    <!-- SIDEBAR 1 -->
        <div class="t3-sidebar t3-sidebar-1 col-xs-6  col-md-3  col-md-pull-6 ">
            
        </div>
        <!-- //SIDEBAR 1 -->


En dit is de "normale" code
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!-- SIDEBAR 1 -->
        <div class="t3-sidebar t3-sidebar-1 col-xs-6  col-md-3  col-md-pull-6 ">
            <div class="t3-module module " id="Mod254"><div class="module-inner"><h3 class="module-title "><span>Producten</span></h3><div class="module-ct"><div id="hikashop_module_254" class="hikashop_module ">
<div id="hikashop_category_information_module_254" class="hikashop_category_information hikashop_categories_listing_main hikashop_category_listing_0">
        <div class="hikashop_subcategories_listing">    <div class="hikashop_subcategories">
<div id="category_panel_254" class="pane-sliders"><div style="display:none;"><div></div></div><div class="panel"><h3 class="pane-toggler title" id="category_pane_0"><a href="javascript:void(0);"><span><a href="/index.php/hikashop-menu-for-categories-listing/category/95-kip-ander-vlees">Kip & Ander Vlees (223)</a></span></a></h3><div class="pane-slider content">     <ul class="hikashop_category_list ">
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/96-kip-in-delen">Kip In Delen (25)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/99-huisgemaakte-producten">Huisgemaakte Producten (14)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/100-hele-kippen">Hele Kippen (13)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/101-wild">Wild (26)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/102-eend">Eend (12)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/103-fazant">Fazant (4)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/104-gans">Gans (2)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/105-haas">Haas (5)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/106-hert">Hert (7)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/107-kalkoen">Kalkoen (7)</a>
            </li>
            <li class="hikashop_category_list_item current active">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/108-konijn">Konijn (5)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/109-lamsvlees">Lamsvlees (3)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/110-parelhoen">Parelhoen (3)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/112-overige">Overige (9)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/113-duif">Duif (2)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/114-kwartel">Kwartel (3)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/115-varkensvlees">Varkensvlees (10)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/116-snacks">Snacks (25)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/120-rundvlees">Rundvlees (2)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/121-sate-andere-spiezen">Saté & Andere Spiezen (10)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/122-worst">Worsten (8)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/123-kant-klaar">Kant & Klaar (20)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/130-broodbeleg">Broodbeleg (3)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/133-wild-zwijn">Wild Zwijn (5)</a>
            </li>
        </ul>
</div></div><div class="panel"><h3 class="pane-toggler title" id="category_pane_1"><a href="javascript:void(0);"><span><a href="/index.php/hikashop-menu-for-categories-listing/category/131-toko">Toko (520)</a></span></a></h3><div class="pane-slider content">      <ul class="hikashop_category_list ">
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/57-boemboes1">Boemboes (36)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/42-rijst">Rijst (6)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/47-mie-noodles-bamisoep">Mie, Noodles & Bamisoepen (6)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/43-japanse-producten">Japanse producten (6)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/48-conserven">Conserven (11)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/44-ketjap-sojasaus">Ketjap & Sojasaus (21)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/49-kruiden">Kruiden (185)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/51-kroepoek">Kroepoek (13)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/53-dranken">Dranken & Siroop (7)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/54-sauzen">Marinades & Sauzen (98)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/60-sambal">Sambal (22)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/75-diverse">Diverse (35)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/86-soepbenodigdheden">Soepbenodigdheden (7)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/88-bonen-en-peulvruchten">Bonen & Peulvruchten (22)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/89-meel-soorten">Meel Soorten (13)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/91-kokosproducten">Kokosproducten (7)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/92-kleur-smaakstoffen">Kleur & Smaakstoffen (18)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/124-houtskool-briketten">Houtskool & Briketten (7)</a>
            </li>
        </ul>
</div></div><div class="panel"><h3 class="pane-toggler title" id="category_pane_2"><a href="javascript:void(0);"><span><a href="/index.php/hikashop-menu-for-categories-listing/category/45-barbecueproducten">Barbecueproducten (54)</a></span></a></h3><div class="pane-slider content">      <ul class="hikashop_category_list ">
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/125-barbecuesaus">Barbecuesaus (12)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/127-barbecuerubs">Barbecuerubs (3)</a>
            </li>
            <li class="hikashop_category_list_item">
                <a class="hikashop_category_list_item_link" href="/index.php/hikashop-menu-for-categories-listing/category/128-houtskool-en-briketten">Houtskool en Briketten (7)</a>
            </li>
        </ul>
</div></div><div class="panel"><h3 class="pane-toggler title" id="category_pane_4"><a href="javascript:void(0);"><span><a href="/index.php/hikashop-menu-for-categories-listing/category/118-groenten">Groenten (7)</a></span></a></h3><div class="pane-slider content"></div></div><div class="panel"><h3 class="pane-toggler title" id="category_pane_5"><a href="javascript:void(0);"><span><a href="/index.php/hikashop-menu-for-categories-listing/category/135-desem-brood">Desem Brood (3)</a></span></a></h3><div class="pane-slider content"></div></div><div class="panel"><h3 class="pane-toggler title" id="category_pane_6"><a href="javascript:void(0);"><span><a href="/index.php/hikashop-menu-for-categories-listing/category/136-eieren">Eieren (3)</a></span></a></h3><div class="pane-slider content"></div></div></div>    </div>
</div>  </div></div>
</div></div></div>
        </div>
        <!-- //SIDEBAR 1 -->


Is aan de hand hiervan af te leiden waarom de code verdwijnt? Waar moet ik zoeken?

[ Voor 89% gewijzigd door SaN op 27-11-2020 14:21 ]


Acties:
  • 0 Henk 'm!

  • DJMaze
  • Registratie: Juni 2002
  • Niet online
Het menu verdwijnt niet, het is gewoon niet goed aan die categorie pagina gekoppeld.

Helaas kan ik je niet verder helpen. Mijn HikaShop kennis is te oud om een zinniger antwoord te geven. Na jaren update frustraties met het systeem.

Maak je niet druk, dat doet de compressor maar


Acties:
  • 0 Henk 'm!

  • SaN
  • Registratie: September 2002
  • Laatst online: 13:37
DJMaze schreef op vrijdag 27 november 2020 @ 20:07:
Het menu verdwijnt niet, het is gewoon niet goed aan die categorie pagina gekoppeld.

Helaas kan ik je niet verder helpen. Mijn HikaShop kennis is te oud om een zinniger antwoord te geven. Na jaren update frustraties met het systeem.
Toch bedankt. Zou je misschien kunnen proberen uit te leggen wat je met je eerste zin bedoelt zodat ik misschien weet in welke hoek ik het moet zoeken?

Acties:
  • 0 Henk 'm!

  • DJMaze
  • Registratie: Juni 2002
  • Niet online
@SaN begin sowieso met het uitzetten van de cache in je browser.
Hierdoor krijg je altijd de "verse" bestanden vannde server om lokale cache problemen uit te sluiten.
Zet in joomla de debugging aan en analyseer de logs.

Komt daar niks uit, dan moet je er dieper induiken.

Maak je niet druk, dat doet de compressor maar


Acties:
  • 0 Henk 'm!

  • SaN
  • Registratie: September 2002
  • Laatst online: 13:37
DJMaze schreef op zaterdag 28 november 2020 @ 13:05:
@SaN begin sowieso met het uitzetten van de cache in je browser.
Hierdoor krijg je altijd de "verse" bestanden vannde server om lokale cache problemen uit te sluiten.
Zet in joomla de debugging aan en analyseer de logs.

Komt daar niks uit, dan moet je er dieper induiken.
Helaas niks in de error log. Alleen vermeldingen over inlogpogingen. Cache uitzetten in de browser helpt ook niet.

Ik vond ook nog een manier om cache vanuit het configuration.php bestand compleet uit te zetten, voor de zekerheid, maar dat werkt ook niet.

Wat wel apart is, is dat ik het op mijn laptop niet voor elkaar krijg om het menu te laten verdwijnen. Wat zou dit kunnen betekenen?

[ Voor 21% gewijzigd door SaN op 28-11-2020 17:33 ]

Pagina: 1