shprung
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Shopping Cart] ‘Cart Orders’ featureWhile on the subject, I was wondering if the plugin have hidden configuration option or future development for the “Cart Orders” – in particular the ability to search better.
at the moment it uses something very similar to the user admin interface so it show the id,name,email and amount but not the item purchase; you can’t search for items-description or even the amount (nor the email or the name… only the order id). For me, this render the search option useless and I wish for a bit more flexibility
yet, I Love this plug in! thanks.works! thanks.
thanks for the info. I am just the techi so I can’t force the people in this group to remove the pinned post… so this option is N/A for me 🙁
In my post above, I did show that even when I am using my access token, it fail.
1395552834077531|77972c74442d93e3b6effae6358cce8dwhile setup as admin, I didn’t created this group so can it be that my token is not directly associated with that group (even that I am an admin for it)?
If you enter a wrong tokem, the error is “Invalid OAuth access token signature.” but if you use a good one (my or yours) it reply with “An unknown error has occurred.”
Any idea on this front of generating new token key that may work?same problem here. used to work, then stopped. using the FB api to test, I can see that it fail in the ‘source’: I tried with two tokens
https://graph.facebook.com/430474520355231/feed?access_token=1395552834077531|8nJQfbZNZsqbZu-s9lR_qvtHkpw
https://graph.facebook.com/430474520355231/feed?access_token=467374583353505|MQRKCHr9slOmHSo313teG03qipE
both fail with : “An unknown error has occurred.”
the group I am (trying to) access: https://www.facebook.com/groups/SanFernandoValleyBicycleClub/ it got a pinned post. I have admin on this group and don’t know what to try to change (if anything). the same URL to FB with a different page (btw, this is a page not not a group) do work, example:
https://graph.facebook.com/1044684122233118/feed?access_token=1395552834077531|8nJQfbZNZsqbZu-s9lR_qvtHkpw
so it is something with this a group (or this specific group).
What should I try?Yup, I saw the code and worked on it in the weekend. The problem was that my new server didn’t have lib-GD and the code didn’t have any alerts/warnning to let me know (I switch WP to debug mode and still saw nothing). It took some time, but I resolve the issue. Thanks bradvin.
Forum: Fixing WordPress
In reply to: media-lib 'Edit Image'- image is broken; probably PHP missing pkgIn my case, like I suspected it was the missing GD lib. After installation; ie
# yum list installed | grep php-gd
php-gd.x86_64 5.4.16-36.el7_1 @base
I can see the image when in ‘Edit Image’ just fine.thanks for the fast reply. I tried different sized; nothing work.it may be true that it can’t find it therefor it uses the full size image. As a developer with full access to my server, maybe you can direct me to the line # in a specific function and I can add some debug of “if (file_exists())” to see what is failing ; maybe some directory in the path is not executable by all and therefore it can’t find it?!
Forum: Plugins
In reply to: [Simple Shopping Cart] one item, multiple price pointsHere is a case I don’t know how to setup:
I am selling tickets to a dinner. The option I want to ask is “How many tickets?” (in other word, attendees, or how many people coming?)
I thought somehow to use the var1: like var1=”Tickets|1-$20|2-$40|3-$60|4-$80″
but how can I actually do that? variable price, or number of items
I know that in the cart view, you do offer quantity but can I initially ask for it in the “Add to Cart” area?Forum: Plugins
In reply to: [Insert Pages] Does not work after update at allcan it be that it is only me??
after the upgrade/update; it crash my system; furthermore, here is the output from php -l :
[insert-pages]$ php -l insert-pages.php
PHP Parse error: syntax error, unexpected T_FUNCTION in insert-pages.php on line 769
Errors parsing insert-pages.php
the code look more like javascript than PHP – with the anonymus function:
add_action( ‘widgets_init’, function () { return register_widget( ‘InsertPagesWidget’ ); } );
maybe my php version is not up to your standards?
I resolve the problem by changing this line of code to:
add_action( ‘widgets_init’, ‘ip_rw’ ); function ip_rw() { return register_widget( ‘InsertPagesWidget’ ); }
Now everything is working fine again.Paul, same here: 3.01 behave the same like 3.00 – not working. Rolled back to 2.91 and it works.
As a test, I deactivated all my (2 only) other plugins too, and it still didn’t work. I am using wp-4.4 with the latest install defaults (theme is Twenty Sixteen 1.0)Forum: Plugins
In reply to: [Insert Pages] Does not work after update at allsame here. I roll back (uninstall; download the 2.91, and install) and it works just fine. I am using 4.4.
after upgrade, it simply didn’t work. I tried few simple content includes and it simply did nothing. I even set WP_DEBUG to true and saw no warning/errors?!
in 2.91 with debug, I do get this one:
Notice: Undefined index: extra_classes in /home/jail/home/webmaster/shprung.com/htdocs/sfvbc/v2/wp-content/plugins/insert-pages/insert-pages.php on line 301
but as long as it works, I don’t care… will hold off upgrading until a reply. BTW, a wonderful plugin!