Jump to content

OpenSource Expert

Members
  • Posts

    99
  • Joined

  • Last visited

Profile Information

  • First Name
    Manish
  • Last Name
    Mittal

Recent Profile Visitors

628 profile views

OpenSource Expert's Achievements

Newbie

Newbie (1/14)

7

Reputation

  1. Hello, Contact me through our contact form here: http://www.opensourcetechnologies.com/contactus.html
  2. Hello MMorosanu, Did you get your issue resolved? We would like to assist you. You can contact us for further discussions. Regards Manish
  3. Please share your Site URL. We need to check at our end.
  4. Hello Jacob Are You using any third party module for cart?
  5. Hello Mattias We can assist you and fix the issue. Please contact me through my PM and share your site url, so that we can check the exact issue. Regards Manish
  6. For this, You need to create override of these module and add bxslider to each tpl file. The bxslider is default in prestashop. The slider creates next and previous button for more products.
  7. [sOLVED] Topic If, after posting a topic, you find a solution to your problem, please indicate it in your post and describe the solution. Furthermore if you are the author of the topic for which a solution has been found, please edit your topic title to mark it as [sOLVED]. It's mentioned in Forum rules Best Practices.
  8. In prestashop, feature to change address during checkout has been already given. If you want to make customization, then explain the details.
  9. Please check permission of apache webserver for folder it is restricting to create new folder for image Need to give permission to img folder 755 to apache webserver
  10. Please verify Format JPG, GIF, PNG. Filesize 8.00 MB max. Else, PM your FTP details to me.
  11. Remove the content from __construct() and add in getContent() if ($this->id) { $this->file = 'export_'.Configuration::get('PS_NEWSLETTER_RAND').'.csv'; $this->post_valid = array(); // Getting data... $countries = Country::getCountries($this->context->language->id); // ...formatting array $countries_list = array($this->l('All countries')); foreach ($countries as $country) $countries_list[$country['id_country']] = $country['name']; // And filling fields to show ! $this->fields_export = array( 'COUNTRY' => array( 'title' => $this->l('Customers\' country'), 'desc' => $this->l('Filter customers\' country.'), 'type' => 'select', 'value' => $countries_list, 'value_default' => 0 ), 'SUSCRIBERS' => array( 'title' => $this->l('Newsletter subscribers'), 'desc' => $this->l('Filter newsletter subscribers.'), 'type' => 'select', 'value' => array( 0 => $this->l('All customers'), 2 => $this->l('Subscribers'), 1 => $this->l('Non-subscribers') ), 'value_default' => 2 ), 'OPTIN' => array( 'title' => $this->l('Opted-in subscribers'), 'desc' => $this->l('Filter opted-in subscribers.'), 'type' => 'select', 'value' => array( 0 => $this->l('All customers'), 2 => $this->l('Subscribers'), 1 => $this->l('Non-subscribers') ), 'value_default' => 0 ), ); }
  12. Profiling also takes time to generate report. This is only for development point of view. For speed site please follow the blog http://www.inmotionhosting.com/support/prestashop-16/make-prestashop16-load-faster
  13. You need to modify core theme file product_list.tpl Add all attribute at end of the <div class="button-container"> For example, add {if isset($product.color_list)} <div class="color-list-container">{$product.color_list}</div> {/if} Now color will appear on hover
  14. Please check your product_lang table column(filed) link_rewrite for products that have product-not-found-error. Please share a URl that shows page not found
×
×
  • Create New...