andy3000
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Share Icons & Social Share Buttons] different version with shortcodeSorry it is blocked for out of U.S. due to both regulations and hacking attempts. Here are images of the top icons and bottom ones.
https://drive.google.com/file/d/1XU52wM3PvgqDxiZZUvkE-f4yB4-B0lJF/view?usp=sharinghttps://drive.google.com/file/d/1fgB7BhqHJPXvskDPDp0c4o0r6YJyYGHM/view?usp=sharing
- This reply was modified 4 years, 7 months ago by andy3000.
Forum: Fixing WordPress
In reply to: adding drafte folderThanks 2 great ideas. Looking into the 2nd.
Forum: Plugins
In reply to: [WooCommerce] changing all Enable stock management at product levelI did something similar using _manage_stock yes|no
for skus whose parent =0
This time I made sure that I also deleted the stock number from the parents in the csv and it seemed to work better. Every one I checked was correct.However when I did the next stock import I changed all instock (from inventory list) ones to a higher number and all out of stock to a lower negative number which should force the in/out of stock ones to update. They all had the correct positive values after the import and the others showed as 0. However there were a number that had positive values that show as out of stock. If I change them manually they update but they don’t seem to if I import the stock quantities. ( In other words -items after the last import showed the positive stock number that I used for all of them yet still showed out of stock.
Forum: Plugins
In reply to: [WooCommerce] Variable product “Out of Stock”Make sure that the ‘manage stock on product level’ box is unchecked (top of inventory tab). (you want it managing at the variations level).
Now change the stock amounts for the variations (any number larger than the low stock setting and larger than 0). The instock updates when the stock quantity is changed.Recheck display.
If needed you can now change the stock quantities back to the correct amounts.If your pricing is that complicated, you should be doing it in a spreadsheet and then importing the changes.
Also consider building more products and less variations per product.
example- The first site eCommerce site I made I did backwards- I used the sizes for an art store as products and the images as variations. When I multiplied the 50 images by 6 colors I had 300 variations per product and a site that would not work- make sure you are not doing something like that. I don’t believe the plugin you mentioned needs a dedicated server but you probably need a very good shared host where you can raise PHP memory to 250MB or 500MB. If your hosting is telling you that, you may not have a good host.Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] display issues with templateThanks when I edited the image there it worked. 2nd header image disappeared when I unchecked that box.
One more question:I have the subject set as
Hey {{customer.firstname}}!! You etc.
Test emails read Hey John- I’m assuming that is only the test email.Forum: Developing with WordPress
In reply to: need to edit wp_optionsAbbolebbass was correct . I went through the options one more time and found a text field that had been collapsed.
What I can’t understand is when I attempted to modify that line in the db it blew all the customizations out and would only allow me to repaste the text I just removed (no changes). If it was protected you’d think it would have just not allowed a change at all.Forum: Developing with WordPress
In reply to: need to edit wp_optionsThanks, the option is stored in an array as s:1544:”products etc (long list of css changes). so I would just add:
get_option(s:1544);
update_option(s:1544,’new css’);
`
to the theme’s functions.php?
or do I have to enter everything in that array?Forum: Plugins
In reply to: [YITH WooCommerce Subscription] wrong decimals number for paypalWas this issue ever fixed?
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Recurring payment doesnt workIf you read his post you will see that he also tested without being in sandbox mode- so that is probably not the issue.
I am having the exact same problem. Single payment purchases go through so again probably not the sandbox being too busy but subscriptions fail with the above error.Forum: Plugins
In reply to: [Contact Form 7] how to have placeholder text dissappear on focusThank you!
For readers- I had added an = sign
placeholder=”First Name”
as soon as I removed it, the placeholder behaved properly!Forum: Developing with WordPress
In reply to: Added menu displaying ALL top level but that setting is offThanks to both of you. Yes I did fix this. Once I read bcworkz’s post I added the code for the new location in the child-theme functions.php
Sorry fighting a cold and collapsed before I could reply.Forum: Developing with WordPress
In reply to: Added menu displaying ALL top level but that setting is offNo, the only two locations available in the options were the top position where I have another menu and a social media menu which would need too many css changes, so I just added that menu there directly by adding it to the template.
Forum: Fixing WordPress
In reply to: writing option re automatic tag nesting missingJust moved
add_shortcode( 'my_shortcode', 'igy64326_function' );
below the function and it worked right out of the box!Forum: Fixing WordPress
In reply to: writing option re automatic tag nesting missingThanks a bunch. I’ll platy around with that.