Jump to content
thirty bees forum

SLiCK_303

Trusted Members
  • Posts

    1,200
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by SLiCK_303

  1. It was a module making it so I couldn't see the images. Thanks @lesley for helping me!
  2. No, just when you look at a product, the print option there
  3. I noticed on one of my test sites, my 'clean' site it works fine, on my other site it doesn't show them. There is no difference in the two sites files wise, not sure whats happening. I'll get back to ya......
  4. I get that error again now that you did the Revert "Fix Discount::__get signature"
  5. @lesley said in override a core css file: Not really. You can pick a down stream CSS and add the styles to it, or you can throw them in the global and add !important, or you can add it in the back office css editor, it should be down stream from that. I tried adding them to the global.css file, with !important after all entries, didn't work. Like.. .bx-wrapper .bx-controls-direction a:hover:before { color: gold !important; }
  6. I tried with nothing in the print.css file, and they were still hidden
  7. I don't believe there is a text-transform:sentence ? I think you want text-transform:none;
  8. Have you tried utilizing BO->Preferences->Custom Code? Maybe putting in there will help?
  9. Well, we're talking about print.css in another thread, but I thought I'd bring up an issue I found in 1.0.4 latest source. Images are not shown when you print a product, using the default theme.. edit: hmm...worked on my rc1 test site, just not latest source.
  10. Is there a way to override /js/jquery/plugins/bxslider/jquery.bxslider.css file? I have to edit the file directly to change the css for it, obviously that is a short-term solution, as on the next upgrade it may be overwritten.
  11. I'm close with this, just wont show the images for some reason. I use a theme based off of the default theme. This is my print.css edit: Seems to show images in 1.0.3, just not 1.0.4. hmmm edit2: The problems not showing images was a module I had installed. I got rid of it and now this works fine for me. ``` @media only print { #header .nav, #header .banner, #header .row > div { display: none; } #header .row div#header_logo { display: block; } #center_column { width: 100% !important; } #leftcolumn, #rightcolumn { display: none; } #loyalty { display: none; } .form-group { display: none; } .menu-content { display: none; } .breadcrumb { display: none; } .product_attributes, .box-cart-bottom { display: none; } .bx-controls-direction { display: none; } #crossselling { display: none; } #footer .row > div, #footer .row > section { display: none; } #footer .row > div#blockcontactinfos, #footer .row > section#blockcontactinfos { display: block; width: 100%; border-left: none; border-top: 1px solid #515151; padding-top: 20px; } .footer-container #footer h4:after { display: none; } } ```
  12. latest source
  13. I get the following error, actually a page full of it, when I try to view an invoice as a pdf as a customer. (Home>My Account>Order History) In 1.0.3 it works fine... Warning: include(/var/www/vhosts/paganliving.net/thirtybees.paganliving.net/translations/en/pdf.php): failed to open stream: No such file or directory in/var/www/vhosts/paganliving.net/thirtybees.paganliving.net/classes/Translate.php on line 298
  14. If you look at the source, if you hit the button on the far left, looks something like </>, then you will see those type of lines.
  15. Step 1 wont let me make a primary outta idfeaturevalue, it gives me this error: #1062 - Duplicate entry '53' for key 'PRIMARY'. (edit) Had to do an export, modify the primary, then an import, but i got it....
  16. @alwayspaws said in eMail Error Message when Updating Order Status to "Delivered": Side note: I wish the customer's name wasn't in all caps because who writes like that? I don't, but I'm not up to doing the override rigamarole over that. :) You can change that by editing the .html emails, and take out the text-transform:uppercase, like in this line.... <span class="title" style="font-weight:500;font-size:28px;text-transform:uppercase;line-height:33px">Hi {firstname} {lastname},</span><br/> doing that will put in their first and last name the way they typed it into the site, so if they did all uppercase, it will be all uppercase, if they did all lowercase, it will be all lowercase...ect.. You might wanna change the text-transform:uppercase to read text-transform:capitalize, that in theory will capt just the first letter in each word of the sentence. Works fine if you have all lowercase, with all uppercase it will leave it uppercase.
  17. It should would be nice, if when you are in chat, that you could upload pics and files to each other. At least pics.....
  18. just use this module, its easier then setting up the Custom and Payment Methods... 01514314651928cashondelivery-1.0.0.zip
  19. I was doing the same thing, I understand. For some reason they didn't have the setup/adding of a payment in the configuration of the module. It's under Modules and Services>Custom payment methods, the way Positions, and Payment are. Not very intuitive to be sure....
  20. If anyone wants to do it, and is having problems, I can give you my files....
  21. You need to setup the Custom payment methods module, I did mine like this...
  22. Offering the possibility to order products by sales when browsing categories is a great way to have your customers know about your best items. The following guide by @Nemo works in thirty bees. As he is talking about an old PS version in it, don't bother with his Download Project Files, just follow his manual directions and it will work great. Thanks @Nemo!
  23. Ok here is an override so you can search for phone numbers, both normal and mobile, in BO->Customers->Addresses. Create a file called AdminAddressesController.php and in it put... ``` <?php class AdminAddressesController extends AdminAddressesControllerCore { public function __construct() { parent::__construct(); $this->fields_list['phone'] = [ 'title' => $this->l('Phone'), 'filter_key' => 'a!phone' ]; $this->fields_list['phone_mobile'] = [ 'title' => $this->l('Mobile Phone'), 'filter_key' => 'a!phone_mobile' ]; } } ``` ..place it in your sites override/controllers/admin folder, and delete your sites /cache/class_index.php file.
×
×
  • Create New...