Search found 309 matches

Search found 309 matches

Cloudflare Image Resizing

Just putting it out there so it's on the radar. The Cloudflare Image Resizing seems simple -
https://developers.cloudflare.com/image ... rl-format/
I'll soon be experimenting with it for another non-OC website.

Jump to post
  • Tue Dec 13, 2022 1:18 am
  • Replies 0
  • Views 9076
Re: GA4 with CloudFlare Zaraz

Emailed, thank you.

Jump to post
  • Fri Apr 22, 2022 9:53 pm
  • Replies 5
  • Views 707
GA4 with CloudFlare Zaraz

I want an extension that will work on my OC 3.0.3.2 with Journal 3 site that uses all the ecommerce tracking triggers of CloudFlare Zaraz for GA4. The doc on CF Zaraz for GA4 is here - https://developers.cloudflare.com/zaraz/web-api/ecommerce/ I assume this will be easiest if you already have a GA4 ...

Jump to post
  • Fri Apr 22, 2022 12:00 am
  • Replies 5
  • Views 707
Recommendations AI

Is anyone using this yet?
https://cloud.google.com/recommendations
I'd love to see an example with OC

Jump to post
  • Sun Jan 09, 2022 2:47 am
  • Replies 1
  • Views 395
Re: Abandoned Cart Emails - where to get the data

Ah, yeah, I use one page checkout and forgot some people use steps. The less ajax calls the better on the checkout. Thanks for the feedback.

Jump to post
  • Sun Jan 09, 2022 2:45 am
  • Replies 2
  • Views 936
Re: POLL: do you use Google Analytics?

As a small business, you basically have to if you use Google Ads and want to be successful. I've installed and use Matomo for a while, but with data like campaign ad spend not automatically carried over it just became more trouble than it was worth for me. In the end, time is money.

Jump to post
  • Sun Jan 09, 2022 2:42 am
  • Replies 9
  • Views 5241
Abandoned Cart Emails - where to get the data

I had an Abandoned Cart Email extension installed that caused checkout problems. It took me a bit to realize the problems were because of the extension, and it was because it was executing ajax calls on the checkout page to store the customer information. In looking around, it seems like all the aba...

Jump to post
  • Sat Dec 18, 2021 5:03 am
  • Replies 2
  • Views 936
How did the hacker get away from the police?

How did the hacker get away from the police?
He ransomware.

:laugh:

Jump to post
  • Mon Dec 13, 2021 4:05 am
  • Replies 0
  • Views 3997
Zaraz (bought by CloudFlare)

I just started using Zaraz today now that it's part of CloudFlare. So far it's been easy to set up and working well. More info https://blog.cloudflare.com/why-cloudfl ... ght-zaraz/

Jump to post
  • Thu Dec 09, 2021 5:06 am
  • Replies 1
  • Views 3509
Coupon - product limit

Version 3.0.3.2 I set up a coupon code for a specific line of products of which there are about 3,000 of them. I added the products to the coupon via SQL. If I edit the coupon from the admin web interface of OC, it drops to about 900 products and loses the dates. I assume there's some SQL coded into...

Jump to post
  • Fri Oct 15, 2021 4:56 am
  • Replies 2
  • Views 896
How many times....?

How many times do you have to click "I accept cookies" before they send you the cookies?!?!

:laugh:

Jump to post
  • Fri Sep 03, 2021 6:03 pm
  • Replies 2
  • Views 3059
Re: Category?page=100 returns a page - how to prevent that?

For the original page issue. You could try. After. $results = $this->model_catalog_product->getProducts($filter_data); Add. if (!$results && (int)$page != 1) { $this->response->addHeader($this->request->server['SERVER_PROTOCOL'] . ' 404 Not Found'); } But again this could cause issues if th...

Jump to post
  • Fri Sep 03, 2021 2:17 am
  • Replies 21
  • Views 2277
Re: Category?page=100 returns a page - how to prevent that?

Cinderella request. Browsers requires that the variable gets sanitized before the load completes, not after. Huh? Try on this glass slipper, let me know if this fits for you - you know the OC code best, I'm just trying to fix this SEO problem /catalog/controller/product/category.php if (isset($this...

Jump to post
  • Fri Sep 03, 2021 2:06 am
  • Replies 21
  • Views 2277
Re: Category?page=100 returns a page - how to prevent that?

May cause an undefined variable error message in the error triggers if it's not sanitized, that's why. Yeah, but if it's not a positive integer then OC should return the 404 or do something else besides generating the page as if all is well. You can sanitize it after it's checked to avoid the php e...

Jump to post
  • Fri Sep 03, 2021 12:15 am
  • Replies 21
  • Views 2277
Re: Category?page=100 returns a page - how to prevent that?

Check your pages have the correct canonical links and that you have correctly configured the URL Parameters for your site in Google's Search console. The canonical links should take care on any duplicates caused by URL parameters other than page. Be careful of adding noindex (and possibly 404) to p...

Jump to post
  • Fri Sep 03, 2021 12:02 am
  • Replies 21
  • Views 2277
Re: Category?page=100 returns a page - how to prevent that?

$limit = $this->request->get['limit']; for: $limit = (int)$this->request->get['limit']; Actually that's a problem, and that's how the original OC source code has it. If what's supplied is not a number, (int) will return zero. By using (!is_numeric($limit)) || (floor($limit) != $limit) you're able t...

Jump to post
  • Thu Sep 02, 2021 11:16 pm
  • Replies 21
  • Views 2277
Re: Category?page=100 returns a page - how to prevent that?

Best way is to use meta tags or x-robot headers or both for these because then you can set them to noindex, follow. Ah, interesting approach! This looks like a good idea! I was just looking at the /catalog/controller/product/category.php And made a quick change to test. I'd have to do this for all ...

Jump to post
  • Thu Sep 02, 2021 6:55 pm
  • Replies 21
  • Views 2277
Re: Category?page=100 returns a page - how to prevent that?

OC version. So, what are you referring about exactly? Version 3.0.3.2 I see this page in Google SERPS - https://www.carguygarage.com/storage/cabinets/polished-stainless-steel-cabinets?page=2 I see this page in Google Search Console - https://www.carguygarage.com/accessories/decor?sort=pd.name&o...

Jump to post
  • Thu Sep 02, 2021 5:08 pm
  • Replies 21
  • Views 2277
Category?page=100 returns a page - how to prevent that?

I actually found this problem when I clicked one of my site's category pages in Google and it came up without any products. I then realized that Google had index a category with ?page=2 and that page actually doesn't contain any products. Maybe it did a while ago, but it should just redirect to the ...

Jump to post
  • Thu Sep 02, 2021 4:47 am
  • Replies 21
  • Views 2277

Search found 309 matches