Search found 1619 matches

by DIGI3
Wed Aug 15, 2018 3:51 pm
Forum: Modules/Add-Ons
Topic: Zero missing from Products price
Replies: 8
Views: 1795

Re: Zero missing from Products price

You should have a template called 'Products List View Busca', otherwise you'd most likely be getting an error. Check that you don't have any filtering on in the Templates list, and that it isn't on another page if you have lots of templates.
by DIGI3
Wed Aug 15, 2018 2:23 pm
Forum: Modules/Add-Ons
Topic: Zero missing from Products price
Replies: 8
Views: 1795

Re: Zero missing from Products price

You shouldn't have to edit any files, it would all be in templates. For example, you may have a Cart2::View Cart Form. I just checked mine on a site and have this for displaying the total price:

Code: Select all

{$currencysymbol}{$oneitem->unit_price|as_num:2}
So there's one more method to do it.
by DIGI3
Tue Aug 14, 2018 6:50 pm
Forum: Modules/Add-Ons
Topic: Zero missing from Products price
Replies: 8
Views: 1795

Re: Zero missing from Products price

I'm not sure if Products has anything specific for this, but you could use something like {$price|string_format:"%.2f"} or {$price|number_format:2}
by DIGI3
Tue Aug 14, 2018 2:23 pm
Forum: Modules/Add-Ons
Topic: Installing CGBetterForms 1.6.1 - Template of same name
Replies: 1
Views: 759

Re: Installing CGBetterForms 1.6.1 - Template of same name

It's a bug in the latest version: http://dev.cmsmadesimple.org/bug/view/11868

The workaround is to install the older version, then you can upgrade to the latest.
by DIGI3
Mon Aug 13, 2018 10:22 pm
Forum: CMSMS Core
Topic: 2.2.8 update returns a blank page
Replies: 6
Views: 2594

Re: 2.2.8 update returns a blank page

Try disabling opcache.
by DIGI3
Sun Aug 12, 2018 9:16 pm
Forum: CMSMS Core
Topic: 2.2.8 update returns a blank page
Replies: 6
Views: 2594

Re: 2.2.8 update returns a blank page

Looks like maybe the phar extension isn't enabled. Have you tried the expanded installer?
by DIGI3
Sun Aug 12, 2018 3:50 pm
Forum: CMSMS Core
Topic: Line 110, Column 177: there is no attribute "placeholder"
Replies: 4
Views: 2021

Re: Line 110, Column 177: there is no attribute "placeholder

Not really what I'm suggesting, no. You could either remove the placeholder parameter from the search form, or you could update your page template(s) to be html5.
by DIGI3
Sun Aug 12, 2018 12:59 am
Forum: CMSMS Core
Topic: Line 110, Column 177: there is no attribute "placeholder"
Replies: 4
Views: 2021

Re: Line 110, Column 177: there is no attribute "placeholder

It comes from the Search Form template (whichever is the default for your Design). Placeholder is a valid html5 attribute, the Left Simple design is very outdated so probably is using an older doctype. You may want to look at updating your page template(s) to html5 rather than removing the placehold...
by DIGI3
Thu Aug 09, 2018 9:22 pm
Forum: Modules/Add-Ons
Topic: FEU Self Registration Whitelist Security Setting
Replies: 7
Views: 2395

Re: FEU Self Registration Whitelist Security Setting

I haven't tried it, but do you have the Enable Whitelist dropdown set to 'Only allow matched username/emails to register' ?
If so, check the admin log and php error log, it's possible something isn't working properly, but it's good to have all of the information before you file a bug report.
by DIGI3
Sat Aug 04, 2018 6:05 pm
Forum: Modules/Add-Ons
Topic: CGBetterForms / Captcha - recapture div
Replies: 4
Views: 1757

Re: CGBetterForms / Captcha - recapture div

Might have to get creative with redrawing the captcha after the data-attribute is added, but it's a starting point anyway. If you did want to try the module_custom template method again, make sure you clear the cache after. Also, if it doesn't work in assets/module_custom/captcha/templates/, try jus...
by DIGI3
Sat Aug 04, 2018 5:06 pm
Forum: Modules/Add-Ons
Topic: CGBetterForms / Captcha - recapture div
Replies: 4
Views: 1757

Re: CGBetterForms / Captcha - recapture div

Probably would need an option added to the Captcha module, which you may be able to have added by filing a feature request.

A workaround may be to just add it via jQuery:

Code: Select all

$('.g-recaptcha').attr('data-size', 'compact');
(not tested)
by DIGI3
Fri Aug 03, 2018 9:28 pm
Forum: CMSMS Core
Topic: UDT: Get Level Two Title
Replies: 5
Views: 1903

Re: UDT: Get Level Two Title

(cgsimple::get_parent_alias()) gets the parent of the current page. There's also a function for getting the root alias, it's in the CGSS docs. You can stack them if you're looking for the grandparent, great-grandparent, etc. e.g. (cgsimple::get_parent_alias((cgsimple::get_parent_alias()))) should ge...
by DIGI3
Fri Aug 03, 2018 3:44 pm
Forum: General Discussion
Topic: CMSMS update from 1.x to 2.x
Replies: 2
Views: 2253

Re: CMSMS update from 1.x to 2.x

We would need to know more about the issue before we can issue a blanket statement. Error logs, steps to recreate, modules used, server environment, etc. I've upgraded a lot of 1.12.2 sites to 2.2.7, but haven't tried 2.2.8 yet so if it's specific to 2.2.8 we'll need to narrow that down.
by DIGI3
Fri Aug 03, 2018 3:12 pm
Forum: General Discussion
Topic: CMSMS Installer needs PHP 7.0+
Replies: 1
Views: 1747

Re: CMSMS Installer needs PHP 7.0+

The installer doesn't (yet) require PHP 7, but you probably just worked around a bug in some versions of PHP that was fixed in 7.x.

You may find that the expanded installer will work for you in 5.6.

That said, 7.x is the way to go if you can :)
by DIGI3
Fri Aug 03, 2018 2:56 pm
Forum: CMSMS Core
Topic: UDT: Get Level Two Title
Replies: 5
Views: 1903

Re: UDT: Get Level Two Title

CGSimpleSmarty has functions for that, something like:

Code: Select all

{cgsimple::get_page_title(cgsimple::get_parent_alias())}
Should work.

Go to advanced search