Jump to content

SergeiG

Member
  • Posts

    60
  • Joined

  • Last visited

Everything posted by SergeiG

  1. Hello! I use "All In One Shipping" 1.0.8 and I found that it is possible to make an order without choosing a shipping method. I will really appreciate if somebody helps me to fix it. Thank you.
  2. Hello! Is there any ready/semi-ready solutions to collect and show customers feedbacks about store? From my perspective, it may look same as the product review solution. Thank you.
  3. Hello! Big thank you for the advice about debugging mode. It didn't help, but will be useful in future. I found the reason of this issue - during changes in additional language file I loose 'email_ru_RU.xml' file, as the result, when a customer (who uses this language) made an order, the engine couldn't create an email. It's absolutely my fault, however a situation, when one or several language files aren't exist, requires two solutions: 1) Error message in log-file 2) An attempt to send an e-mail by usage a default (english) language.
  4. Hello! Today I found that customers don't receive any emails about their orders, I also don't receive any confirmations about new orders. I don't have any clue where this issue can be. 1) During making a test order I didn't receive any errors on a front-end side. 2) 'E-mail' log doesn't show that any e-mails were send. (!!!) 3) 'Error log' is clear for ''admin" and "system" tabs 4) Test e-mail from "Store settings/Advanced" are sent and came to me without any issues. Last changes which I made before this issue happen: - #1630 was deployed - 'Sender's Email Address' was changed in "Store settings/Advanced". I replace modified order.class.php by original version from 6.1.5 pack, clear cache at the back-end. It doesn't help. Additons: When I change status to "Processing" - nothing happen. If after that I change a status back to "Pending" then "New order" e-mail goes to an admin, but "Order confirmation" e-mail isn't send to a customer.
  5. Hello! As I know, this issue haven't been solved yet. From my perspective, it takes time because only small number of users meet this issue and it difficult to developers reproduce in their environments.
  6. Thank you for advice, I almost complete this way of realization my idea. However, there is one huge difference between these two lists which I wanted to use - the feature list isn't stable, it changes randomly.
  7. Hello! I would really appreciate if somebody explains me how to show 'featured' products on the main page instead of 'latest' products. Thank you
  8. I did... Failed :-( Let see how 6.1.8 will work with email subscriptions
  9. Thank you. This setting controls sending an email to admin, but not to a customer. Due to numbers of vanishing goods in a initial confirmation emails I want to change a process logic by following way: 1. A customer lefts an order and receives a message on a screen, that the order is accepted and the customer will receive after additional checks 2. Stock updated, an admin receives an email about new order 3. An admin changes status from Pending to Processing and after that a customer receives a confirmation email.
  10. @bsandall, @Dirty Butter, @bsmither I would extremely appreciate if you help me to finish this integration. I investigated the commit 985a842 to the story #1449 (https://github.com/cubecart/v6/commit/985a842f57c852970b8fb55e1527b20cf64a9a5f) and did changes in next files: cubecart.css - add lines according to the commit; 2.cubecart.js - add lines according to the commit; content.product.php - I took the version from this commit, but just removed all '-' signs. All files are attached. As a result, I have a vertical gallery, however it works a little bit incorrectly - when I open a product page at the first time I don't see the main image, it appears when I reload page (by pressing F5). Screenshots are attached 2.cubecart.js content.product.php cubecart.css
  11. Hello! I will appreciate if somebody tells me in general how to find all actions which are caused by order status changing. Actually, I would like to disable sending auto emails with order confirmations (while order status is "pending") and send emails only when status changes on "Processing". Thank you.
  12. As I see, the engine update stock only if order's status changes to the specified in settings. And actually, it happens only one time for an order. Am I right?
  13. Right now it's set to "Pending". And I did manual changes while an order had a pending status (step 2).
  14. Right now I repeat next steps: Download CubeCart 6.1.7, install it (without mistakes) on clean environment, open home page, input e-mail into "Mailing List", press Subscribe. The result - a screen scroll up, no information/error messages, no e-mail in the mailing list on admin side. mailing_list_test.mp4
  15. May you write me a name of the MailChimp plugin, which you use? Or is it your own solution?
  16. Thank you for advice. Unfortunately, this issue wasn't fixed, it was closed as unpronounceable.
  17. Unfortunately, a frontend feature of adding users to mailing list stopped to work after upgrade on the 6.1.7 version, so I returned to 6.1.5. If the mailing list feature will work in 6.1.8 version I immediately made an upgrade. May you write names of JS and CSS files which are connected with the gallery feature?
  18. I checked in 6.1.5. Here is the result. Precondition inventory: Item 1 - 10 pcs. / Item 2 - 10 pcs. Step 1. Online order for Item 1 - 1 pcs. Result inventory: Item 1 - 9 pcs. / Item 2 - 10 pcs. Order Status - Pending Step 2. Manual changing in the backend. Change q-ty of Item 1 from 1 pcs to 2 pcs. Add Item 2 - 1 pcs. Press Save button Item 1 - 9 pcs. / Item 2 - 10 pcs. Order Status - Pending Step 3. Change status from Pending to Processing. Item 1 - 9 pcs. / Item 2 - 10 pcs. Order Status - Processing Step 4. Change status from Processing to Complete. Item 1 - 9 pcs. / Item 2 - 10 pcs. Order Status - Complete
  19. In the version 6.1.5 there is not this line, at least in my version of the content.product.php I have this code: <div class="small-5 medium-7 columns"> <a href="#" class="open-clearing" data-thumb-index="0"><img src="{$PRODUCT.medium}" alt="{$PRODUCT.name}" id="img-preview"></a> {if $GALLERY} <ul class="clearing-thumbs small-block-grid-3 medium-block-grid-5 marg-top" data-clearing> {foreach from=$GALLERY item=image} <li{if $image@total lt 2} style="display:none"{/if}><a href="{$image.source}" class="th"><img src="{$image.small}" data-image-swap="{$image.medium}" data-caption="{$PRODUCT.name}{if !empty($image.description)}: {/if}{$image.description}" class="image-gallery" alt="{$LANG.catalogue.click_enlarge}"></a></li> {/foreach} </ul> {/if} </div>
  20. Hello! I'm trying to add a vertical gallery, which was presented in 6.1.7, to a site worked on 6.1.5. I triyed to copy a piece of code from element.product.vertical_gallery.php (lines 13-27) to content.product.php . The result is blank page. As I understand, some classes (or may be more) are defined and described in other files of 6.1.7 release, however my knowledge of the CubeCart engine isn't enough to understand all interactions. Could somebody be so kind to help me with this task?
  21. All scenarios: 1) Original file version: Desktop - More Mobile - More 2) Unhided traditional pagination/ No add "hide-for-small-up" to the class attribute Desktop - Pages numbers and More Mobile - More 3) Unhided traditional pagination/ Add "hide-for-small-up" to the class attribute (I checked two classes - "hide-for-small-up" and "hide hide-for-small-up". Same results) Desktop - Pages numbers and More Mobile - More 4) Unhided traditional pagination/ Commented bottom sections Desktop - Pages numbers Mobile - nothing Actually, the name 'hide-for-small-up' sounds strange, according to logic it should be 'hide-for-medium-up' or 'show-for-small-up'.
  22. I have tried to comment whole this piece. It gives positive and negative results: 1) Positive. At desktop - no 'More' button, everything is fine 2) Negative. At mobile version I don't have any tools to reach the next page. Which file should contain a description the 'hide-for-small-up' class?
  23. Thank you for advices. Right know I would prefer to control stock automatically (I have too much goods by 1 item), but if I find that number of broken letters is too high, I'll follow your advice and disable it.
×
×
  • Create New...