Forum Replies Created
-
AuthorPosts
-
November 21, 2022 at 8:04 pm in reply to: Event Calendar: Event Meta displayed 2x (above + below related events) #1373413This reply has been marked as private.November 8, 2022 at 1:54 pm in reply to: Event Calendar: Event Meta displayed 2x (above + below related events) #1371758
FTP details…
November 8, 2022 at 1:49 pm in reply to: Event Calendar: Event Meta displayed 2x (above + below related events) #1371757Hi Yigit,
Pls find user details in the private content box.
Kind regards,
SebastianAugust 28, 2022 at 1:46 pm in reply to: Compatibility with Events Calendar (position of related events) #1362971regarding hooks: The only modifications I am aware of are placed in custom plugins:
- lms-functions.php (active)
- lms-events-calendar-customization.php (inactive)
Modifications should only relate to header and language/currency switchers.
August 28, 2022 at 1:43 pm in reply to: Compatibility with Events Calendar (position of related events) #1362969This reply has been marked as private.August 26, 2022 at 1:43 pm in reply to: Compatibility with Events Calendar (position of related events) #1362883This reply has been marked as private.August 26, 2022 at 1:34 pm in reply to: Compatibility with Events Calendar (position of related events) #1362881Thanks for confirming. I initiated the refund process. Please let me know how I can renew the support service.
August 24, 2022 at 3:12 pm in reply to: Compatibility with Events Calendar (position of related events) #1362642This reply has been marked as private.August 24, 2022 at 3:09 pm in reply to: Compatibility with Events Calendar (position of related events) #1362641I updated all plugins on a staging environment to the following versions:
Wordpress, Version 6.0.1
Theme: Enfold, Version: 5.1.1
Plugins:- Event Tickets, Version 5.4.4
- Event Tickets Plus, Version 5.5.3
- The Events Calendar, Version 5.16.4
- The Events Calendar Extension: Open external links in a new tab, Version 1.0.1
- The Events Calendar PRO, Version 5.14.5
I compared the code between your church theme and our code.
Church has two instances of the event meta, one labelled mobile, one labelled desktop. Our code only has one event meta section called “av-single-event-meta-bar” without additional style for mobile vs. desktop.
August 24, 2022 at 1:25 pm in reply to: Compatibility with Events Calendar (position of related events) #1362632Hi Yigit,
I just ordered the new license in the Envato shop. Now I am puzzled because the system says I own two licenses. Should I have only ordered a support package instead of a new license incl. support?
Regards,
SebastianFebruary 19, 2020 at 9:35 pm in reply to: WPML Language switcher offers languages in which no content is available #1186181Hi Ismael,
I don’t want to align the module differently within the header. What I am after is a solution of having two menu lines next to the logo. One line for the currency and language switcher and one for the main navigation. This is a rather simple header layout. Is there a solution offered by you for this?
Cheers,
SebastianFebruary 13, 2020 at 10:57 pm in reply to: WPML Language switcher offers languages in which no content is available #1184331Hi Ismael,
Actually, I am ok with the injection of the currency and language switcher into the meta header. However, I would love to have the header layout different, i.e. moving the meta header not to stretch over the logo. Do you have a manual on how to move the meta header to sit to the right of the logo instead over it.
Logo | Meta Header
Logo | Main NavThanks,
SebastianFebruary 10, 2020 at 9:52 pm in reply to: WPML Language switcher offers languages in which no content is available #1183285Hi Ismael,
Thanks for the code. It needs to be URL decoded to be working. However, it will not display the names of the languages in the target language.
I did a different workaround for now using the following code and doing CSS styling accordingly:add_action('avia_meta_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ // custom WPML language switch do_action('wpml_add_language_selector'); }
- This reply was modified 4 years, 9 months ago by LMS.
February 8, 2020 at 10:25 pm in reply to: WPML Language switcher offers languages in which no content is available #1182661Hi Ismael,
This is what I got from WPML support:
Your Language Switcher is not coming from WPML.
It is from your theme here \wp-content\themes\enfold\config-wpml\config.php:L256avia_wpml_language_switch()
function.Please try
1. Remove the theme Language Switcher and add WPML Language Switcher to the menu. Currently, Language Switcher is assigned to a menu but that menu is not being displayed anywhere. OR2.
Change this
icl_get_languages( 'skip_missing=0&orderby=custom' )
to
icl_get_languages( 'skip_missing=1&orderby=custom' )
in the above function.They also said I should forward to you the request to use WPML setting instead of hardcoded values that you created the switcher with.
Is this something that can be done?
January 31, 2020 at 12:20 am in reply to: WPML Language switcher offers languages in which no content is available #1180111Hi Ismael,
I tried multiple combinations of all solution linked in this or associated posts.
1. Removing one of the language switchers that is not compatible with WPML works on my site with this piece of code:
// Remove the default flag configurations add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }
2. Using the following code adds a WPML compatible language switcher next to the social media icons. However, it is not displayed correctly (languages in words only and strange styling). It does NOT react to the settings to configure the menu in WPML > Languages:
// Render the default language switcher (activate header meta) add_action('avia_meta_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ do_action('icl_language_selector'); }
3. When setting the language switcher to display in the main menu via WPML > Languages, it will display the correct WPML language menu.
Next to this menu, the Enfold menu switcher is displayed. This CANNOT be hidden with the following CSS as provided in your threads. Reason: the class is not found in the source code.
.avia_wpml_language_switch, .avia_wpml_language_switch li { display: none !important; }
I checked the source code and seems to listen to the following CSS (which effectively hides it):
/* hide Enfold language switcher */ .av-language-switch-item, .av-language-switch-item li { display: none !important; }
I was not able to find a way to display the WPML switcher using flags in the social media bar when set accordingly in WPML when using the solutions provided above.
I could inject the custom WPML language switcher via the following code:
add_action('avia_meta_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ // do_action('wpml_add_language_selector'); }
It is then displayed in the sub menu next to the social media icons. However it does not blend in nicely with the overall design and needs serious tweaking via CSS on multiple levels which I gave up.
To have something to work with I now kept the setting displaying the switch in the main menu.
Can you please review the above again and let me know how I can manage to simply add the language switcher to the social media bar?
Thanks,
Sebastian- This reply was modified 4 years, 9 months ago by LMS.
January 27, 2020 at 9:20 pm in reply to: WPML Language switcher offers languages in which no content is available #1178790Hi Ismael,
I set the WPML settings to skip the language if no translation is available and not direct to the homepage. Hence, for the blog, the behavior is not as expected.
Regarding the other example, the calendar page: i have neither a page set up in French nor defined any calendar entries. Hence, this is also not expected behavior.
Could you please take another look?
Cheers,
SebastianJanuary 25, 2020 at 4:59 pm in reply to: WPML Language switcher offers languages in which no content is available #1178382Hi Ismael,
Thanks for the tip with the blog page. Added the module also in English.
However, the language switch issue for which I initially raised the ticket is still not solved. Could you please take a look at this? WPML team looked into this. We did not find this issue when using a standard theme. Hence, we suspect that this is an issue with the Enfold template.
Could you please check again?
Kind regards,
SebastianHi Rikard,
The fix I applied seems to have taken a bit to take effect. Might have been some caching issue. I can see the icons today again. Looking forward to the permanent fix.
Cheers,
SebastianI am having the same issues. Replaced the file enfold\framework\php\function-set-avia-frontend.php and added the additional code in the Quick CSS as described in https://kriesi.at/support/topic/missing-icons-after-updating-to-wordpress-5-3-1-and-maintenance-releases/
However, this did not have an effect. Could you have a look?
-
AuthorPosts