Show Posts


Messages - David Veganhauser

Pages: [1] 2 3
1
Opinions / Re: Thank you, and best wishes
« on: May 19, 2020, 08:04:29 AM »
Hi, thank you for taking the time to reply. While I will give feedback to your comments, please do not take them as attacks, they are simple questions following up with your comments. So if they sound direct, please understand they are only meant to get to the details rapidly.

I posted questions more than once about how to integrate paypal subscriptions into the cart system and no one replied. The purpose of a community is to help and share yes? I was under water and not able to find answers anywhere. I have a lot of stress and I need something to go easy in my life.

Second, to clarify, I was a developer for many, many years, and then I stopped doing it professionally when I got into IT Management. But yet, I still did projects and work on the side, admitting i have not kept up with the latest in everything due to a simple lack of time. If you have a magical way of adding 10 hours to each of my days I would be happy to dig in deeper. But, this could just be a claim and I know very little about development if anything at all. Really, times change and maybe I did not change enough with those times.

If you created your own api interface that integrates paypal subs in with normal paypal, please, make it a plugin, I will come back and I will use it. In fact, I will be your first customer. I only got it to work with implementing a direct call to the subscription checkout on Paypal from where I was having the user make the selections. Futher, what I read on the PayPal developer integration side was that a subscription submission does not integrate with Billing Agreements, but maybe I have read it wrong? See the section "Integration features"
https://developer.paypal.com/docs/subscriptions/#integration-features

Further, are you saying that you can integrate subscriptions with other products during checkout, including having that data integrate within the abantecart framework and data storage? Were you also able to remove a subscription at a users request by looking up their shopping history and giving this option?

You are right about WordPress, I know, but what other options did I have?

And finally, about money. I think I mentioned in my post I understood clearly about AbanteCart being free and that always comes at a cost to someone.  I never expect things for free in life, and while I cannot spend a fortune I also would pay a little. I did make a donation to AbanteCart once I got into the forum and saw I got an answer. But, charging $60 an hour for help is too much for me, which is what I saw listed here http://managed.abantecart.com/. I am an unemployed broke guy, just trying to set up a small business online to hopefully generate a couple of hundred dollars a month if I am lucky.   

I look forward to hearing back from you and who knows, maybe your sub. solution is something I can integrate into a solution within Abantecart


2
Opinions / Thank you, and best wishes
« on: May 17, 2020, 06:31:04 AM »
It is with a heavy heart I have decided to uninstall abantecart and go with wordpress. My personal reasons are:
1. When you build something for the better good of the public, and you do not charge, you become overwhelmed and it consumes your life. I believe AC has done a beautiful job building this framework and I think in the future it will grow more.

2. I am just one person. I closed my bakery a couple of months ago for good and now I am trying to start a new business online as passive income. I have a developer background and understand development pretty well, but I found I needed to do too many customized hacks in the core code in order to get close to what I wanted. This should not be necessary under most circumstances. I think this is just where AC needs more time to grow and evolve, maybe with some extra people who want to donate their time to the framework development. I, like many people asked questions but didn't get much support and help. Again, this is not a slight on the team, I understand the limitations to help people. But I will say, I saw some questions I had unanswered from years ago.

3. The final point was yesterday when I had to implement a separate checkout directly with PayPal for subscriptions. That is to say, it could not be integrated with the shopping cart, which changes the user experience.

Anyway, my issues are my issues, and certainly not yours. I think you have done a great job and you offer many great additions to help many people build sites the way they need to. So I hope you have not taken my words negatively.

Best wishes and stay safe

3
General Support / Re: Subscriptions
« on: May 15, 2020, 03:58:20 AM »
Did you solve this? I am looking for the same solution

4
General Support / How to remove product zoom
« on: May 14, 2020, 05:03:43 AM »
Hello, I found an old thread here about removing the zoom feature for a product but the link was broken.

I do not want to complicate things, I just do not have a need for the zoom and would like it completely removed.

Can someone please offer an easily implemented solution?

Thanks in advance

5
General Support / Re: Cache
« on: May 11, 2020, 03:38:10 PM »
Problem solved

Dashboard > System > Cache

Clear cache

6
Tips and Tricks / Customize your menu
« on: May 11, 2020, 09:00:23 AM »
As difficult as it has been, I finally found a way to customize the menu. Programming is not hard, its understanding the framework that is the problem.

Instead of showing a category product, I wanted to create a single product that is custom. When clicking on the menu, I did not want a list of products to show up for this one item, just simple that customized product.

------------------------
WARNING: It is a hack. you should backup everything. If you do not know anything about HTML, etc. just do not do it. Once you write overtop the default files, there is no going back without a backup. :)

Note: I am doing this using the Parker Theme, so you wuold need to find the appropriate code for your theme, or the default. I have checked and the code is exactly the same, and located in the blocks folder

Note: this hack works for me because I have no subcategories to my custom menu item. That is to say, if you want a toplevel menu option without subcategories, this works. If you want the subcategories, you just need to add the code that is shown in the nested loop above to match that menu item you added. (no example provided since I did not need it, lo siento!) This would not be hard to do for your customized item.

and for the record, I do this under protest (I say that jokingly) but really there should be some flexibility with menu options, not just carts.

I do not take responsibility for this not working for you. I am just a guy trying to get my small website working so I can start my online business.

You HAVE been warned
------------------------
Custom Menu Hack Implementation

Step 1: turn off cache/and clear cache in order for your changes to be updated
   1.1   Dashboard > System > Settings > System
      Cache Enabled: Off
   1.2   Clear Cache
      Dashboard > System > Cache
      Select files to clear cache and click Clear Selected Cache Button

