Jump to content

bao nam

Members
  • Posts

    9
  • Joined

  • Last visited

2 Followers

About bao nam

  • Birthday 10/22/1990

Profile Information

  • Activity
    Developer

Recent Profile Visitors

4,031,739 profile views

bao nam's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Hi Jess Chen. I suggest that you can take a look at our Form builder module: https://addons.prestashop.com/en/contact-forms-surveys/22563-form-builder-contact-form-product-cms-quote-form.html It helps you to create any kind of forms, and put it anywhere on your front page by using shortcode and smarty hook.
  2. My client website has only super admin then he remove all other profile. Now he install new module with custom admin controller => "Access Denied".
  3. Login to Backoffice. Goto : Design > Theme & Logo > Choose Layout > change any layout > Save : it's work. Next. Goto : International > Translations > "translate any module" > Save -----> page layout reset ((( Anyone else with this bug?
  4. You can use this code. themes/[your theme]/templates/cms/stores.tpl . After {foreach $stores as $store} <div id='google-maps-{$store.id}' class="google-maps" data-name="{$store.id}" data-label="{$store.name}" data-description="{$store.address.formatted nofilter}" data-value="{$store.latitude},{$store.longitude}"></div> themes/[your theme]/assets/css/theme.css .google-maps { width: 100%; float: left; min-height: 250px; } themes/[your theme]/assets/js/custom.js function init_gmap() { $('.google-maps').each(function(){ map_description = $(this).data('description'); value = $(this).data('value'); value_latlng = value.split(','); name = $(this).data('name'); label = $(this).data('label'); var myOptions = { zoom: 15, center: new google.maps.LatLng(value_latlng[0],value_latlng[1]), mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById('google-maps-'+name), myOptions); marker = new google.maps.Marker({ map: map, position: new google.maps.LatLng(value_latlng[0],value_latlng[1]) }); infowindow = new google.maps.InfoWindow({ content: "<strong>"+label+"</strong><br/>"+map_description }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map, marker); }); infowindow.open(map, marker); google.maps.event.trigger(map, "resize"); }); } $(window).load(function() { if($('.google-maps').length > 0){ var script = document.createElement("script"); script.src = "https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&callback=init_gmap"; script.type = "text/javascript"; document.getElementsByTagName("head")[0].appendChild(script); } });
  5. Hi. This module allows you to upload GIF image file for product and logo. http://addons.prestashop.com/en/23355-gif-image.html
  6. Hi, I know Prestashop allows a seller can sell module on Prestashop Addon and they can also sell on their own website. But what happened if the module's price on their website is lower than on Prestashop Addon? Example this seller: http://addons.prestashop.com/en/2_community-developer?contributor=2662 They also sell on other markets: http://buy-addons.com/store/ https://codecanyon.net/user/taydosoft/portfolio All module's price on other markets (other websites) are lower than on Prestashop Addons.
  7. You can overide initContent() function in AdminLoginController.php to change template class AdminLoginController extends AdminLoginControllerCore { public function initContent() { $this->override_folder = ''; $this->template= '../../../../modules/[yourmodule]/views/templates/admin/content.tpl'; return parent::initContent(); } }
  8. Hi. stifigno With "Gif image Module", you can: Upload Gif image file for product. Upload Gif image file for logo. You can select to enable Gif image for an image size. Support multi store. Link: http://addons.prestashop.com/en/23355-gif-image.html Thanks.
  9. Hi. PaoloFrunzio i think, "Gif image Module" is what you are looking for. http://addons.prestashop.com/en/23355-gif-image.html What this module does for you: Upload Gif image file for product. Upload Gif image file for logo. You can select to enable Gif image for an image size. Support multi store.
×
×
  • Create New...