spyrosg
Forum Replies Created
-
Thank you for your time. I have tried to find the strings with the search but they arent there. Here is what I mean https://ibb.co/gdT6hpw. Any hacks around this?
Forum: Plugins
In reply to: [Polylang] stripe pop-upForum: Plugins
In reply to: [Modula Image Gallery] Can’t close image on mobileI mark this as resolved as I forgot I had inserted some custom css influencing like that the mobile version as well.
Hello I Have exact the same problem i get #!trpst#trp-gettext data-trpgettextoriginal=764#!trpen#Home#!trpst#/trp-gettext#!trpen# this in many places around the website .Also when i try to translate a page it doesbt work.i Get a white page
saving twice the permalinks as you usually suggest fixed the problem.
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] product-category 404 page/product-category/premium-offers/ its in the default language english and when i press the italian flag /it/categoria-prodotto/premium-offers/ I have a widget on my shop page with the product categories.
This only happens when i am in the shop page i press a specific category on the widget and after i change language into italian clicking on the flag.Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] product-category 404 pageThanks for your answer.My site is still on local so i cant send you a link.I did what you suggested but still the permalink “product-category” gets translated leading to a 404 page.
On Settings -> Permalinks shall i save it as default?Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] DatepickerIs there any support in this plugin???
Forum: Plugins
In reply to: [WooCommerce Braintree Payment Gateway] Break the checkout pageSounds fair.Thanks for your time
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Plugin not visible in frontendHello again.Well i did create a sandbox account with braintree and with my current theme it does show a little bit in the checkout frontend.A little bit meaning there is no vertical scroll in the page css is all messed up and when you click on the credit card you don’t get anything.I changed to default theme and seems to work fine so i guess there is a conflict with my current theme.Maybe you have any suggestions on how to solve this?Thank you so much for your time.
Forum: Plugins
In reply to: [WooCommerce Braintree Payment Gateway] Break the checkout pageThank you for your answer.It does work when i change themes to twenty Seventeen.Maybe you have any idea why my theme makes a conflict or where to look at?Thanks again
Forum: Plugins
In reply to: [Easy Booking for WooCommerce] Problem when selecting dateYeap that fixed it.Thanks a lot for your time ?? Another question since you are here is can i implement this plugin with another one called request a quote in a way that there is a calendar in its form?Thank you in advance
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Plugin not visible in frontendHey there,thanks for your answer.I havent enabled the Merchant ID at all or even made an account with braintree so maybe that would be it.I just wanted to see how it looks first on my checkout and work on the css a little bit.I will do it and come back at you if there is still a problem.I will update the status as resolved and if the problem insists i will create a new one.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Strange changeHere is the solution for anyone that is struggling to get your icons back in colour add the following code in your functions
add_filter( 'wc_stripe_payment_icons', 'change_my_icons' ); function change_my_icons( $icons ) { // var_dump( $icons ); to show all possible icons to change. $icons['visa'] = '<img src="https://www.example.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png" />'; $icons['mastercard'] = '<img src="www.example.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png" />'; return $icons; }
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Strange changeHere is the solution for anyone that is struggling to get your icons back in colour add the following code in your functions
`add_filter( ‘wc_stripe_payment_icons’, ‘change_my_icons’ );
function change_my_icons( $icons ) {
// var_dump( $icons ); to show all possible icons to change.
$icons[‘visa’] = ‘‘;
$icons[‘mastercard’] = ‘‘;
return $icons;
}