-
Posts
359 -
Joined
-
Last visited
-
Days Won
11
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by Acer
-
Hi Is there a way to access the FileManager directly, i.e. add a link to it in the Admin Menu? I know you can access it through a CMS page, but this feels like an unnecessary run around. Is there a more direct way? I tried creating an Admin Menu item, but not sure what the class is and I'm getting Controller not found...
- 2 replies
-
- filemanager
- admin menu
-
(and 1 more)
Tagged with:
-
Hi Zen This works, thank you. Although with the caveat that it's a temporary, Naria specific issue as you mentioned. Hopefully it get's sorted in future release. Thanks again.
- 9 replies
-
- solved
- temporary solution
-
(and 1 more)
Tagged with:
-
Hi Using 30Bz 1.1.0 Naria theme: On a Blog Post: It seems that the images for related products are not being displayed... I see this has been asked here as well - any solution? https://forum.thirtybees.com/topic/3505-niara-theme-glitches-discussion/?tab=comments#comment-30768 Note: this appears to be working in the Community Default theme though. Screenshot of it not working in Naria:
- 9 replies
-
- solved
- temporary solution
-
(and 1 more)
Tagged with:
-
Thanks, datakick, I appreciate it 🙂 Regarding my other requirements: For "Contact form on Product page" - I've been following Nemo's PS tutorial: "Ajax Contact Form on Contact Page" For the most part, it appears to be working - but further testing is required - it seems I may have to modify the error state in the jQuery, but so far so good. For now it seems like it's working 🙂 https://www.prestashop.com/forums/topic/564724-creating-an-ajax-contact-form-on-the-product-page/ http://nemops.com/prestashop-ajax-contact-form/#.XYN8VSgzaUl Just a question regarding "Adding a new field to the Contact Form": I've found Nemo's Tutorial, but not sure if it will still work... I will try to implement, but could be a while before I provide feedback... Is there a better or easier way to do this? http://nemops.com/adding-new-fields-to-prestashop-contact-form/#.XYOCMCgzaUk
- 9 replies
-
- 30bz is awesome :)
- customer service system
-
(and 1 more)
Tagged with:
-
Ok wow... I've check it out, turns out it's not just a simple "Contact form sending a mail" module. No, it's a fully fledged "Customer Service System" with tickets, 'reply direct from system', messages timeline, and more. Wow... 🤗 Sure, a built-in Captcha system would've been a nice addition (not to mention adding fields from the BO admin - I'm pushing it, I know 😉) + I need to figure out how to leverage this on the product page, but still... Much more than I expected! 30Bz continues to impress! 😀
- 9 replies
-
- 30bz is awesome :)
- customer service system
-
(and 1 more)
Tagged with:
-
Awesomeness! Thanks Piet, I appreciate it 😀
- 9 replies
-
- 1
-
-
- 30bz is awesome :)
- customer service system
-
(and 1 more)
Tagged with:
-
Can someone please help with this question?
- 9 replies
-
- 30bz is awesome :)
- customer service system
-
(and 1 more)
Tagged with:
-
Thanks for the reply SeaSky. And the form submissions, are they viewable in the BO admin somewhere? Also can you specify or change the to and cc addresses?
- 9 replies
-
- 30bz is awesome :)
- customer service system
-
(and 1 more)
Tagged with:
-
Hi I'm learning TB and trying to get more familiar with it. I have a couple of questions regarding the contact form: Are the Contact page form submits saved somewhere and if so, where can I access this? Also where do you set the to and cc addresses?
- 9 replies
-
- 30bz is awesome :)
- customer service system
-
(and 1 more)
Tagged with:
-
For me so far, the "slash" problem has only happened on the Core Updater as well as causing a "minor" js error on the Product Comparison page. Other than that, I haven't encountered any other "slash" related issues on my local development environment running XAMPP on Windowz so far. And I've been testing and playing with 30Bz extensively for a quite some time now. The fix that MusicMaster provided earlier for the Core Updater issue (on the GitUpdater page) worked for me. Incidentally, he also provided a fix for the Product Comparison js error which also worked. I haven't had the need yet to change any PS ROOT DIR or PS CORE DIR stuff so far...
-
Hi A lot of people use XAMPP on Windows for local development. I've had this issue as well. If you guys can fix this, it would be cool because otherwise more people will encounter this problem going forward.
-
This has worked for me as well, thanks! When will this be integrated into a new release of TB as I see new users are still experiencing this problem?
-
Thanks for the suggestion, I'll most certainly checkout PresTools for some of it's features, thanks. However, the built-in 30Bz CSV Import can be used successfully as a maintenance tool and on many other online store platforms using CSV Import for maintenance is the standard. Cool thing with 30Bz, is that the CSV Import tool is actually very effective in this regard and works very well. I have successfully and extensively tested it to update the following: Product name, SKU, SEO (meta title, keywords), Brand / manufacturer, URL rewrite, Image add/replace, Quantity, Stock, Price, Tax Rules, On Sale, Sale from-to, Tags, Accessories and Product Category, etc. That being said, as far as I know, it can't do 'product packs' and setting the product category to 'default category' needs a change to be made as per this posts. All in all, it works well and is sufficient for my purposes regarding catalogue maintenance and update.
-
I have tested this solution, using the PS 1.7 variant of the code and can confirm that it's working 🙂 Thanks for the assistance, Zen 🙂 The code has the following effect: On CSV Import, the product's category is updated, the product's breadcrumb is updated and the "default category" is updated and reflects in the backend 🙂 How to update: In AdminImportController.php: Find: // Will update default category if there is none set here. Home if no category at all. Change code to: if (isset($product->id_category[0])) { $product->id_category_default = (int)$product->id_category[0]; } else { if (!isset($product->id_category_default) || !$product->id_category_default) { $defaultProductShop = new Shop($product->id_shop_default); $product->id_category_default = Category::getRootCategory(null, Validate::isLoadedObject($defaultProductShop) ? $defaultProductShop : null)->id; } } IMO, I believe this change should be integrated into TB. Similar to what they've done with PS 1.7 on this ticket: https://github.com/PrestaShop/PrestaShop/issues/10871 https://github.com/PrestaShop/PrestaShop/pull/10930 I will try to create an issue ticket on this module in TB Github - but I'm not sure if this is the best place to make the suggestion or if others agree?
-
Thanks for this Zen. I see the PS 1.7 solution will be integrated into PS. https://github.com/PrestaShop/PrestaShop/pull/10930 The dude there wrote this - it seems compatible and similar to what you wrote - what do you think of his approach to this? Can I use his code or should I use yours? if (isset($product->id_category[0])) { $product->id_category_default = (int)$product->id_category[0]; } else { if (!isset($product->id_category_default) || !$product->id_category_default) { $defaultProductShop = new Shop($product->id_shop_default); $product->id_category_default = Category::getRootCategory(null, Validate::isLoadedObject($defaultProductShop) ? $defaultProductShop : null)->id; } }
-
In some cases, administrating a large store, you may want to use CSV import to help with bulk updates. I'm sure that I'm not the only one requesting this. And looking at that PS 1.7 Github issue - it's more than just two people interested in this... lol Ideally, I'd like to be able to this on CSV import without having to mess around with SQL queries - as my shop admin users are not very technical in that regard and it's not a good idea to let them play with SQL queries. However, for my purposes, may I ask you to please share the Query that use to update the default categories? And it seems that you've had the need to update the default categories in bulk before so...
-
You can use the CSV file to update the product's information. So no, not deleting anything. In terms of the default category, the system already picks the 1st id that you select. So it's sub/parent/root if you specify 5,3,1 (tea,tea & coffee,root). In terms of functionality, I think it's perfectly reasonable to assume that you should be able to update your product's info - which you can already do without deleting anything. What I would like to see is that if you have a new category in your import update csv, then the system should replace what's currently there and make it default. If there is no category specified, it should not delete anything. Incidentally, I'm not the only one looking for this type of functionally - there appears to be a similar problem (and solution) in PS 1.7 with another user requesting the same thing. Briefly looking at the code, it appears we may be able to adjust the TB code here to do something similar. https://github.com/PrestaShop/PrestaShop/issues/10871
-
Good suggestion. However, for me it's a bug, because you should be able to update the product's category on CSV import (which works) and this new category should then be set as default (which doesn't work). If it doesn't do this, then it prevents you from doing a mass category update on bulk CSV product import... which doesn't help if you want to move 300 products to a different category for example... or you noticed that with your initial import, the products where being assigned to the incorrect category. So you go, "no problem, I'll just do a bulk category update with CSV import" only to find that it doesn't work as you expected 😞 So no, not feature, bug - imo.
-
Hi Zen Thanks for the feedback. Yes, this is what I'm looking for. I will have a look at this code and see if I can figure it out and make it do what I want it to do. The only thing is: surely what the system doing is a bug? Because, unless I'm mistaken, the system should always allow you to update a target product's category and then set this category as default (via CSV Import update)?