Coder Social home page Coder Social logo

displayproductmanufacturer's Introduction

Hi, I'm Matt ๐Ÿ‘‹

Iโ€™m currently a developer of Payment Squad at PrestaShop.

Main projects ๐Ÿค“

  • PrestaShop Checkout, the PrestaShop official payment module in partnership with PayPal as Main Developer (Module part, since 1.2.8)
  • PrestaShop Worldline, the PrestaShop module that's provide Worldline Sips Paypage integration. as Main Developer (Module part, since 4.0.0)

Side projetcs ๐Ÿค 

  • PrestaShop, the PHP e-commerce solution as Contributor Developer (since 1.6.1.17)
  • PrestaShop Docs, the developer documentation as Contributor Developer (Payment section WIP)
  • PrestaShop Cart Banner, the module to display a customized banner in cart page thanks to PrestaShop configuration as Contributor Developer and reviewer (since 1.0.0)
  • PrestaShop Favicon BO, the module to be notified of each new order, client or message directly in the browser tab of your back office as Contributor Developer (since 2.0.0)
  • PrestaShop BlockWishList, the module that add a block with the customer wishlists as Contributor Developer and reviewer (since 2.0.0)
  • PrestaShop GDPR, the module that help to be GDPR compliant as Contributor Developer and reviewer (since 1.1.0)
  • PrestaShop MBO, the PrestaShop Marketplace in your Back Office as Contributor Developer (Module part, since 2.0.0)
  • PrestaShop Cash on delivery, the payment module that you can use to add an offline payment option to get paid at delivery as Contributor Developer
  • PrestaShop PaymentExemple, the payment module example, that you can use as a guide to start your own as Contributor Developer

Personal projects ๐Ÿ˜Ž

How to reach me ๐Ÿ“ซ

Join me at PrestaShop ๐Ÿ‘

PrestaShop is hiring developers, on WeLoveDevs

PrestaShop is hiring peoples, on WelcomeToTheJungle

displayproductmanufacturer's People

Contributors

matt75 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

displayproductmanufacturer's Issues

Exporting to csv

Describe the bug
Hello,
Im just trying to export to csv the products filtered by manufacturer, but the website just loading until time out.

To Reproduce
Just filter by manufacturer and go to export to csv

Additionnal information
I was looking how prestashop export the products.
It works with symphony too,
The function to export just need an array of products.
By default i cant see where prestashop assign that array...

I'll keep trying to solve it, but if you can see where is the bug before me, better for all.
Have a nice day.

Prestashop v8.x

I tried to use your module example with prestashop 8.1.1 , but it's not working.
Can you please help me to make it working.

the ModuleAdminController Has changed in the 1.7.8.8 version

abstract class ModuleAdminControllerCore extends AdminController
{
/** @var Module */
public $module;

/**
 * @throws PrestaShopException
 */
public function __construct()
{
    parent::__construct();

    $this->controller_type = 'moduleadmin';

    $tab = new Tab($this->id);
    if (!$tab->module) {
        throw new PrestaShopException('Admin tab ' . get_class($this) . ' is not a module tab');
    }

    $this->module = Module::getInstanceByName($tab->module);
    if (!$this->module->id) {
        throw new PrestaShopException("Module {$tab->module} not found");
    }
}

/**
 * Creates a template object.
 *
 * @param string $tpl_name Template filename
 *
 * @return Smarty_Internal_Template
 */
public function createTemplate($tpl_name)
{
    if ($this->viewAccess()) {
        foreach ($this->getTemplateLookupPaths() as $path) {
            if (file_exists($path . $tpl_name)) {
                return $this->context->smarty->createTemplate($path . $tpl_name);
            }
        }
    }

    return parent::createTemplate($tpl_name);
}

/**
 * Get path to back office templates for the module.
 *
 * @return string
 */
public function getTemplatePath()
{
    return _PS_MODULE_DIR_ . $this->module->name . '/views/templates/admin/';
}

/**
 * @return string[]
 */
protected function getTemplateLookupPaths()
{
    $templatePath = $this->getTemplatePath();

    return [
        _PS_THEME_DIR_ . 'modules/' . $this->module->name . '/views/templates/admin/',
        $templatePath . $this->override_folder,
        $templatePath,
    ];
}

}

Issue while uploading the module

I have tried to upload this module in prestashop but it gives error "Try Again Failed Upload".
I have also run the command composer update and tries to install it from modules folder than also it doesn't work.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.