Search found 29 matches

by Pierre_P
Mon Jan 13, 2025 8:51 am
Forum: Community Help & Support
Topic: Row heading add admin catalog
Replies: 2
Views: 129

Re: Row heading add admin catalog

I was also about realizing there is as you say not yet one as i assumed there were one...
Javascript, let me see how i mess up

Thanks heather
by Pierre_P
Mon Jan 13, 2025 7:44 am
Forum: Community Help & Support
Topic: Row heading add admin catalog
Replies: 2
Views: 129

Row heading add admin catalog

I am trying to add a qty heading to products in admin example admin/catalog.php?cPath=1 after Status heading i want to put Qty to show how many is in stock for each product. I tried but not getting it to display. Also tried siteWide folder. This code i placed in folder hooks/admin/catalog/show_qty.p...
by Pierre_P
Tue Dec 31, 2024 11:23 am
Forum: Community Help & Support
Topic: Admin database restore
Replies: 3
Views: 622

Re: Admin database restore

Understandable the date is set to NOW() i suppose in the sql

This happens also in a new install.
Where to fix?
by Pierre_P
Tue Dec 31, 2024 7:21 am
Forum: Community Help & Support
Topic: Admin database restore
Replies: 3
Views: 622

Admin database restore

I am trying to restore a backup through my admin side but it's complaining and fatal errors. I did check the file paths to be correct. Tried on local test server and live server Phoenix v1.0.9.10 PHP 8.2 Fatal error: Uncaught mysqli_sql_exception: Invalid default value for 'date_added' in /--removed...
by Pierre_P
Mon Dec 09, 2024 1:05 pm
Forum: Community Help & Support
Topic: Showing date
Replies: 2
Views: 309

Re: Showing date

Thanks @burt
I need new looking glasses, i was staring at this.
Used D j M G:i and shows perfectly.
by Pierre_P
Mon Dec 09, 2024 7:52 am
Forum: Community Help & Support
Topic: Showing date
Replies: 2
Views: 309

Showing date

I created a pi module to show the customers when a special price will expire. Showing the expiry date is bit wrong - example the expiry date is set as 2024-12-30 23:59:59 as in the database, the result for the customers is showing Mon 09 Dec 09:12 (the 09 part as day) The code is <?= sprintf(PI_SPEC...
by Pierre_P
Thu Jun 20, 2024 10:49 am
Forum: Community Help & Support
Topic: Default images folder
Replies: 20
Views: 13617

Re: Default images folder

Rather than manufacturer we used category on our old site. I used to use category as well but have since switched to manufacturer and for my business that have been extremely helpful in recognizing old images and products we no longer carry. You can certainly do it by category but most of the produ...
by Pierre_P
Tue Jun 18, 2024 6:30 pm
Forum: Community Help & Support
Topic: Default images folder
Replies: 20
Views: 13617

Re: Default images folder

Also looking for a far simpler way to save images to like manufacturer folder or so. Perhaps like use manufacturer name prefix when editing or adding product image. When creating a manufacturer, also create images sub folder for the manufacturer. When editing a product give a simple dropdown selecti...
by Pierre_P
Thu Mar 07, 2024 4:46 am
Forum: Community Help & Support
Topic: Insert column into table displayed in admin/customers.php
Replies: 6
Views: 1096

Re: Insert column into table displayed in admin/customers.php

Maybe try order the column in customers page in this line change the 1 to your liking: array_splice($table_definition['columns'], 1, 0, [[ public function listen_constructPaginator($param) { global $table_definition; array_splice($table_definition['columns'], 1, 0, [[ 'name' => "Company", ...
by Pierre_P
Thu Feb 29, 2024 5:07 am
Forum: Community Help & Support
Topic: How to change website meta title and description?
Replies: 8
Views: 1134

Re: How to change website meta title and description?

You will need to edit the language file like includes/languages/english/index.php
Look for these two lines and change
define('META_SEO_TITLE', 'Index Page Title');
define('META_SEO_DESCRIPTION', 'This is the description of your site to be used in the META Description Element');