-
Posts
1,104 -
Joined
-
Last visited
-
Days Won
32
Everything posted by Prestachamps
-
hi, would you mind mark the topic a solved? If you don't know how to do it, here is the explanation: To mark a topic as [solved] : - Edit the first post of your topic by clicking on the "Edit" button, - Click on the "Use full editor" button, - Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button. Regards, Leo
-
[Solved] How can I set target blank for top banner?
Prestachamps replied to NixxxoN's topic in General topics
hi, would you mind mark the topic a solved? If you don't know how to do it, here is the explanation: To mark a topic as [solved] : - Edit the first post of your topic by clicking on the "Edit" button, - Click on the "Use full editor" button, - Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button. Regards, Leo -
hi, would you mind mark the topic a solved? If you don't know how to do it, here is the explanation: To mark a topic as [solved] : - Edit the first post of your topic by clicking on the "Edit" button, - Click on the "Use full editor" button, - Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button. Regards, Leo
-
hi In this case, i see 3 Google fonts loaded, which are in fact 2 distinct fonts, because the Lato font is loaded twice. After some small digging, the ...all.css and the ...screen.css is using @import url('//fonts.googleapis.com/css?family=Lato') , wich in fact block rendering. This font should be taken out from those two CSS files, and the 3rd one, Open Sans, together with Lato should be loaded using the JavaScript $(document).ready approach, so it would be loaded after the page has been loaded. On this site, there are 2 other CSS files that blocks rendering, they are files of the module video_gallery, that module should be modified to include CSS using $this->context->controller->addCSS(...) in the module's hookHeader function. Regards, Leo
-
responsive page in firefox, internet explorer, chrome and mobile
Prestachamps replied to edogatica's topic in General topics
Hi, Provide us the url of your cms page and I will help you with the correct responsive css code for the other browsers too. Regards, Leo- 1 reply
-
- responsive
- chrome
-
(and 3 more)
Tagged with:
-
Hi, you have to edit the file: /themes/default-bootstrap/css/global.css add at the end of it this line : header { padding-bottom: 0px!important; } this will lower the distance in every page between the menu and content from 15px to 0; if you want this distance to be applied only to index page then this line should be: BODY#index header { padding-bottom: 0px!important; } another distance you can lower is the editorial block's H1 title's topmargin for this, add another line in the global.css: #editorial_block_center>.rte>h1{ margin-top:0px!important } Don't forget to clear cache of prestashop : backoffice->advanced parameter->performance : clear cache Regards, Leo
-
E-mail sablonok javíthatatlanul elromlanak
Prestachamps replied to ujlaki's topic in Magyar [Hungarian]
Hello, Az tortenik hogy bizonyos esetekben az email sablonok lementesekor az emailben levo mindegyik " karakter helyett a fileba kimentodik ez: \" . Ennek megelozese az hogy ne az admin-bol probald modositani az email sablonokat, hanem csakis kizarolagosan ftp-rol masold le a filokat, modositsd, majd masold fel oket vissza a helyukre. (vagy ezeket ki lehet javitani ha kitorlot a " elotti \ karaktereket - ha tobbszor probaltad lementeni a sablont, meglehet hogy tobb \ karakter is van elottuk, pl: \\\\\\" ) Udv, Leo -
[Solved] Delete Subcategories Images
Prestachamps replied to patricia.rd.93's topic in Configuring and using PrestaShop
Hi, with any ftp client or file-manager from Cpanel just open the following file: /themes/default-bootstrap/css/category.css and add at the end of that file the following line: .content_scene_cat .content_scene_cat_bg { display: none; } This will hide the category's main image at the top of the content in every category page. Regards, Leo -
Hi, this type of tracking codes should be added in your theme's header.tpl file, before the line </head>. the code should be pasted between {literal} and {/literal} the code should be added this way: {literal} <script> //here comes the code </script> {/literal} Regards, Leo
-
Hi, as Heroes usually know, the google font can be and should be loaded using the JavaScript approach, that way the page is rendered faster and the page loadtime is reduced, since the fonts are loaded at the end of the page, after all html is loaded and displayed for the user. By loading asynchronously the fonts, you will not be penalized by google pagespeed for loading blocking resources, since loading the extra fonts should not block the rendering of the page for users. regards, Leo
-
[Solved] How can I set target blank for top banner?
Prestachamps replied to NixxxoN's topic in General topics
Hi, you have to modify in the file : /modules/blockbanner/blockbanner.tpl (if the file doesn't exists in the folder: /themes/default-bootstrap/modules/blockbanner/blockbanner.tpl) change the first line from : <a href="{if $banner_link}{$banner_link|escape:'htmlall':'UTF-8'}{else}{if isset($force_ssl) && $force_ssl}{$base_dir_ssl}{else}{$base_dir}{/if}{/if}" title="{$banner_desc|escape:'htmlall':'UTF-8'}"> to: <a target="_blank" href="{if $banner_link}{$banner_link|escape:'htmlall':'UTF-8'}{else}{if isset($force_ssl) && $force_ssl}{$base_dir_ssl}{else}{$base_dir}{/if}{/if}" title="{$banner_desc|escape:'htmlall':'UTF-8'}"> (add the red highllighted code to the <a > tag) If the change is not visible, then you have to clear cache from BackOffice: Advanced Parameters -> Performance. On this page pay attention to the option: Template compilation , it should be set to "Recompile templates if the files have been updated". Regards, Leo -
Back Office - After Successful Login Only Shows Statistics
Prestachamps replied to dominiquenur's topic in General topics
Hi, For me it looks like your backoffice has no css,this could come from multiple issues. You can try to upload the admin folder from the prestashop install zip(according to your prestashop version) and rename the folder to admin1, then try to login on that /admin1/ backoffice. If this still not fixes your issue, you maybe have a cache problem:you can clear cache manually by deleting folder content for /cache/smarty/compile and /cache/smarty/cache/, leaving only index.php file in those folders. You can verify if you have some errors in the browser's developer console (F12, then check the console tab, after refreshing the page). If you have installed or enabled any module lately before this problem appeared in the backoffice, then you can try to disable those modules one by one, by renaming those folders in the /modules/ folder. If you still not fixed your shop following these methods, PM me and I will help you out. Regards, Leo.- 1 reply
-
- 1
-
Would you mind sending me in PM the source of the file home/public_html/modules/cash/cash.php and the exact version of your prestashop, and I can reply to you with the exact modification that will fix the function call. Regards, Leo.
-
Cart Block is broken after moving to different positions
Prestachamps replied to gabberlt's topic in General topics
Hi, Did you unhooked the blockcart from header hook? It seems for me that the css of the module is not added to the page. Would you mind sending me your url in PM so I can check what exactly is the problem and advice you with the fix/solution . Regards, Leo -
Hi, Did you take a look at the CMS block module? You will find a list of your cms pages there and you only need to check the box. You can also add a custom link in the "footer information" field. Or, That's the PTS gentshop theme you are using. If it's easier for you and want to make more changes to that column , you can just create a new block for your links in PTS Static content manager, and use whatever you want there. Kind regards
-
Transformare Combinatii Produse In Produse Individuale
Prestachamps replied to bluestyle's topic in Discuţii generale
Buna Iti recomand pentru solutie urmatorul modul : http://addons.prestashop.com/en/20451-products-by-attributes.html Cu Stima. Leo -
Hi Nikos Actually at a closer look, something that could make a significant change especially on Mobile, would be the CSS combined in a single one. At a closer look you have like 6 CSS http://dromeasbikes.com/…720ab318ae55349a3648dea3eb04522e_all.css http://fonts.googleapis.com/css?family=Lato http://dromeasbikes.com/…2860780aae8e70a84fcb5186243a2_screen.css http://fonts.googleapis.com/css?family=Lato http://dromeasbikes.com/…ules/video_gallery/css/style_fe.css?id=2 http://dromeasbikes.com/…_gallery/gallery/css/jqvideobox.css?id=2 http://fonts.googleapis.com/…,600&subset=latin,latin-ext,cyrillic-ext 90% of these are font which can be included inside the global.js. Usually this shows a low quality in the theme. My point is that adding them into the Js, and having a single CSS at the end it's worth investing those 30 minutes. LEo
-
Hi, Go to go to modules and reset the mailalerts module, this will fix your database table structure for the ps_mailalert_customer_oos table. After that you will not have this issue. If this will not fix your issue, then the problem is in the Cash module . Your Catchable fatal error from the Cash module can be fixed easily, I can help you with that after you have solved the "Fatal error: Uncaught Unknown column" error. Regards, Leo
-
Hi, please send me your shop's url in PM, and I will write you back the css code that will correct the button's center alignment. Regards, Leo
-
Hi, try to adjust: <!-- center infos --> <div class="pb-center-column col-xs-12 col-sm-4"> to col-sm-3 ( instead of col-sm-4 as it is now) <div class="pb-center-column col-xs-12 col-sm-3"> The title, reference and so on will snap to the right of the image. Is that what you need? Kind regards
-
Changing the indexed url of index/home page
Prestachamps replied to misterc's topic in General topics
Hi, I took a look at you website, searching for a part of your page title " huge range of faux fur " and your page title does appear in the google listings as: Faux Fur Throws | Huge range of Faux Fur Throw Designs ... ( I would suggest to rewrite it to be under 60 characters, or even better, to use a Google serp snipet tool to see how it would look in the search results ( since the title display space is measured in pixels and not actually characters)) . If you are searching in google for the site url or name/brad only, google might "customize" the result according to the search, ignoring your title tag. That's why if you are searching for: faux-fur-throws.com - the result will be : Faux Fur Throws - the shop name. I suggest to make some searches for other keywords your site's index ranks and see what results you get. Kind regards -
Hi, in order for the box to not be visible, add this line at the end of your css file /themes/default-bootstrap/css/product.css line to add : BODY#product #buy_block .box-info-product{ display:none; } If the change will not be visible, please clear cache from the performance page in backffice. Regards, Leo
-
Add Greek language and more currencies
Prestachamps replied to Fivos92's topic in Taxes, Translations & Laws
Hello Fivos, Once PrestaShop is installed, in the Localization section of the admin panel you have the option of importing localization packs for most languages, including Greek. This will import translations for almost all functions, buttons and the like. After this, if you find any strings that still shows up in English, you can easily translate them manually in Localization -> Translations. Under Localization you also have "Currencies" and here you can add / activate different currencies. PrestaShop also comes with two installed and activated modules: Language Block and Currency Block, these allow visitors to your online store to choose the language and currency they want. With most themes, these are visible on the top of the page and will show all languages / currencies that are active. -
Can Not Load Youtube Video When Enable Ssl On All Pages
Prestachamps replied to tapukatata's topic in 1.6.1.x [Current]
Hi, Could you please provide a link for a product that has a link in the description. Thanks