Delrey Agency
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Plugin long description missing some partsI think it is not a bug, it should be a mistake on my readme.txt file.
I checked every line but I can’t find the mistake yet.Forum: Plugins
In reply to: [Bogo] Language selection saved as preferenceI added some lines of code to save user language on the following cases:
yoursite.com/?lang=en
yoursite.com/enI only needed to show the right language that I already translated with loco translate plugin. With some extra changes it could be possible to show automatically the right language for the page.
$lang = bogo_get_lang_from_url(); if ( $lang && $closest = bogo_get_closest_locale( $lang ) ) { bogo_set_cookie(bogo_get_closest_locale( $lang )); return $bogo_locale = $closest; } if(isset($_COOKIE['lang'])) { $default_locale = $_COOKIE['lang']; } return $bogo_locale = $default_locale; } function bogo_set_cookie($locale) { setcookie( 'lang', $locale, 0, '/' ); }
Forum: Plugins
In reply to: [Polylang] Defect with Beaver BulderYou can add some css.
The class is:
fl-callout-titlegreat! good luck
Hi, you can do it with css
You can try changing Windows display lang for non unicode programs:
https://www.digitalcitizen.life/changing-display-language-used-non-unicode-programs
Otherwise, you can add some code to wp upload function in order to force file upload as utf8
I’m so happy that it is working now ??
Have a very good day Lucy
yes, wpml plugin is producing this kind of situations in many websites.
Do you have WPML 3 and EM 5.6 or higher versions?
Did you create translated version in Events > Settings > Pages ?
I’m sure the developer will release new version soon, but meanwhile I give you a temporal solution:
1) Replace these files:
wp-content/plguins/storefront-homepage-extra-sections/assets/js/jquery.flexslider.js
wp-content/plguins/storefront-homepage-extra-sections/assets/js/jquery.flexslider-min.jsWith:
new JS files from:
https://github.com/woocommerce/FlexSlider/tree/release-2-7-02) Edit the file:
wp-content/plguins/storefront-homepage-extra-sections/assets/js/slider.jsAdd this parameter:
rtl: trueNote: make backup of the files that you update just in case.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Failed to load content css1) Open this file:
/wp-content/plugins/advanced-custom-fields-font-awesome/better-font-awesome-library/better-font-awesome-library.php2) Go to the line number 588
3) You will see this:
private function set_stylesheet_url( $version ) { $this->stylesheet_url = '//cdn.jsdelivr.net/fontawesome/' . $version . '/css/font-awesome' . $this->get_min_suffix() . '.css'; }
4) Replace with this new code:
private function set_stylesheet_url( $version ) { $sufix = $this->get_min_suffix(); if($sufix contains "rtl") { $this->stylesheet_url = 'https://cdn.delreyagency.com/font-awesome.min-rtl.css'; } else { $this->stylesheet_url = '//cdn.jsdelivr.net/fontawesome/' . $version . '/css/font-awesome' . $sufix . '.css'; } }
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Failed to load content cssHi, I think the developer will send you soon the solution.
Meanwhile I can give you temporal solution, give me some minutes and I will find the fix that I did for one client.Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Not working with RTL slugs@miladgh I’m sure the developer will solve it fast but if the issue is connected with plugin functionality, we can check chrome debugger to get more information:
I will check and I will tell you.
I did it for one my clients.Forum: Plugins
In reply to: [Add From Server] imported file name (unicode) get cutclass.add-from-server.php line 290
Also it depends of the configuration of your server
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Not working with RTL slugsWith some custom CSS you can make it work as RTL