ThemeTon - Support » All Posts https://themeton.com/support/forums/forum/wordpress-themes/lagom/feed/ Sun, 28 Apr 2024 06:30:04 +0000 https://bbpress.org/?v=2.6.9 en-US https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71729 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71729 Mon, 16 Mar 2020 14:26:19 +0000 BJ Hello,

I have a news. Please take a look at your site. I’ve removed category specify on the events element. Looks events are showing correct order now.

We are using following function on event listing. But it doesn’t have decent date ordering attribute. https://theeventscalendar.com/knowledgebase/k/using-tribe_get_events/#Event_arguments

But current solution to this would be okay for your need. Please let me know if you need more help.

Thanks a lot

]]>
https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71727 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71727 Tue, 10 Mar 2020 15:24:11 +0000 annola00 Hi BJ,
Could you help me to understand the reason why none of the suggestions I received to change the event order is going to work on my web site?

Thank BJ!
Have a nice day!

]]>
https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71720 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71720 Wed, 04 Mar 2020 09:17:23 +0000 annola00 Hi BJ,
I’ve tried to copy your snippet on the functions.php theme file, but nothing is changed, so I removed the snippet for now. Any suggestions on the reason why it is not working?
In order to show the last event first I’ve temporarly changed the past event dates 2019 in 2020, but obviously this is a wrong information and I need to correct it.
I hope you can help me!

Thanks a lot!

]]>
https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71718 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71718 Mon, 02 Mar 2020 14:53:34 +0000 annola00 Hi BJ,
Thank you very much for your video!
I would like to change the event order in all the pages were they appear, I mean front end. So for now I have event on this two pages:

Home

and in the events page:

MonicaT-Footer

I think is better for me in the future that events will appear everywhere in the website in this order:
Newest event first.

If you tell me that I just need to copy the plugin snippet in a specific file, I can even do it by myself,..but unfortunately I cannot do more than this I think, I’m not good with code.

Thanks BJ!!!

]]>
https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71714 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71714 Mon, 02 Mar 2020 12:07:45 +0000 BJ Hello,

https://theeventscalendar.com/knowledgebase/k/show-past-events-in-reverse-chronological-order/

 

Thanks

]]>
https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71706 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71706 Fri, 28 Feb 2020 13:12:10 +0000 annola00 I’m sorry, I’ve copied the wrong one.

Solution 1:
add_filter(‘tribe_ce_my_events_query’, ‘lagom_ce_my_events_query’);
function my_custom_ce_my_events_query ( $args ) {
$args[‘order’] = ‘ASC’;
return $args;
}

]]>
https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71705 <![CDATA[Reply To: The demo version does not appear as it should. Could you help me please?]]> https://themeton.com/support/forums/topic/the-demo-version-does-not-appear-as-it-should-could-you-help-me-please/#post-71705 Fri, 28 Feb 2020 13:09:49 +0000 annola00 Hi BJ, how are you?
Sorry but I’ve already the problem with the events order. The events are showed from the oldest to the newest and I really need the opposite.
I’ve tried to add some snippet code that I’ve copied from The Event Calendar plugin page, into the “functions.php” lagom file, but nothing is going to change.
I’m going to copy the 2 snippets I’ve tried, but maybe I’ve done it in a wrong way.
Could you help me please?

Solution 1:

add_filter(‘tribe_events_query’, ‘lagom_events_query’);
function lagom_events_query ( $args ) {
$args[‘order’] = ‘DESC’;
return $args;
}//

Solution 2:
/**
* Changes Past Event Reverse Chronological Order
*
* @param array $template_vars An array of variables used to display the current view.
*
* @return array Same as above.
*/
function tribe_past_reverse_chronological_v2( $template_vars ) {

if ( ! empty( $template_vars[‘is_past’] ) ) {
$template_vars[‘events’] = array_reverse( $template_vars[‘events’] );
}

return $template_vars;
}
// Change List View to Past Event Reverse Chronological Order
add_filter( ‘tribe_events_views_v2_view_list_template_vars’, ‘tribe_past_reverse_chronological_v2’, 100 );
// Change Photo View to Past Event Reverse Chronological Order
add_filter( ‘tribe_events_views_v2_view_photo_template_vars’, ‘tribe_past_reverse_chronological_v2’, 100 );

Thanks a lot!!

]]>
https://themeton.com/support/forums/topic/theme-update/#post-71629 <![CDATA[Reply To: Theme update]]> https://themeton.com/support/forums/topic/theme-update/#post-71629 Wed, 18 Dec 2019 01:21:33 +0000 BJ Thank you really much for your time and the review, much appreciated 🙂
Please let me know if there have more issues to ask my help.

]]>
https://themeton.com/support/forums/topic/theme-update/#post-71627 <![CDATA[Reply To: Theme update]]> https://themeton.com/support/forums/topic/theme-update/#post-71627 Tue, 17 Dec 2019 09:50:59 +0000 esperide It´s works! Your are a master!!!!

My site was close for the bugs and now I can open again…

Thanks a lot again…

*My Review:

https://themeforest.net/item/lagom-multi-concept-multipurpose-wordpress-theme/reviews/21547064

 

Attachments:
You must be logged in to view attached files.
]]>
https://themeton.com/support/forums/topic/theme-update/#post-71625 <![CDATA[Reply To: Theme update]]> https://themeton.com/support/forums/topic/theme-update/#post-71625 Tue, 17 Dec 2019 03:38:54 +0000 BJ Hello,

I’ve made some script improvement on your site. Most of the parts are working fine now. Please don’t forget to refresh a few more times let your browser load newer files.

But you should make sure those pages. I see there some bullet navigation dislocated but I need to know those are a bug or intentional.

Thanks a lot

]]>