Jump to content

harrisorganic

Member
  • Posts

    412
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by harrisorganic

  1. attaboy_jhb thats a good question. I would like to see some alt tab definitions on the admin side too. Meanwhile I like Brian's idea of using the meta keyword area as mine are all blank. Traffic Travis keeps telling me I have duplicate alt tags on some pages. The last one I looked at had the same alt tag for the page icon and the image. Al, is this something that can be listed on Github?
  2. Hi Brian et al, Now that we have moved on to 6.0.6 it seems the mods we made to content.product.php have been made in Foundation. I have made a change this evening to content.category.php, changing h2 to h1. and note there is no TITLE in content.certificate.php or the GC page. Are there any other suggestions regarding h1 tags and SEO? How do you insert a title into the GC page. ie <title>{$META_TITLE}</title>
  3. I see I have the same issue, with CC 6.0.6, pleased to see it is logged.
  4. Thanks DB, I can say I got the website to go from blank white pages to show correctly, whether google can do an automatic price update may take some more time and coding. It may take some more time.
  5. This is what I inserted and this works, or seems to. <td>{$LANG.catalogue.stock_level}</td> <td>{$PRODUCT.stock_level}</td> </tr> {/if} {* start insert *} <tr> {if ($CTRL_ALLOW_PURCHASE) && (!$CATALOGUE_MODE)} {if $PRODUCT.ctrl_sale} <td>Price</td> <td> <div itemprop="offers" itemscope itemtype="http://schema.org/Offer"><meta itemprop="priceCurrency" content="AUD" /><span itemprop="price">{$PRODUCT.sale_price}</span></div></td> {else} {* MY VERSION *} <td>Price</td> <td><div itemprop="offers" itemscope itemtype="http://schema.org/Offer"><meta itemprop="priceCurrency" content="AUD" /><span itemprop="price">{$PRODUCT.price}</span></div></td> {/if} </tr> {* end of insert *} NB I added after " <td>{$PRODUCT.stock_level}</td>" a </tr> thanks
  6. Thanks DB When I load the cvs file to google merchant, it now comes back with an error "Automatic item updates: Missing schema.org microdata price information" http://schema.org/docs/search_results.html#q=price shows how to insert price into a doc.eg.<div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <!--price is 1000, a number, with locale-specific thousands separator and decimal mark, and the $ character is marked up with the machine-readable code "USD" --> <span itemprop="priceCurrency" content="USD">$</span><span itemprop="price" content="1000.00">1,000.00</span> <link itemprop="availability" href="http://schema.org/InStock" />In stock </div>Is there some code available to place this in the foundation code of content.product.php and where to place it?
  7. Hi DB, I had a look at this yesterday. When I use "export catalogue" google base plugin to make a cvs file, I get a column saying the identifier_exists is False, where as when it is set to true, I can manually upload the file to google merchant and it is accepted. I note above in your "blue print skin" <span class="product-code"><span itemprop="identifier" content="{$PRODUCT.product_code}">{$PRODUCT.product_code}</span></span>However I can not find it mentioned in your foundation skin above and it does not appear in content.product.php. Any suggestions where to put it?
  8. Thanks Brian, having a look at it now.
  9. Thanks DB, Yes it does repopulate it as https. If I click save again it goes back to http. Anyway it is set as https. thanks again. Duncan
  10. Hi Brian, I am testing the digital down loads and have found I get a 404 error when I paste the url into a new page. I have a SSL certificate and it is enabled. This is the code: http://www.harrisorganicwine.com.au/shop/index.php?_a=download&accesskey=6f9773b11dcc8776373af2441cc7e96b However if I place an "s" after http the url works. What to look at and how to fix please?
  11. I think I may have found the answer. "Force Order Completed Emails" in admin settings features. Yes GC now works. Yippee. However I am getting two confirmation emails and the gift cert receiver gets two emails. Any suggestions why? regards Duncan
  12. Yes I did receive that email and I also got the 50 lines. So the SMTP works. Also If I send a GC to myself there is no mention of it in digital down loads in my account, is this normal? The other thing worth mentioning is on the order summary the delivery address is a physical address not the email it is to be sent to. This of course is only for clarity. If I was producing 10 GC for customers/friends I would want to know who gets what. Where to look next?
  13. One bit at a time... Firstly I had no smtp, Sending Method now = SMTP, was php mail() function. Then tested SMTP, OK then ran a GC, php error log in cpanel is below: /home1/maketext/public_html/******organicwine/shop/error_log: [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;/td&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;/tr&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;/tbody&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;/table&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;p&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &amp;nbsp;&lt;/p&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;/body&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: &lt;/html&gt; [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: --b1_02712502b8a43b7aa5b14e17d26dc543-- [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: . [01-Jul-2015 08:59:38 Australia/Perth] CLIENT -&gt; SMTP: QUIT I have no idea if the above means anything, However I am not receiving the GC at the intended or any email address.
  14. Hi Brian, file /classes/mailer.class.php, now looks like this: public function __construct() { // Configure PHPMailer variables - debug added $this->SMTPDebug = 1; $this->Debugoutput = "error_log"; $this->From = $GLOBALS['config']->get('config', 'email_address'); $this->FromName = $GLOBALS['config']->get('config', 'email_name'); $this->CharSet = 'UTF-8'; Then ran the GC Went to cpanel error logs and found no change in php errors. None listed recently. I am wondering if I have missed some thing in the admin setup since changing from CC5 to CC6?
  15. Hi Brian, I am still having difficulty with GC's. As I said earlier the recipient of the GC does not get an email message. I also found that I get three emails. 1. as the order 2 and 3 are the same as order confirmation. There is no reported errors in the log. Any help would be greatly appreciated. regards Duncan
  16. Thanks Brian, Unfortunately that link was not helpful. Running 6.05 and Foundation skin now, I get admin messages regarding the GC, but the recipient does not receive the GC via email. Firstly I receive one new order message. Then after changing status from pending to order complete, in admin, I get 2 order confirmation messages. Any thoughts? what to look into!
  17. Hi Brian, I was testing "gift certificates" (GC) today and found that I did not receive an email message stating the GC was available to download or sent the GC via email. On 7 May 14, there is a message from you relating to this, however I can not read it. I get a rectangle with a revolving symbol. Can you help please?
  18. I am looking at some margins too. On a PC the foundation home page looks OK, but on a mobile there is no margin. The justified text is from left to right, with no padding. Most of the other main text on other pages is like this too. Any suggestions how to change in default cubecart.default.css please? I found the following using chrome developer tools <div class="small-12 columns"> text here </div> and div.small-12.column <div id="content_homepage"> text here </div> regards Duncan
  19. DB, I am using foundation, can you explain a little more please? The specifications tab can be seen in the product public view .
  20. Now that google merchant is getting a bit tetchy about micro data is there any update from Cubecart regarding inserting this into the code. DB has done well inserting it in her code, however I do not profess to have those skills. More info see below. Missing microdata for conditionhttps://support.google.com/merchants/answer/6069143
  21. Thanks for the info, All I did was click on the setup icon in the WARNING message. However I was not clear about which icon to click on regarding installation. There was a choice of two. I repeated the setup using the top icon and it went through easily. Many thanks.
  22. Thanks Ian. (you will not need to enter connection details again as that is only needed on new installations). I have run www.yourstore.com/setup and have got to the page where it asks for database name, password etc. Database HostUsernamePassword I am not able to get past this page. Any suggestions? Is there another way?
  23. Hi DB and Al. My upgrade went through OK, however once I returned to the Dashboard I get this warning : WARNING: Your store appears to be using source code from 6.0.5 but the database is still at 6.0.4.Please complete the upgrade by running the setup process.DI dont remember having to run a setup process before from V5 to V6. Do I run the set up and have to enter all the connection data?
×
×
  • Create New...