Jump to content

FlowMVMT

Members
  • Posts

    20
  • Joined

  • Last visited

Profile Information

  • First Name
    Raymond
  • Last Name
    Stone

FlowMVMT's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Sorry for what seems to be an easy questions - how do you remove the [STORENAME] from the beginning of the subject on confirmation emails. I can't seem to find the setting.
  2. Anyone have any pointers on setting up a quick, easy and effective checkout? 5 Pages is excessive, and the single page checkout is confusing...so what do you do?
  3. Did you ever figure out what the issue is? My site is doing this as well.
  4. My pages not found report is giving me " /lteIE9 " coming from most category and the home page. I've dug through all the code and can find no reference to it anywhere in my theme files, I've also searched for IE9 conditionals (which is what I thought it was) with no luck. Any ideas? example page: www.raveready.com/104-costumes
  5. I'd love a little input, we swapped a well converting website from Volusion to Prestashop on Black Friday. I'm totally new to PS and am constantly looking to improve this site through this forums. TBH Sales have been down since we switched but I think a lot of that is par for the course when making such a big swap, only time will tell. So any problems, suggestions, or changes you can point out would be greatly appreciated! www.RaveReady.com
  6. 99% of my live chat is "will this fit?" (size charts are available) and "where is my order?" (can give them access to see order information). Every major utility service uses overseas live chat agents and they have no issue completing tasks so I have no doubt they could handle general product questions and order updates.
  7. Does anyone currently outsource live chat for their ecommerce (not lead generation) site and have a recommendation for an individual or company that I could use?
  8. rocky, I'm sorry to bother you I've been testing this for over a week and haven't gotten it to function properly. Mind taking a look at what I have? Also - do you do custom work outside of your existing modules - I would love to have someone like you who is available for small contract work when I run into issues or need larger code changes...I've been on Volusion for ten years so this is taking a bit to get used to. {if $fieldbrandslider.manufacturers} <div id="fieldbrandslider" class="block horizontal_mode title_center"> <div class="container"> <div class="field-brand"> {if ($fieldbrandslider.mainTitle != '')} <h4 class="title_block title_font"><a href="{$link->getPageLink('manufacturer')|escape:'html'}"><span class="title_text">{$fieldbrandslider.mainTitle}</span></a></h4> {/if} <div class="row"> <div id="fieldbrandslider-manufacturers" class="grid carousel-grid owl-carousel"> {foreach $fieldbrandslider.manufacturers as $manufacturer} <div class="item"> <a class="img-wrapper" href="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$manufacturer.name|escape:'htmlall':'UTF-8'}"> <img class="img-responsive" src="{$img_manu_dir}{$manufacturer.id_manufacturer|escape:'htmlall':'UTF-8'}-m_scene_default.jpg" width="{$manufactureSize.width}" height="{$manufactureSize.height}" alt="{$manufacturer.name|escape:'htmlall':'UTF-8'}" /> {if isset($fieldbrandslider.mantitle) AND $fieldbrandslider.mantitle == 1}<br/> <p>{$manufacturer.name|escape:'htmlall':'UTF-8'}</p> {/if} </a> </div> {/foreach} </div> </div> </div> </div> </div> {if ($fieldbrandslider.maxitem)}{addJsDef fieldbs_maxitem=$fieldbrandslider.maxitem}{else}{addJsDef fieldbs_maxitem=6}{/if} {if ($fieldbrandslider.minitem)}{addJsDef fieldbs_minitem=$fieldbrandslider.minitem}{else}{addJsDef fieldbs_minitem=2}{/if} {if ($fieldbrandslider.autoScroll)}{addJsDef fieldbs_autoscroll=$fieldbrandslider.autoScrollDelay}{else}{addJsDef fieldbs_autoscroll=false}{/if} {if ($fieldbrandslider.pauseOnHover)}{addJsDef fieldbs_pauseonhover=true}{else}{addJsDef fieldbs_pauseonhover=false}{/if} {if ($fieldbrandslider.pagination)}{addJsDef fieldbs_pagination=true}{else}{addJsDef fieldbs_pagination=false}{/if} {if ($fieldbrandslider.navigation)}{addJsDef fieldbs_navigation=true}{else}{addJsDef fieldbs_navigation=false}{/if} {/if}
  9. Hello! I am new with Prestashop and SQL so I'm reaching out for a little assistance. I've migrated from another platform to a multistore setup and one of the modules I am using is displaying a brand image twice in the slider. From what I understand I need to adjust the TPL to tell it to only pull manufacturers that are assigned to the store ID that is live. I've included the code as well as an image of what the problem is. Any help would be greatly appreciated! I've been building for the last month or so and this is one of my final issues to resolve Thanks! {if $fieldbrandslider.manufacturers} <div id="fieldbrandslider" class="block horizontal_mode title_center"> <div class="container"> <div class="field-brand"> {if ($fieldbrandslider.mainTitle != '')} <h4 class="title_block title_font"><a href="{$link->getPageLink('manufacturer')|escape:'html'}"><span class="title_text">{$fieldbrandslider.mainTitle}</span></a></h4> {/if} <div class="row"> <div id="fieldbrandslider-manufacturers" class="grid carousel-grid owl-carousel"> {foreach $fieldbrandslider.manufacturers as $manufacturer} <div class="item"> <a class="img-wrapper" href="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$manufacturer.name|escape:'htmlall':'UTF-8'}"> <img class="img-responsive" src="{$img_manu_dir}{$manufacturer.id_manufacturer|escape:'htmlall':'UTF-8'}-m_scene_default.jpg" width="{$manufactureSize.width}" height="{$manufactureSize.height}" alt="{$manufacturer.name|escape:'htmlall':'UTF-8'}" /> {if isset($fieldbrandslider.mantitle) AND $fieldbrandslider.mantitle == 1}<br/> <p>{$manufacturer.name|escape:'htmlall':'UTF-8'}</p> {/if} </a> </div> {/foreach} </div> </div> </div> </div> </div> {if ($fieldbrandslider.maxitem)}{addJsDef fieldbs_maxitem=$fieldbrandslider.maxitem}{else}{addJsDef fieldbs_maxitem=6}{/if} {if ($fieldbrandslider.minitem)}{addJsDef fieldbs_minitem=$fieldbrandslider.minitem}{else}{addJsDef fieldbs_minitem=2}{/if} {if ($fieldbrandslider.autoScroll)}{addJsDef fieldbs_autoscroll=$fieldbrandslider.autoScrollDelay}{else}{addJsDef fieldbs_autoscroll=false}{/if} {if ($fieldbrandslider.pauseOnHover)}{addJsDef fieldbs_pauseonhover=true}{else}{addJsDef fieldbs_pauseonhover=false}{/if} {if ($fieldbrandslider.pagination)}{addJsDef fieldbs_pagination=true}{else}{addJsDef fieldbs_pagination=false}{/if} {if ($fieldbrandslider.navigation)}{addJsDef fieldbs_navigation=true}{else}{addJsDef fieldbs_navigation=false}{/if} {/if}
  10. I'm using Cart2Cart to migrate products from my old Volusion store to a new Prestashop 1.6.1.7 multistore. I did a trial run and it uploaded all of the products perfectly, BUT they only show up for store ID 1. When I go into the product and set my shop to store ID 2 it give me the error "Warning: The product does not exist in this shop" Any ideas?
  11. Thank you for walking me through that. It all worked perfectly. I'm fairly new with SQL so without your help I would have broken the DB more than once. Now apparently my brands slider is throwing out duplicates so I will have to dig into that and figure that one out. Almost there..... Thank you again!
  12. I got very excited with such a small bug and easy fix....but just fixing the line doesn't appear to work. I get an error message when I try to add/edit and of the manufacturers after correcting the code. An error occurred while creating an object. manufacturer ()
  13. I'm sorry, I'm not understanding you. It's a single-selection dropdown menu. Is there another section where I can select a "default?"
  14. Can you tell me how? BO > Product > Associations = the manufacturer field is a drop down, single select menu. Thank you!
×
×
  • Create New...