Step 2: add a product and get the url for that product. This product will be the placeholder for your custom menu item.
Ex: https://ifinallysolvedthemenuissue.com/index.php?rt=product/product&path=74&product_id=142


Step 3: Edit the following file, located in the blocks folder

category_top.tpl

You will notice there are two nested loops, first showing the category, then, attaching any subcategories to that category). At the bottom of the file you will find the following lines of code:

       </ul>
    </nav>
</section>

just above the closing of the unordered list " </ul>" is where you would add your custom menu item

something like this:
   <li><a href="https://ifinallysolvedthemenuissue.com/index.php?rt=product/product&path=74&product_id=142">New Menu Item 01</a></li>
   <li><a href="https://ifinallysolvedthemenuissue.com/index.php?rt=product/product&path=74&product_id=143">New Menu Item 02</a></li>

Save your changes and ftp them to your site.

UPDATE:
--------------
If you want to highlight your currently created custom menus, here is another hack to add some code at the top to challenge which "category" you are using. Since my two categories do not exist I am just using their product ID's. This means, of course, they could never be deleted or used for something different, unless updating the code is what you would like. Really, if I had the time I would store this as data in a field associated with the product to automate it more, but I just need this to work for now. I do not have the time to devote to a full solution.

Starting near the top you will see this:
          <?php if ($categories) { ?>
             <?php

I added two string variables to hold the "current" style if it is passed, along with a boolean. If the product ID is one of these two, it will not be possible to be the other categories due to these products are not associated with those categories. I hope that makes sense.

I also want to point out, my implementation is not efficient code, but because I will not have sub categories and only a few in total, I saw no need to worry about this. I could have of course, but I am a bit lazy I admit :)

               $category124 =  '';
               $category125 =  '';
               $daveCustomCat = false;
               if ($_GET['product_id'] == "142") {
                  $category124 =  ' class="current" ';
                  $daveCustomCat = true;
               }elseif ($_GET['product_id'] == "143") {
                  $category125 =  ' class="current" ';
                  $daveCustomCat = true;
               }
            
               foreach ($categories as $category) {
                   if ($category['current']) {
                     if ($daveCustomCat===false){
                        $category['current'] = ' class="current" ';
                     }
                  } ?>


then where you added the two new <li> items you just add their respective variable
   <li <?php echo $category142 ?>"><a href="index.php?rt=product/product&path=74&product_id=142">New Menu Item 01</a></li>
   <li <?php echo $category143 ?>"><a href="index.php?rt=product/product&path=74&product_id=143">New Menu Item 02</a></li>




7
This worked perfect, thank you for this tip

8
General Support / Re: Adding user comments to About Page
« on: May 10, 2020, 10:15:53 AM »
Hi, I did, and after your email to me, I am going to repurchase it again as I did manage to make it work. I am sorry for the pay-refund-repay

9
General Support / Re: Menu Options
« on: May 10, 2020, 10:15:07 AM »
Hi, thanks

https://itsapostcard.com/

I use the Parker Theme template.

The idea is I have a list of products from the first menu option, and two different input forms for the next two links

10
General Support / Re: Cache
« on: May 10, 2020, 09:15:45 AM »
Hi, sorry for a stupid follow up question, but why would I need to reboot my PC?

I am not running this locally (thought that might be a bit faster). My site is not "live" so I am making my edit/updates/designing while it is in the shared environment with my hosting service.

11
General Support / Cache
« on: May 10, 2020, 04:13:28 AM »
Hi, I have disabled the cache through the concole, as I saw was recommended in another post. I have also cleared the browser cache as I found the style.css file wasn't updated until I did just that.

Subsequently, I have made a couple of .tpl edits, but they still do not show up.

Any ideas?

In short I am trying to modify the categories so I can add those custom links I asked about before.

12
General Support / Adding user comments to About Page
« on: May 08, 2020, 09:34:19 AM »
I would to allow for comments on my About Us page. Is this possible? I purchased the extension DISQUS as it seemed to be what would work, but now I think it is either overkill, or not possible to put on one specific page.

Thanks in advance


13
General Support / Menu Options
« on: May 08, 2020, 06:12:14 AM »
Hi, I am going to ask my question again differently. I have been trying to solve this for two days and its beating me down. I really can use help. I cannot imagine no one has come across this before and found a way to solve it.

My menu, currenlty lists the categoris I create, but those categories are directly related to products (of course).  The first item in my menu is a product list, but the second two are forms, no data.

At first, I thought I could create a sample product for each of those two categories, but then it looked just like the product page, which does not work for me. I do not want a cart option, I do not want product sort, etc. I just want to put a form here.

Is it possible to have a category go directly to a product? I think if I can do that then it will work. It is a hack, but as long as its smooth for the user I am fine with it.

Also, please if you can help me, please tell me how the solution could impact bread crumbs.

PLEASE.. I am willing to trade a bag of beans, and even one of my cats for an answer.

Thanks
Dave

14
Thanks for your reply.

Well, I am not sure. My horizontal menu at the top is my category list. So, it naturally seemed like the right thing to do for me to just add another category there and then add the fields I wanted.

My question is, how would I get a "page" to show up horizontally next to the categories if I were adding a page? A page seems to be the right way to go, but I want it naturally integrated in the navigation menu

15
General Support / Re: Update all products at once
« on: May 07, 2020, 11:53:02 AM »
I am using the Parker Theme extension and in the product edit I add the field there in the "options" tab.

Can you give me a hint with the export import? I did this once to try and add all my products. There were so many fields that I messed up everything and wound up adding them one by one

Pages: [1] 2 3

Powered by SMFPacks Social Login Mod