

cDGo IT Consultancy
Members-
Content count
130 -
Joined
-
Last visited
Profile Information
-
Real Name
Domé Giuliano
-
Gender
Male
-
Location
The Netherlands Almere
-
Interests
Building great osCommerce shops for customers.
- Website
-
-
Purchase without account for 2.3.4 and BS2334
cDGo IT Consultancy replied to ArtcoInc's topic in General Add-Ons Support
Please do not use forbiden characters in folder names like "Phoenix 1.0.7.9.+". The plus prevents windows from deleting the folder. -
Yes, it is so maybe I can picth in?
- 17 replies
-
- option types
- attributes input field
-
(and 2 more)
Tagged with:
-
cDGo IT Consultancy started following [Addon] Product Sort Within Category, Option Types BS, php 7.2 - updating CE and and 3 others
-
Hi Lee, I'm trying to get the same done here. Did you made any progress? Domé
- 17 replies
-
- option types
- attributes input field
-
(and 2 more)
Tagged with:
-
-
Mailchimp newsletter Everywhere add on
cDGo IT Consultancy replied to ecommunlimited's topic in General Add-Ons Support
This is just a simplified version, but install the plugin as supposed and than add this: After: if (isset($_POST['action']) && ($_POST['action'] == 'process') && isset($_POST['formid']) && ($_POST['formid'] == $sessiontoken)) { $process = true; Add: if (MODULE_FOOTER_MAILCHIMP_STATUS == 'True' && isset($_POST['newsletter']) && $_POST['newsletter'] == 1) { include('ext/api/mailchimp_v3/MailChimp.php'); $key = [your api key]; $list_id = [your email list id]; $array = array('email_address' => $_POST['email_address'], 'merge_fields' => array('FNAME' => $_POST['firstname'], 'LNAME' => $_POST['lastname']), 'status' => 'subscribed'); $MailChimp = new MailChimp($key); $result = $MailChimp->post('/lists/' . $list_id . '/members', $array); } Replace [your api key] with your api key like '123456789' [your email list id] with your email list id like '98765' -
-
This is a nice addon, thank you for sharing. The SEO section isn't divided into the languages, all fields for both Dutch and English (in my situation) are on the same page. Fix: Find: <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { echo '<li><a href="' . substr(tep_href_link('categories.php', tep_get_all_get_params()), strlen($base_url)) . '#section_general_content_' . $languages[$i]['directory'] . '">' . $languages[$i]['name'] . '</a></li>'; } ?> and replace the word section_general_content for section_seo_content. So it will read like this: echo '<li><a href="' . substr(tep_href_link('categories.php', tep_get_all_get_params()), strlen($base_url)) . '#section_seo_content_' . $languages[$i]['directory'] . '">' . $languages[$i]['name'] . '</a></li>';
- 15 replies
-
- admin
- categories
-
(and 1 more)
Tagged with:
-
AJAX Attribute Manager support
cDGo IT Consultancy replied to Nimmit's topic in General Add-Ons Support
After stripping down everything, but this attribute form, it now shows the index.php/dashboard. So it must be in this contribution it self where there's a capture of the data. -
AJAX Attribute Manager support
cDGo IT Consultancy replied to Nimmit's topic in General Add-Ons Support
Hi Raiwa, Thanks for the update. I Always used this contribution in my 2.2 shops, but in the 2.3.4BS version, it shows me the full admin page including menubar of the edited product instead of the attribut set form. Just to rule out influence of other contributions, I've also tested it with the basic (clean) 2.3.4BS version of categories.php which just gives the same issue. Any ideas? -
ULTIMATE Seo Urls 5 - by FWR Media
cDGo IT Consultancy replied to FWR Media's topic in General Add-Ons Support
Maybe it's been asked before, but reading through 175 pages is just a bit too time consuming. I found this issue when using product options. when I got an url like product_info.php?products_id=13{1}11 it will not be rewriten to the products friendly name/url nor will it preselect the chosen options in the products options list. Anyone have a suggestion why at least the friendly name wasn't used? BTW: If you remove the options part, it will rewrite the url to the friendly name, but ofcourse will noet pre selct the options value -
[Addon] Product Sort Within Category
cDGo IT Consultancy replied to BrockleyJohn's topic in General Add-Ons Support
Not sure why I can't add this to the Original addon, but just a little adaption for PHP 7.2 and Dutch language files oscom-product-sort-within-category-bs-php72.zip -
Mailchimp newsletter Everywhere add on
cDGo IT Consultancy replied to ecommunlimited's topic in General Add-Ons Support
Allready did that, but just wondering why it wasn't done in the addon it self. -
Mailchimp newsletter Everywhere add on
cDGo IT Consultancy replied to ecommunlimited's topic in General Add-Ons Support
Hi, Just out of curiosity..... Why not integrate mailchimp API in the create_account.php? Why would you have your anonymus visitors on mailchimp, and registered customers in osCommerce? -
cDGo IT Consultancy started following Kirod
-
Kirod started following cDGo IT Consultancy
-
babymand started following cDGo IT Consultancy
-
Administration Access Level Accounts 2.0 need help
cDGo IT Consultancy replied to vivaxone's topic in General Add-Ons Support
Is there a way to add files outside of the admin root? I've added AJAX Attribute Manager (#4063) but all files are in their own (sub)folder. Or should I enter all sperate files in the database? -
Lildog, You're right, that's just what I meant. I've got over 150 contribs running in my shops. So eager to help you with testing!!!!!!!!!!!!!!!!!!!!! :lol: :thumbsup:
-
Hi lilboy, Thanks for replying. The thing is that I'm talking about contribs from the past. Lets say in contrib installed last in 2005 and has an update in 2006. What I now understand is that your contrib only works for updates that are now spread thrue the rss feeds. As the update of 2006 won't be spread through the rss feed, your contrib will not alert me for that update.
-
Hi lildog, Will it work for older contributions to? I installed the contribution and added a contribution, I'm using, which I know has a newer version. But yr contribution, doesn't seem to "see it". Or does it only recognize new aditions when there are updated afteryr contribution is installed, and the contribution is scheduled to run each day with a cron job? A bit more information how it works would be great.....