Search found 2023 matches

Search found 2023 matches

Re: default2 - free OpenCart 2 theme

I'm not really sure why your theme-preset-x.css still have that. Try to delete it, then save again from admin.

Just wodnering, open catalog\view\theme\default2\style\less\theme-preset.less do you found .btn-primary around line 77?

Jump to post
  • Sat Oct 22, 2016 11:28 pm
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

Something wrong with your theme-preset.less files because I cannot found .btn-primary at theme-preset-1.min.css
Furthermore theme-preset-x.min.css shouldn't output @import
Try to reupload library/rhythm and theme-preset.less incase there is corrupt file.

Jump to post
  • Thu Oct 20, 2016 3:20 am
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

Sorry for the late, @labelshop thank for the help. However, I still can't get the button or other style changes in the Theme->Styling section to work. Yes I've cleared and reloaded modifications, flushed the browser cache...nothing. Still stays default blue.. To check the output css, you can find th...

Jump to post
  • Wed Oct 19, 2016 10:45 pm
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

Using the template_child is the correct method to customize theme template. When updating the theme, you need to check all templates in template_child for possible updates. The simple way would be use file comparison software for files in template folder between current and new version. So you know ...

Jump to post
  • Sat Oct 01, 2016 9:41 pm
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

@labelshop

I suggest you to compare your customization template with the default2 category template.
default2 not use clearfix anymore

Jump to post
  • Wed Sep 28, 2016 7:45 am
  • Replies 196
  • Views 139533
Re: OpenCart Shortcodes

You need to parse the shortcodes in journal2 tab description; docs . if (class_exists('Shortcodes') && method_exists($this->shortcodes, 'do_shortcode')) { $data['j2_tab_content'] = $this->shortcodes->do_shortcode($j2_tab_content); } Code above only example, you need to ask journal2 dev which...

Jump to post
  • Wed Sep 28, 2016 6:56 am
  • Replies 62
  • Views 48178
Re: default2 - free OpenCart 2 theme

however I can't get the top nave to work - the drop-down categories don't have labels - see here ( http://www.westernbrides.com ). See screenshots . . . Have you try to add demo navigation to All Page Layout? Further info on using Gearbox Navigation available at http://www.echothemes.com/docs-gb-na...

Jump to post
  • Fri Sep 23, 2016 11:54 am
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

What about navigation items? does all of them enabled?
What about the item tree structure?

Since the demo nav is work, I'm only able to give you suggest to recheck it.

Jump to post
  • Fri Sep 09, 2016 10:24 pm
  • Replies 196
  • Views 139533
Re: No content on information pages/can't change layout

I think it's possibly .htaccess SEO Url issue, because I can see your information page accessed without URL alias

Jump to post
  • Wed Aug 31, 2016 6:42 am
  • Replies 2
  • Views 557
Re: getchild to return data to parent

Ah yes, I missunderstand it.

I think returning data with getChild is not possible for Oc 1.5.x, you can use model instead of passing it through session

Jump to post
  • Wed Aug 31, 2016 6:38 am
  • Replies 5
  • Views 3908
Re: getchild to return data to parent

Since the arguments is passed as array, you need to adapt your code into function getInformation($param) {   $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "custom_information                               WHERE information_id = '" . (int)$param[0] . "'");   r...

Jump to post
  • Tue Aug 30, 2016 1:31 pm
  • Replies 5
  • Views 3908
Re: default2 - free OpenCart 2 theme

Updates v2.3.0

* Fixed
^ Improvements
+ New Feature
~ Deprecated
# New Feature - Feedback Expected

v2.3.0 - August 30, 2016
^ OpenCart 2.3.x compatibility
^ Contact page Google Maps API
^ Design Layout drag n drop module
^ Update Rhythm Framework 1.3.0
^ Update Gearbox Modules 1.3.0

Jump to post
  • Tue Aug 30, 2016 1:29 pm
  • Replies 196
  • Views 139533
Re: getchild to return data to parent

Try this

Code: Select all

$this->getChild('module/sample/getInformation', array($this->data['information_id'])); 
And next time please inform your OpenCart version. Because in OC 2, it's change to $this->load->controller()

Jump to post
  • Fri Aug 26, 2016 11:47 pm
  • Replies 5
  • Views 3908
Re: default2 - free OpenCart 2 theme

You use Gearbox to create navigation, so the file is theme\default\template\module\gearbox\navigation_navbar.tpl

I check your navigation code and it's same to my test, but somehow your link is not clickable.

Jump to post
  • Thu Aug 25, 2016 6:38 pm
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

Sorry, I must be missed that.
I'm bit confuse with your question. You want the top menu (with children) clickable or disable them?

Jump to post
  • Thu Aug 25, 2016 5:43 pm
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

Updates v2.2.1

* Fixed
^ Improvements
+ New Feature
~ Deprecated
# New Feature - Feedback Expected

v2.2.1 - August 24, 2016
* Required input issue in Guest Checkout
* Category child not align properly
* Custom style decode and minify output

Jump to post
  • Wed Aug 24, 2016 9:15 pm
  • Replies 196
  • Views 139533
Re: default2 - free OpenCart 2 theme

It's custom style bugs. I forgot to decode the style content, so ">" become "gt;".
I will fix it in few days

Jump to post
  • Tue Aug 23, 2016 10:23 pm
  • Replies 196
  • Views 139533
Re: Custom Product template layout

This approach is not quite good if I want to have different layouts for products from different categories. I'll have to create too many new product templates and manage them in code instead of admin panel. And where should I define the layout template file (.tpl) in this case? You misunderstand it...

Jump to post
  • Thu Aug 18, 2016 3:35 pm
  • Replies 5
  • Views 5451
Re: Custom Product template layout

Based on your description, it should work. Do you use other modification than OcMod? maybe the output is altered. The problem with your approach is that your new product controller is not updated when updating OpenCart. Or you have ext that modificate product controller, it won't get to your new con...

Jump to post
  • Wed Aug 17, 2016 8:05 pm
  • Replies 5
  • Views 5451
Re: OpenCart Shortcodes

what is your opencart version?

Jump to post
  • Sat Aug 13, 2016 2:43 pm
  • Replies 62
  • Views 48178

Search found 2023 matches