Post by Cyrus » Fri Nov 16, 2012 5:49 pm

Added Shoppica2 theme mod with all accms features (menu, article sets, tabs, slide, sitemap, article search, etc).

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by gferenca » Thu Feb 07, 2013 11:46 pm

Hi Cyrus,
I have installed extension without problems, but when I add category and articles to top menu, there is (bellow the article title) Notice:undefined Index:category_id ... in file header.tpl (line 208)
I can send you page details to email.

Newbie

Posts

Joined
Thu Feb 07, 2013 11:40 pm

Post by Cyrus » Sat Feb 09, 2013 12:54 am

Hi Gferenca,
It looks like you have installed a custom menu and this casue that issue.
If you send me your header.tpl file or the xml file what modifies header.tpl, then I can help you to fix it.

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by gferenca » Thu Feb 14, 2013 7:45 pm

Hi Cyrus,
i sent you details in pm, have you got it.

Newbie

Posts

Joined
Thu Feb 07, 2013 11:40 pm

Post by keiron1992 » Thu Feb 14, 2013 8:02 pm

Hi Cyrus

I will be creating a website for a client soon using a different template however I would like to use your extension like I have with my own. If I purchase another license will you support me with implementing the extension into the new template please?

Thanks
Keiron

New member

Posts

Joined
Fri Oct 22, 2010 12:02 am
Location - Birmingham, West Midlands, Uk

Post by Cyrus » Wed Feb 20, 2013 7:06 pm

Hi Keiron

Yes I will help if you stuck, but I will not intagrate the full AC CMS to your custom theme (because it's not my responsibility).

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by keiron1992 » Wed Feb 20, 2013 9:26 pm

I understand. Thanks for the info :)

New member

Posts

Joined
Fri Oct 22, 2010 12:02 am
Location - Birmingham, West Midlands, Uk

Post by gferenca » Thu Feb 21, 2013 5:39 am

Hi Cyrus,
did you find any solution?

Newbie

Posts

Joined
Thu Feb 07, 2013 11:40 pm

Post by Cyrus » Thu Feb 21, 2013 6:20 am

Hi Gferenca

Please send me your e-mail address (PM), because for some reason I can't send you file via PM.

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by ReeceN » Fri Mar 15, 2013 10:06 pm

Hi.

Can you please tell me if you have aexican language pack or if not can you tell me how easy it would be to mosify the text or create one?

Thanks!

Reece

Newbie

Posts

Joined
Thu Mar 14, 2013 12:23 pm

Post by Cyrus » Sat Mar 16, 2013 2:36 am

Hi,
No, this language is not supported, but you can create it easly:
1. Copy the files and folders from inside accms_folder/admin/language/english folder to opencart_root/admin/language/yourlanguagefolder and accms_folder/catalog/language/english folder to opencart_root/catalog/language/yourlanguagefolder.
2. Open these files one by one and translate their contents. Here is an example:
$_['heading_title'] = 'AC CMS - Article';
So in that case you have to translate "AC CMS - Article" text and do not touch $_['heading_title'] string.

If you have successfully translated AC CMS and you want to share it with others, then you can send me and I will upload it.

Regards

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by takahashi1973 » Wed Mar 20, 2013 8:51 pm

HI!

AC CMS works really GREAT!
But now we have a Mulitlingual shop but AC CMS articles does not have multilingual SEO KEYWORD support.
Did you ever custom added that to a shop? I think it should be in the Module itelf really which would make it PERFECT!
I am happy to donate.

Active Member

Posts

Joined
Thu Oct 13, 2011 11:41 pm

Post by Cyrus » Thu Mar 21, 2013 7:50 pm

Hi Takahashi

I'm working on a new version of AC CMS and your request is on my TODO list. :)

Cyrus

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by takahashi1973 » Mon Mar 25, 2013 11:32 pm

Ok, keep me posted. Will it be backward compatable/upgradeble from older version?

Good luck!

Active Member

Posts

Joined
Thu Oct 13, 2011 11:41 pm

Post by keiron1992 » Thu Apr 11, 2013 5:26 pm

Hi Cyrus

When can we expect the next update? I feel as though we are starting to lack behind compared to some other blog extensions available.

I'm happy to make donations to your PayPal for new features to keep them coming.

Keiron

New member

Posts

Joined
Fri Oct 22, 2010 12:02 am
Location - Birmingham, West Midlands, Uk

Post by Cyrus » Thu Apr 11, 2013 6:21 pm

Hey,

Yes, you are right, in this year there wasn't any notable upgrade, because I'm working on my main site (artcorner) and I hope I can finish it within 1 or 2 weeks (new AC CMS version will come end of April).
I need your patience and I hope I don't disappoint you :)

Cyrus

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by keiron1992 » Thu Apr 11, 2013 6:32 pm

Awesome :) Looking forward to it Cyrus, don't forget to put your Paypal email up with it when you upload :)

Thanks,
Keiron

New member

Posts

Joined
Fri Oct 22, 2010 12:02 am
Location - Birmingham, West Midlands, Uk

Post by keiron1992 » Thu Apr 11, 2013 7:48 pm

How do I display all of the subcategories within a category?

For example if I had the parent category 'Reviews' and I had subcategories of that such as Microsoft Related Reviews, Andorid Related Reviews, etc etc.

New member

Posts

Joined
Fri Oct 22, 2010 12:02 am
Location - Birmingham, West Midlands, Uk

Post by Cyrus » Mon Apr 15, 2013 3:50 pm

You can't display more than one subcat / category (not enough space).
But if you want to display all level 1 subcategories (not only the active category's subcat) then do the following steps:
Find these lines in catalog\view\theme\shoppica2\template\module\ac_cms_category.tpl:

Code: Select all

<?php else: ?>
<a class="s_main_color" href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php endif; ?>
And paste it after this line:

Code: Select all

<a class="s_main_color" href="<?php echo $category['href']; ?>" class="active"><strong><?php echo $category['name']; ?></strong></a>

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am

Post by Cyrus » Fri Apr 26, 2013 12:11 am

Hey Guys!

AC CMS 2.2 is released!
--- v2.2 (04/25/2013) ---
- fixed bug that prevented to show sub-categories correctly if article display type was "Tab Category"
- comment pager now works properly
- added facebook comment system
- added disqus comment system
- shoppica2 theme mod updated and now compatible to AC CMS 2.2
- chameleon theme updated and now compatible to AC CMS 2.2
- minor bugs fixed

New member

Posts

Joined
Sun Apr 22, 2012 2:46 am
Who is online

Users browsing this forum: No registered users and 18 guests