Exoskeletor
Forum Replies Created
-
if i made them with WPBakery Page Builder? i still have to remade them ?
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Don’t work.
- This reply was modified 1 month, 2 weeks ago by Exoskeletor.
- This reply was modified 1 month, 2 weeks ago by Exoskeletor.
Forum: Plugins
In reply to: [Piraeus Bank WooCommerce Payment Gateway] Πολυγλωσσικο σαιτ με polylangΠρο? το παρ?ν εγω ?βαλα τον σειριακ? χειροκ?νητα στον κ?δικα. Ευχαριστ?
Hello again,
No I have not set to thumbnail link. I have set to custom url here is an image with the leasons gallery settings
https://ibb.co/P9G6kJR- This reply was modified 3 years, 5 months ago by Exoskeletor.
Τ?λεια, ευχαριστ?
Ηταν ενα εικονιδιο στου? ορου? χρηση? που ειχε κωδικα frame και το εκανε αυτο, οποτε ολα καλα
Forum: Plugins
In reply to: [Trust.Reviews] Make the plugin translatableAlso for the greek language ( WordPress local string is:el), the strings:
Facebook Rating
See all reviews
read more
Next Reviews
Write a review
Based on %s reviewsjust now
a minute ago
%s minutes ago
a hour ago
%s hours ago
a day ago
%s days ago
a month ago
%s months ago
a year ago
%s years agoare translated to
Αξιολ?γηση στο Facebook
Δε?τε ?λε? τι? κριτικ??
Διαβ?στε περισσ?τερα
Επ?μενε? κριτικ??
Γρ?ψτε μια κριτικ?
Με β?ση %s κριτικ??μ?λι? τ?ρα
πριν απ? ?να λεπτ?
Πριν απ? %s λεπτ?
πριν απ? μια ?ρα
%s ?ρε? πριν
χθε?
Πριν απ? %s ημ?ρε?
?να μ?να πριν
%s πριν απ? μ?νε?
πριν ?να χρ?νο
Πριν απ? %s χρ?νια- This reply was modified 4 years, 5 months ago by Exoskeletor.
Forum: Plugins
In reply to: [Trust.Reviews] Translate StringI want also to display those strings in greek, i should translate them too?
Consider adding this in a future release please cause ib cases like mine it is helpful. In making a website and a mobile for people with dementia decease and with a csv button i can easily connect the WordPress site with the application
full image url is a text data, all i want is that. Should i manually create a image url field and add the image url one ach user manually?
Your plugin to download csv is really great idea, with custom template we can configure who will have access for better security.
Ok nice, can also in the csv exist the image url of the participants automatically? or i should always manually include it?
Forum: Plugins
In reply to: [Piraeus Bank WooCommerce Payment Gateway] Πρ?βλημα με τι? γλ?σσε?εχω και εγω το ιδιο θεμα, εχουμε καμια λυση?
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Woocommerce product category sorti have the same issue, anyone know why this is happening? does anyone have another way to do it manually?
- This reply was modified 6 years, 7 months ago by Exoskeletor.
καταφερα να το κανω να δουλεψει με 2 γλωσσε?.
Χρειαζονται 2 posId και 2 σετ url1) Χρησιμοποιησα το plugin polylang slug για να εχω κοινα url και στι? 2 γλωσσε? (πχ checkout και /en/checkout)
για την μια γλωσσα θα ειναι αυτα
Website url : https://name.gr/
Referrer url : https://name.gr/checkout/
Success page : https://name.gr/wc-api/WC_Piraeusbank_Gateway?peiraeus=success
Failure page : https://name.gr/wc-api/WC_Piraeusbank_Gateway?peiraeus=fail
Cancel page : https://name.gr/wc-api/WC_Piraeusbank_Gateway?peiraeus=cancelενω για την αλλη θα ειναι
Website url : https://name.gr/
Referrer url : https://name.gr/en/checkout/
Success page : https://name.gr/wc-api/en/WC_Piraeusbank_Gateway?peiraeus=success
Failure page : https://name.gr/wc-api/en/WC_Piraeusbank_Gateway?peiraeus=fail
Cancel page : https://name.gr/wc-api/en/WC_Piraeusbank_Gateway?peiraeus=cancel2) Προσθεσα αυτο το φιλτρο στα functions του θεματο? για να εχω διαφορετικα url οταν χρησιμοποιειται wc-api
function woocommerce_fix_checkout_url( $url) { if (function_exists('pll_current_language')) if (pll_current_language() == 'en') return str_replace('/wc-api/' , '/wc-api/en/', $url);; } add_filter( 'woocommerce_api_request_url', 'woocommerce_fix_checkout_url');
3) 2 αλλαγε? χρειαζεται να γινουν στον κωδικα του plugin, η μια ειναι για να αλλαζει το posId σε αλλη γλωσσα (μονο το PosId αλλαζει, ολα τα αλλα στοιχεια ειναι κοινα σε ολε? τη? γλωσσε?) :
$this->pb_PosId = $this->get_option('pb_PosId');
και η αλλη να αλλαξει η γλωσσα εμφανιση? τη? συμπληρωση? των στοιχειων
$LanCode;
Βρειτε αυτε? τη? μεταβλητε? στον κωδικα και αλλαχτε τε? οπω? χρειαζεται για την περιπτωση σα? και θα δουλεψει μια χαρα. Test cases για την 2η γλωσσα δεν ειναι απαρα?τητα
- This reply was modified 7 years, 9 months ago by Exoskeletor.
- This reply was modified 7 years, 9 months ago by Exoskeletor.
Forum: Developing with WordPress
In reply to: How to use api_request_url filterhmm ok, i will first try something simple like that
function woocommerce_fix_checkout_url( $url) {
if (function_exists(‘pll_current_language’))
if (pll_current_language() == ‘en’)
return str_replace(‘/wc-api/’ , ‘/wc-api/en/’, $url);;
}add_filter( ‘woocommerce_api_request_url’, ‘woocommerce_fix_checkout_url’, 10, 1 );