-
Content Count
122 -
Joined
-
Last visited
Everything posted by Doulas Akula
-
GD library is not installed - Error fix?
Doulas Akula replied to Ruandl 's topic in Installing PrestaShop for the first time
For Ubuntu: Install gd library based on the php version you are running. I was running php version 5.6 The following commands worked for me: sudo apt-get update sudo apt-get install php5.6-gd sudo service apache2 restart -
How to avoid customers to manual type products per page on URL?
Doulas Akula replied to WebPT 's topic in Core developers
What does your site score on pingdomtools (https://tools.pingdom.com) and on gtmetrix (gtmetrix.com). Check and share the scores or action some of the high priority recommendations -
How to avoid customers to manual type products per page on URL?
Doulas Akula replied to WebPT 's topic in Core developers
Is the main problem the website being slow or you dont want customers to be able to edit url parameters. If the website is slow - there are optimisation measures you could take to make it faster even if users type parameters directly on the address bar. However if you need to change such that the parameters cant be seen on the address bar and therefore uneditable - It might mean changing the way the parameters are passed to prestashops core from get to something like post. - but this if the issue is speed wont be worth the effort -
Adding E-mail Address on Invoice
Doulas Akula replied to andrex84 's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
For PS 1.6 To add an email - edit invoice.tpl in /pdf/ add this line within the template table where you want the email to appear <tr> <td colspan="12"> Email : {$customer_email} </td> </tr> The $customer_email is first initialised within HTMLTemplateInvoice.php file found in classes/pdf/ 'customer_email' => $customer->email, Find the function getContent() and look for this lines $tpls = array( 'customer_email' => $customer->email, 'style_tab' => $this->smarty->fetch($this->getTemplate('invoice.style-tab')), 'addresses_tab' => $this->smarty->fetch($this->getTemplate('invoice.addresses-tab')), 'summary_tab' => $this->smarty->fetch($this->getTemplate('invoice.summary-tab')), 'product_tab' => $this->smarty->fetch($this->getTemplate('invoice.product-tab')), 'tax_tab' => $this->getTaxTabContent(), 'payment_tab' => $this->smarty->fetch($this->getTemplate('invoice.payment-tab')), 'note_tab' => $this->smarty->fetch($this->getTemplate('invoice.note-tab')), 'total_tab' => $this->smarty->fetch($this->getTemplate('invoice.total-tab')), 'shipping_tab' => $this->smarty->fetch($this->getTemplate('invoice.shipping-tab')), ); $this->smarty->assign($tpls); Notice 'customer_email' => $customer->email is the new addition. -
Google Analytics No HTTP response detected
Doulas Akula replied to Ben90 's topic in Configuring and using PrestaShop
Move JavaScript to the end in performance settings worked for me as well. Thanks.- 30 replies
-
- google analytics
- google analytics module
- (and 3 more)
-
Attributes, combination Prices not working! HELP
Doulas Akula replied to shirani 's topic in Configuring and using PrestaShop
You might have made changes you are unaware on on product.tpl file in your default theme. You might try replacing the file with the original one - if the current one has changed. Thank you.- 35 replies
-
- attributes
- combination
-
(and 2 more)
Tagged with:
-
I tested your site on gtmetrix.com for speed and also on seositecheckup tools for organic search visibility. There are improvements you can make both on speed and also SEO. Your site loads in 6.5 seconds average. A good average is 4 or at least not more than 5 seconds. For SEO, your score is 68 - You can work on the recommendations offered by this tool and improve your organic search. When looking for online conversions chances are potential buyers are looking for your products online - if you can show up organically when they search for the product that would boost conversions. Attached are a screen shot of the reports - you can get the complete report by running the test on their site.
-
[solved]My store is slow, please take a look
Doulas Akula replied to cheapweb 's topic in General topics
Same here. Kenya -
Could be not all products have been indexed for search in your Back office
- 5 replies
-
- pagination
- search
-
(and 1 more)
Tagged with:
-
Search results show more products and blank pages
Doulas Akula replied to nicholast10 's topic in General topics
Can you share a link to your store if its hosted online. Also something to check would be the search weights in the back office your search module is using to search for the products. - If your definition of the weights is general - then more products will appear for the search terms. -
In most cases this error occurs when the ps_products table or ps_product_shop table is missing some column(s). To know the exact column you are missing - It would be wise to set development mode to true - then the exact error message that is descriptive will be shown. open config/defines.inc and find this line define('_PS_MODE_DEV_', false); change it to define('_PS_MODE_DEV_', true); This should display the column, table that is missing - which can then be added
-
From experience with a site that had requirements to have as much multi stores as possible as the business grew, the higher the number of multi stores - the higher prestashop requires more virtual memory. So on a shared host, the application becomes slower because with the addition of each shop, new directives are added to the htaccess file - and the server reads the htaccess file for each request made to the server. On virtual memory - some backoffice features fail to update or create new entries and give a fatal error of memory limits. But on a dedicated server - It works fine.
-
I had almost same issue. For me I was getting this error message "PHP Fatal error: Uncaught exception 'ImagickException' with message 'WriteBlob Failed `/home/beaujnkb/public_html/new/cache/tcpdf/" I fixed it by going to tools/tcpdf/ - Here I found a cache directory and changed via cpanel the file permissions from 0775 to 0771 - the same file permissions i.e. 0771 are the default file permissions for the main cache directories i.e. smarty/cache and smarty/compile
-
Order confirmation logo attachment
Doulas Akula replied to redactuk 's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Thanks Vekia I found this helpful. Commenting this bit of code in classes/mail/php worked for me. if (isset($logo)) //$template_vars['{shop_logo}'] = $message->attach(new Swift_Message_EmbeddedFile(new Swift_File($logo), null, ImageManager::getMimeTypeByExtension($logo))); -
Had hetzelfde probleem - wat werkte voor mij was in de admin map / invoer verwijderen van alle voorgaande csv -bestanden. (Had the same issue - what worked for me was deleting all previous csv files in the admin folder / imports.)
-
TCPDF Error Prestashop 1.5.6
Doulas Akula replied to KamranMK 's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
is it online or offline ? If online - Could you share a link please. -
I use mailchimp (http://mailchimp.com/). So far so good.
-
[Free Module] Facebook Connect (Register/Login) for PS1.5
Doulas Akula replied to HA!*!*Y 's topic in Free Modules & Themes
Thanks a lot for sharing. it works !- 165 replies
-
- PS 1.5
- free module
-
(and 2 more)
Tagged with:
-
[solved] Background image for sidebars only
Doulas Akula replied to PrestaToys 's topic in Addons, modules and themes developers
Could you post the url to your site or an attachment of how it looks like ? How big is the image you are using. I guess you will have to add a line or two of css code in global.css file for the repeat x or repeat y attribute depending on the size of the logo in question. -
is your site online.if it is please post the link
-
Thanks Vekia for sharing the link. @ Perfumeskunk - I get what you are talking about. And for a marquee you have done a good job using it there. However the best bet would have been a jquery slideshow. They are quite several and have multiple options for customizations. I once needed a feature similar to these one though for me I needed a slideshow for cross-selling on every product page where a slideshow appears in a continuous loop complete with view links in the event the product has more than three other items associated with it. Here is a sample product page (http://www.mamamikes.co.ke/en/birthday-cakes/32-black-forest-cake.html) So my suggestion would be try jquery plugins - they just might answer your question. I will upload the cross-selling module if you think it could be useful. I did a few modifications from the original one using carouFredSel plugin from thins link (http://caroufredsel.dev7studios.com/) Hope this sheds some light.
