Questions tagged [oxid]

OXID eShop is a PHP / MySQL Onlineshop Platform created and maintained by the OXID eSales AG. It is available in a free open-source version as well as in commercial licenses.

OXID eShop is an onlineshop platform built by the german company OXID eSales AG. It is written in PHP5 / MySQL and makes use of the smarty template engine. Since OXID version 6 the shopsystem is fully compatible with PHP7.

The community writes and releases modules which extends the core functions of the system.

Resources

47 questions
1
vote
1 answer

OXID starting on localhost/source, I want to start it at localhost

My OXID store starts on localhost with http://localhost/source, but I just want it to start with http://localhost.
1
vote
2 answers

Popover for buttons in a foreach loop PHP

I have a little problem. After some tests and searching work I thought, I ask my questions. I have a
in a for each loop. and for every Button (its a basket button that puts a product in the basket) I reload the page, but before the refresh,…
Jaba
  • 99
  • 1
  • 8
1
vote
1 answer

Composer from local repos InvalidArgumentException

I am trying to create a module based on this example Oxid 6 module https://github.com/linslin/oxid6-example-module I have changed and cloned it to https://github.com/v3ritas1989/gg_oxid6-example-module as well as into my local module…
veritaS
  • 511
  • 1
  • 5
  • 23
1
vote
2 answers

Will a module created for OXID 6.0 be backward compatible with a lower version?

Will a module created for OXID 6.0 be backward compatible with lower versions (i.e.: OXID 5.0) in terms of installation and activation?
Emad Omar
  • 729
  • 9
  • 23
1
vote
4 answers

Can't overwrite smarty block in OXID eShop

I am making new plugin for Oxid E-shop. In my metadata file, description, title, logo, works perfectly and I can see plugin in backend, but when I activate plugin, nothing in frontend is changed. Blocks aren't…
Ivan Vulović
  • 2,147
  • 6
  • 27
  • 43
1
vote
1 answer

OXID turn "More" in categories off to show more categories

I use the Flow template and I need to turn off the "More" in the navigation when there are more categories than space in the navbar. I looked in the main.js and found a function, but when I comment this function out nothing happens. I tried another…
1
vote
1 answer

How to establish connection between OXID shop and ONGR?

We(me and my team) are doing some research, how ONGR and OXID communicate with each other as it is required for our next project. We have already setup Demo app of the ONGR bundles and it is working. However, we don't know which bundle has to be…
1
vote
2 answers

Oxid eshop hooks for shipping method

i am working on Oxid eshop custom module for shipping. i want to Change price for shipping methods on the fly. Is there any way i can get any hooks or method so is can get the interrupt for shipping methods selection? i have also came to know For…
Hadi Naqvi
  • 13
  • 4
1
vote
2 answers

Transparent parent classes to extend base class vs "normal" extension of a base class

I'm new to the Oxid framework, which makes an extensive use of transparent parent classes to extend a base class. I don't see the advantage of this technique. So I'm curious, is this a pattern? Where are the benefits? Cheers, Kathrin Example…
1
vote
1 answer

Using PHP variables with ADODB

I am trying to do a SQL query with ADODB, which is used in the OXID framework. $database = oxDb::getDb(); $sql = 'SELECT oxobjectid FROM oxobject2discount WHERE oxdiscountid = '.$oxdiscountid; $resultado = $database->execute($sql); This will always…
prgrm
  • 3,734
  • 14
  • 40
  • 80
1
vote
1 answer

List of multiple products into php datalayer

I would like to get a nice data layer tracking for my site's marketing pixels in the "order confirmation page" (thank you for you purchase page). The site uses OXID Shop as the ecommerce platform. I would like to have the following setup: IF…
johan855
  • 1,578
  • 4
  • 26
  • 51
1
vote
1 answer

Oxid - Get product categories based on article id

I have an product that is assigned to more than 1 category. I am interested how can i select all the categories that the product is assigned to based on productID. something like get Article Categories (id Article)
Herr Nentu'
  • 1,438
  • 3
  • 18
  • 49
1
vote
1 answer

Is it possible to work in Chrome developer tools with less files?

Working on the mobile theme for Oxid eshop. I‘m having difficulties to set up a grunt configuration to compile the less files together with a sourcemap, so that I could work with Chrome developer tools. I have latest versions of grunt and npm…
Hanna
  • 23
  • 6
0
votes
1 answer

Oxidshop - Get a product url

I am working on Oxidshop tpl files and want to know how can I get a url for a particular product so that I can create an anchor tag linking to the product in a tpl file?
SanketR
  • 1,182
  • 14
  • 35
0
votes
1 answer

Subselect in Update Statment with where

How can I make this PHP script in a one Single SQL statement? $sql = 'SELECT oxtprice from oxarticles where oxparentid = ? and nrseriesarticle = 1'; $price = DatabaseProvider::getDb()->getOne($sql, [$id]); if ($price) { …
Anas Sadek
  • 37
  • 5
1
2 3 4