Hallo Daniela, kannst du mir mal per Ticket den Link zukommen lassen? Ich schaue mir das Problem dann genauer an... MfG, Timo
Dann weiß das wohl nicht jeder bei denen, da hieß es letzte Woche noch bekäme man von Gambio Marco schickst es mir bitte einfach mal. danke.
Für ein Echtzeit-"Who is Online" habe ich mal die Erkennung des mobilen Geräts von "MobileCandy" etwas "aufgebohrt", um Informationen über das verwendete mobile Gerät zu bekommen... Ist ganz interessant zu sehen, womit die Besucher so unterwegs sind... Frage an Gambio: werden die im "MobileDetect" enthaltenen Geräteinformationen eigentlich weiter gepflegt? Da kommen ja dauernd neue Geräte hinzu, die erkannt werden müssen...
Hallo, wir bekommen nach der Installation eine weiße Seite, wenn man den Shop mit dem Smartphone (oder Firefox mit ClientSwitcher) öffnet. Die Debug Konsole von Firefox sagt mir: TypeError: $.page_navi is not a function
Die Frage ist wo steht das .page_navi Hab ich ja nicht eingetragen. EDIT: Hab gefunden wo es steht. Sieht aber nicht so aus als müsse da was anderes hin. general.hs.php Zeile 57
Hallo Andy, mach bitte ein Ticket auf, damit der Support sich das Problem anschauen kann. So bekommst du auf jedenfall Hilfe. Sollte das Problem im Support nicht behoben werden, leiten die es automatisch an mich weiter... MfG, Timo
Also sehe ich das richtig das diese Mobil Candy komplett kostenlos ist ? Oder komme ich um die 69 euro instalation nicht rum ?
Naja, du hast das schon richtig erkannt! Das Teil ist kostenlos aber für die Install nimmst du ja einen Service in anspruch und der kostet 69,-€
In "mobile_configuration.php" wird die Graphik "admin/images/icon_cross_red.png" verwendet. Diese ist aber weder in der Vollversion "Gambio GX2 v2.0.14.4" noch in "GX2_MobileCandy_1-0-4" enthalten.
In "checkout_payment" werden die AGBn unformatiert dargestellt (ohne HTML-TAGs) Grund ist, dass die in der "checkout_payment.php" mit "strip_tags" in eine "textarea" gepackt werden. Lösung: PHP: if ($shop_content_data['content_file'] != '') { $conditions = '<iframe SRC="' . GM_HTTP_SERVER . DIR_WS_CATALOG . 'media/content/' . $shop_content_data['content_file'] . '" width="100%" height="300">'; $conditions .= '</iframe>'; $smarty->assign('AGB_IFRAME', 1); $smarty->assign('AGB_IFRAME_URL', GM_HTTP_SERVER . DIR_WS_CATALOG . 'media/content/' . $shop_content_data['content_file']); } else { // BOF GM_MOD: $conditions = '<textarea class="agb_textarea" name="conditions_text" readonly="readonly">' . trim(strip_tags($shop_content_data['content_text'])) . '</textarea>'; $t_conditions_array = array(); $t_conditions_array = array('CLASS' => 'agb_textarea', 'NAME' => 'conditions_text', 'TEXT' => strip_tags($shop_content_data['content_text'])); $smarty->assign('conditions_data', $t_conditions_array); } ersetzen mit PHP: if ($shop_content_data['content_file'] != '') { $conditions = '<iframe SRC="' . GM_HTTP_SERVER . DIR_WS_CATALOG . 'media/content/' . $shop_content_data['content_file'] . '" width="100%" height="300">'; $conditions .= '</iframe>'; $smarty->assign('AGB_IFRAME', 1); $smarty->assign('AGB_IFRAME_URL', GM_HTTP_SERVER . DIR_WS_CATALOG . 'media/content/' . $shop_content_data['content_file']); } else { // BOF GM_MOD: $conditions=$shop_content_data['content_text']; if (MOBILE_ACTIVE<>'true') { $conditions=trim(strip_tags($conditions)); $conditions = '<textarea class="agb_textarea" name="conditions_text" readonly="readonly">' . $conditions . '</textarea>'; } $t_conditions_array = array(); $t_conditions_array = array('CLASS' => 'agb_textarea', 'NAME' => 'conditions_text', 'TEXT' => $conditions); $smarty->assign('conditions_data', $t_conditions_array); }
Gibt es noch keine "Wishlist" im akteullen Template? Es ist zwar eine "wish_list.html" vorhanden, aber auf der Detailseite gibt es keine Möglichkeit, etwas dorthin zu legen....
Mir ist folgendes aufgefallen: die "content-manager" Links sind nur dann richtig, wenn die "content-manager"-Einträge eine "content_group" und ein "content_heading" zugewiesen haben. Sonst gibt es merkwürdige Links. Leere "content_heading" kann man mit folgendem SQL befüllen: PHP: UPDATE `content_manager` SET `content_heading`=`content_title` WHERE `content_heading`=''