Jump to content

Festuz

Members
  • Posts

    38
  • Joined

  • Last visited

Profile Information

  • Location
    Norway
  • Activity
    Freelancer

Festuz's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Not sure how to configure prestashops SEO module. (http://addons.prestashop.com/en/seo-prestashop-modules/175-seo-search-engine-optimization.html) Not sure what to put into the fields really, I tried and this is the output, not really easy to understand.. Any tips on what I should put into the fields?..
  2. My webshop is really hard to find on search engines. How can I get better indexing? I appreciate all tips and even help. Try googling: AllSupermoto Website: allsupermoto.no
  3. My webshop is really hard to find on search engines. How can I get better indexing? I appreciate all tips and even help. Try googling: AllSupermoto Website: allsupermoto.no
  4. Really interested in this. I have about 5000 categories, all with the same name and description that I would like to either edit (direct them all to one category) or add a product into.
  5. I own a bike-part webshop. About 10.000 bikes have 10 undercategories. All with same name. Example: Clutch parts Chassis parts Now I have some parts that are universal, adding these to all the categories will take a lot of time. Is there any way to expand all categories and automatically tick all the boxes next to the categories with a given name?
  6. Hello, having some problems with facebook open graph tags. When sharing my site it just shows a logo and some text. Wondering how I can make it so when I share a product link, the product image actually shows? My webshop is www.allsupermoto.no, been trying to edit tags with no luck. If anyone could tell me exactly what to do, I'd be grateful. https://developers.facebook.com/tools/debug/og/object?q=allsupermoto.no
  7. I did, and it didn't work. I also disabled all non-prestashop modules, still didn't work.
  8. So weird, as it worked perfectly before I moved all files to a new server. I'm gonna take a look trough my modules and see if I find one that might have changed it. I don't believe I will though. Edit: I found the last module I installed a month ago. A module that changes currency and language depending on location of the customer who enters, it might be that one? Anywho, do you have the frontcontroller.php for 1.5.6?
  9. <?php /* * 2007-2011 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 1.4 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class FrontController extends FrontControllerCore { $product = new Product($_GET['id_product'], false, intval($cookie->id_lang)); if (Validate::isLoadedObject($product)) self::$smarty->assign('product', $product); $images = $product->getImages(intval($cookie->id_lang)); foreach ($images AS $k => $image) if ($image['cover']) { $cover = $image; $cover['id_image'] = intval($product->id).'-'.$cover['id_image']; $cover['id_image_only'] = intval($image['id_image']); } if (!isset($cover)) $cover = array('id_image' => Language::getIsoById($cookie->id_lang).'-default', 'legend' => 'No picture', 'title' => 'No picture'); self::$smarty->assign('cover', $cover); } } ?>
  10. When I disable all non-prestashop modules, the error still appear. Want me to paste in a code? Also, new thread for this error; http://www.prestashop.com/forums/topic/306273-override-error/
  11. Parse error: syntax error, unexpected '$product' (T_VARIABLE), expecting function (T_FUNCTION) in /home/allsuper/public_html/override/classes/FrontController.php on line 31 Got this error after clearing smarty and autoload cache. 10 minutes after moving my PS to a new server. -Disabling overrides in BO fixes this issue. -It might be server configuration and chmod Any suggestions? Check the error here; www.allsupermoto.no
  12. Yeah, problem was that my site wasn´t loading. So I could not regenerate the .htaccess. I ended up editing some lines in my php.ini and SQL configuration and solved it. Now however I met a new error when clearing smarty and autoload cache. Any idea?
×
×
  • Create New...