afterdarkgrafx
Forum Replies Created
-
me too please
There were 2 stripe accounts created.
1 for the main account
then 1 for woocommerce paymentsDeleted one and used other.
Forum: Plugins
In reply to: [Woocommerce Custom Fields For Variation] Stopped WorkingI need this too please… afterdarkgrafx [at] gmail.com thank you
Unfortunately, unless you provide wp admin access there is no way to troubleshoot this.
Forum: Plugins
In reply to: [WC - APG SMS Notifications] To Number Twilio Not ValidI think I need to use another plugin…I will test out twilio’s direct plugin.
Forum: Plugins
In reply to: [WC - APG SMS Notifications] To Number Twilio Not ValidIf you read my message, you will see that I put it in as
619XXXXXXX
this does not have a prefix and still adding the number 2 to the front of the phone numbers. I went through your code on funciones-apg.php and the others and found where the + sign is added to the prefix and then I looked at proveedores.php to find this code
case “twilio”:
$argumentos[ ‘header’ ] = “Accept-Charset: utf-8\r\n”;
$argumentos[ ‘body’ ] = [
‘To’ => urlencode( $telefono ),I then found the country conversion phone numbers in funciones.php and could not find the “2” reference to a country.
And think there is something wrong with $telefono
Or is there some other setting that I am missing?
I setup twilio
I added SID
the token
the mobile phone from twilio as the fromPlease let me know what you think may be the issue.I also made sure the country of origin in WooCommerce is United States.
Thank you,
JamesForum: Plugins
In reply to: [WC - APG SMS Notifications] No sms for site ownerI am having this issue too… ( I removed my phone and replaced with XXXXXXX below)
The ‘To’ number 216197027377 is not a valid phone number.
I am entering it in the plugin as +1619XXXXXXX
I then put it in as 619XXXXXXX
I then tried 1619XXXXXXXI am in the U.S. and it appears the plugin is adding a “2” to the beginning of the phone number…how do I fix this?
<TwilioResponse><RestException>
21211
<Message>The ‘To’ number 21619XXXXXXX is not a valid phone number.</Message><MoreInfo>https://www.twilio.com/docs/errors/21211</MoreInfo><Status>400</Status></RestException></TwilioResponse>
[headers] => Requests_Response_Headers ObjectFirst –> BACKUP YOUR WEBSITE and DATABASE:
a) make sure that your stripe account is completed. sometimes, the review process takes time
b) check that the word TEST is not in your API keys and make sure that ENABLE TEST is deselected from within Woocommerce –> Settings —> Payment –> Stripe
c) make sure you are using the correct public key and token
d) use tools.pingdom.com to load your website. go to the checkout page and see what resource(s) are not loading.
e) deactivate other plugins in wordpress to see if it is a plugin
f) deactivate your theme and use a basic theme for woocommerce to see if it is your theme and test.
If you need help, contact me and I will take a look at your website.- This reply was modified 5 years, 9 months ago by afterdarkgrafx.
- This reply was modified 5 years, 9 months ago by afterdarkgrafx.
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] how to get full width?In the file mentioned above you will need to add media queries…
see this page: https://www.w3schools.com/css/css_rwd_mediaqueries.asp/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {…}/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {…}/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {…}/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {…}/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {…}Now for what you would use…
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {…}you would ADD the below code to the css file but you will want to TEST the min-width sizes on your devices until you are happy with the sizing.
@media only screen and (max-width: 600px) {
.dgwt-wcas-sf-wrapp {
min-width: 200px;
}
}
@media only screen and (min-width: 600px) {
.dgwt-wcas-sf-wrapp {
min-width: 350px;
}
}
@media only screen and (min-width: 768px) {
.dgwt-wcas-sf-wrapp {
min-width: 400px;
}
}Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Layout messed upyour wordpress theme css is conflicting with the css in the plugin.
a) trying installing a base theme like 2016
b) try the search results again and see if you get the same issueif you do, then there is something wrong with the css in the plugin.
otherwise, post your website here and I can look at it for you and attempt to help
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] how to get full width?for a fast fix…css…
in plugins/ajax-search-for-woocommerce/assests/css/styles.css
look for around line 615
.dgwt-wcas-sf-wrapp {
zoom: 1;
width: 100%;
margin: 0;
position: relative;
background: #444;
background: rgba(0,0,0,.2);
}and add:
min-width: 500px;
so it looks like this
.dgwt-wcas-sf-wrapp {
zoom: 1;
width: 100%;
margin: 0;
position: relative;
background: #444;
background: rgba(0,0,0,.2);
min-width: 500px;
}of course change the 500px to whatever you want. for mobile, you would need to create @media and screen sizes for this now since you are giving it an absolute value.
of course you will want to backup before making this change.
only do this if you do not plan on upgrading the plugin, otherwise an upgrade may overwrite this code.
It is better to put it into a custom.css file of your own and link to it.
Depending on your theme you could…in admin
go to: Appearance
——> Customize
———-> Additional CSSand place it there but sometimes this does not work. Dependent on theme.
Hope this helps.
Forum: Plugins
In reply to: [FiboSearch - Ajax Search for WooCommerce] Search SKU of Variable ProductsNot yet. I was going to try and edit the code but got sidetracked. I need it also to omit based on a selected tag… thoughts?
If apache, I would block ip directly via htaccess until you find a solution.