Jump to content

queenniara

Member
  • Posts

    12
  • Joined

  • Last visited

queenniara's Achievements

Newbie

Newbie (1/14)

7

Reputation

  1. I have no idea how to write the two solutions. It was so much easier with cubecart 4 to move things where I wanted them to be. How do I change the controller code by moving the assign from the GUI class to the Catalogue class?
  2. I currently have the main.php file that has this content: <body> {if isset($SECTION_NAME) && ($SECTION_NAME == "home")} {include scope=parent file="skins/$SKIN_FOLDER/templates/homepage.php"} {elseif isset($SECTION_NAME) && ($SECTION_NAME == "checkout")} {include scope=parent file="skins/$SKIN_FOLDER/templates/checkout.php"} {else} {include scope=parent file="skins/$SKIN_FOLDER/templates/store.php"} {/if} </body> homepage.php, checkout.php and store.php, all have the content that default main.php used to have. Is there something I needed to copy to these files?
  3. I am currently using the Kurouto skin and I am trying to customize the Checkout basket. Currently the images are being displayed as 60x50px. I would like to resize the images to 100x150px. I tried to edit the config.xml and by changing the size and cleared the image cache but that did not change the image size on the page. I was also confused becasue I want to change the size in the checkout page only NOT the product image gallery. Altering the size in the stylesheet did not help. As a matter of fact, it just threw off the layout and the second image on the line shifted to the right. .basket_product .image { float: left; height: 60px; margin-right: 5px; width: 50px; }. Can anyone let me know how to change the size? Thanks in advance for any help you can give me.
  4. I would like to move the breadcrumbs on the category and product page to be under the title. For now anytime I move the breadcrumbs code below to any section in the content.category.php and content.product.php file. It does not show. <div id="breadcrumb"> <ul> <li><a href="{$STORE_URL}">{$LANG.common.home}</a></li> {foreach from=$CRUMBS item=crumb} <li><a href="{$crumb.url}">{$crumb.title}</a></li> {/foreach} </ul> </div> Any help will be greatly appreciated.
  5. You will have to truncate the cubecart lang table through php myadmin to rectify this. You will lose any information you entered on your homepage in the process so take a copy if you need to. What do you mean by he/she would loos any information you entered on their homepage in the process. If I were to clear out the cubecart lang_table what exactly would i loose?
  6. I have a problem with the Order Completed & Dispatched email. I tried changing it once in the email.inc.php file and after that it started sending out the emails with the order breakdown like this: Order Inventory:Product: Test ProductOptions: Quantity: 1Product Code: 9033345Price: $0.10 It should look like this Order Inventory: Product: Test Product Options: Quantity: 1 Product Code: 9033345 Price: $0.10 No matter how i change the language file or even copy it from the original email.inc.php. It would not change. I want to change it back to how it should look. Any advice anyone? Please note: my store is heavily heavily modded. I went to my database and this is what is looks like in the Cubecart_lang table for email.inc.php.
  7. How do I code this in the language file to display the link?
  8. Can anyone help me. I am trying to rearrange the how the emails are sent out when a customer creates and completes an order. I am running cubecart v4.2.2 I installed Estelle's mod to disable order acknowledgement. So what I need to have done is 1. Change the email that the customer recieves once they have made payment and it cleared to the email that is sent when you change the status to order complete and dispatched. 2. Disable the email that is sent once you change the status to order complete. This would result in only one email being sent. And that is the email with the order and details. I would be grateful if anyone know how i can change that around in the classes/cart/order.php file.
  9. I am not familiar with the mod you mention, but spider.txt and robots.txt are both small fry compared to your htaccess file. (W3C schools explain the differences very well) Just create a txt file called robots, and add your line. You could also add instructions for google to follow all (google for robots.txt and there are loads of good sites about it). Whether search engines pay any attention to this is a different matter, although google claims to obey them, others certainly do not. Google will have no trouble finding your site map. If you are concerned search for your site map on google. If it comes up, then you know google knows about it already, and any robots file instruction becomes useless anyway. If it does not appear, then add a link at the bottom of your site to the site map, google will definitely find it then. Hope this helps, Paul. Thanks Paul!
  10. I just installed the mod: Automated Sitemaps for Google, Yahoo, Ask etc. It asked me to ask add this line Sitemap: http://mydomain.com/myshop/sitemap-google.php to my robots.txt file to allow search engines to auto-discover the sitemap. My problem here is I have Cubecart 4.2.2. running and I have enabled the SEO mod included with it. I looked in my root directory. There is NO robots.txt file, there is only a spiders.txt file and a .htaccess file. Which one of these do I put that line into, or do I need to get a robots.txt file? Thanks for your help in advance!
  11. I use bluehost and I have just installed a ssl certificate by Geotrust on my site. What I have noticed is once the SSL is activated on in my store the thumbnails do not show. The path to the thumbnails generally would read http://www.mywebsitename.com/image/uploads...bs/thumbs_1.jpg However, in SSL mode it reads http://www.mywebsitename.com/public_html/image/uploads/thumbs/thumbs_1.jpg when I look at the code in cart.tpl file it says <img src="{VAL_IMG_SRC}" alt="" title="" /> for the thumbnail. How do I get my thumbnails to show in secure mode? Thanks in advance for your help!
  12. Hello everyone, I have my store running and i am able to calculate shipping rates when sending packages via priority mail in the USA but once I use a international address there are no options and I get the following message. Can anyone please please help me. I called USPS and they guided me to a technical guide with some schema which is foreign language to me. I am not a tech head. Do anyone have a fix for this? Request XML: -------------------------------------------------------------------------------- <IntlRateRequest USERID="intentionally left out" PASSWORD="1"></IntlRateRequest> -------------------------------------------------------------------------------- Return XML: -------------------------------------------------------------------------------- <?xml version="1.0"?> <Error><Number>-2147219084</Number><Source>IntlRate_Respond;SOLServerRates.IntlRate_Respond</Source><Description>Invalid XML Element cannot be empty according to the DTD/Schema. </Description><HelpFile></HelpFile><HelpContext>1000440</HelpContext></Error>
×
×
  • Create New...