Exactly

In 1 line: all.purpletreesoft wrote: ↑Tue Oct 16, 2018 1:19 pmHi Daniel/Others ,
Do you know which areas are majorly redeveloped, and which kind of extensions can break on version 3.1?
We have some extensions and want to understand which ones we need to rewrite.
Code: Select all
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
Code: Select all
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ul>
Code: Select all
<ol class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ol>
Code: Select all
<?php if ($error_warning) { ?>
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
<button type="button" class="close" data-dismiss="alert">×</button>
</div>
Code: Select all
{% if error_warning %}
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
<button type="button" class="close" data-dismiss="alert">×</button>
</div>
{% endif %}
Code: Select all
{% if error_warning %}
<div class="alert alert-danger alert-dismissible"><i class="fas fa-exclamation-circle"></i> {{ error_warning }}
<button type="button" class="close" data-dismiss="alert">×</button>
</div>
{% endif %}
Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.
Yeah you are right. I was being lazy and you caught meOSWorX wrote: ↑Tue Oct 16, 2018 11:19 pmIn 1 line: all.purpletreesoft wrote: ↑Tue Oct 16, 2018 1:19 pmHi Daniel/Others ,
Do you know which areas are majorly redeveloped, and which kind of extensions can break on version 3.1?
We have some extensions and want to understand which ones we need to rewrite.
Why?
Because if you look at the used icon libraries, nearly each icon name will change.
Samples (breadcrumbs):
OC 2.3.xOC 3.0.xCode: Select all
<ul class="breadcrumb"> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li> <?php } ?> </ul>
OC 3.1.xCode: Select all
<ul class="breadcrumb"> {% for breadcrumb in breadcrumbs %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul>
Samples (warning):Code: Select all
<ol class="breadcrumb"> {% for breadcrumb in breadcrumbs %} <li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ol>
OC 2.3.xOC 3.0.xCode: Select all
<?php if ($error_warning) { ?> <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?> <button type="button" class="close" data-dismiss="alert">×</button> </div>
OC 3.1.xCode: Select all
{% if error_warning %} <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }} <button type="button" class="close" data-dismiss="alert">×</button> </div> {% endif %}
But what I do not understand: as a developer you can download at any time the lastest 3.1.x release and look into the code.Code: Select all
{% if error_warning %} <div class="alert alert-danger alert-dismissible"><i class="fas fa-exclamation-circle"></i> {{ error_warning }} <button type="button" class="close" data-dismiss="alert">×</button> </div> {% endif %}
Or are you only lazy?
You could have used 3.0.2.0 and run an online shop with that one.
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
no I think it's free it's true but it's beautiful andIP_CAM wrote: ↑Thu Sep 20, 2018 1:44 amFellows, PLEASE get reasonable, do you really expect somebody to know,and when do you plan a stable version?![]()
when a stable Version of something will be ready ? Not even Microsoft would
know such, otherways, there would be no MS-Updates for existing Windows
Versions needed ever !
And OC has not 100's of Testers employed, it's YOUR DUTY, as PART of those
OC Testers, to find out, where and what is still missing, or does not work. That's
the main Reason, why OC comes for FREE, otherways, why should anyone build
such a comprehensive Software for free? Just to make you happy ?!![]()
Got it ?
What a bunch of dreamers...
Tutuapp 9apps Showbox
Yes?
Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.
Wow they added something that every other eCommerce Platform has already had for years....OSWorX wrote: ↑Tue Jan 01, 2019 7:28 pmYes?
Do not know when you have checked the latest code, but I see many new features.
Just 2: multilingual and product variants.
Better you check the code before posting the next time.
Well, instead of waiting for a v.3.130 , a v.1.565 LIGHT Community Edition would nowJNeuhoff wrote: Perhaps its time to create a fork and create a community edition?
My Github OC Site: https://github.com/IP-CAM
5'600 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.
Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.
Looking at Opencart's new branches and releases in github it seems that Opencart will take maintenance&support seriously at last. I think this is good news!moneycarlo wrote: ↑Thu Jan 03, 2019 1:33 pm[...] a maintenance release of 3.0.3.0 was released [...]
Users browsing this forum: No registered users and 171 guests