Creastic
Forum Replies Created
-
Hello, I’m not an expert, I think with hyperlink in data explorer you can send a query param to an other page (link like mysite.com/number?25 for exemple), and in Divi, you can add a dynamic content with this param in the widget.
There is too a REST API module in data explorer, but I don’t find documentation about it.
Hello Kim,
Can you tell me if it’s possible to do that (hyperlink, open something else that modal) in Data Project ? I would like open data in new page or in collapsed way in Data Project, instead of modal
Thank you for this explanation.
I formulate question differently : How to desactivate the “Show More >>>” button in a page ?
Hello,
sorry to reply so late.
Yes, it modify the js code in my pageHello,
sorry to reply one month later…I install the last version, and it’s the same problem.
Yes, it’s working with permalink by default (with number of post) not with permalink with post name
I desactivate all exept events manager and i use default template with the same result.
Finally i have found the mistake :
In Events Manager / Option / Pages / Manage Front end page
The edit page for event is set to nothing, now it’s ok.Thank you.
I do that and it’s work, do you think i could do simpler ?
add_filter('em_location_output_placeholder','my_em_placeholder_mod',1,3); function my_em_placeholder_mod($replace, $EM_Location, $result){ if ( $result == '#_LOCATIONPASTEVENTS' ) { $events_count = EM_Events::count( array('location'=>$EM_Location->location_id, 'scope'=>$scope) ); if ( $events_count > 0 ){ $args = array('location'=>$EM_Location->location_id, 'scope'=>$scope, 'pagination'=>1, 'ajax'=>0); $args['format_header'] = get_option('dbem_location_event_list_item_header_format'); $args['format_footer'] = get_option('dbem_location_event_list_item_footer_format'); $args['format'] = get_option('dbem_location_event_list_item_format'); $args['limit'] = get_option('dbem_location_event_list_limit'); $args['page'] = (!empty($_REQUEST['pno']) && is_numeric($_REQUEST['pno']) )? $_REQUEST['pno'] : 1; $args['orderby'] = "event_end_date";//ordre d'apparition $args['order'] ="DESC"; $replace = EM_Events::output($args); } else { $replace = get_option('dbem_location_no_events_message'); } } return $replace; }
hello,
in events-list.php , just beforeecho EM_Events::output( $args );
add
$args['orderby'] = "event_end_date";
yes, but when i change with default template, this code is not use
I have desactivated all plug-ins exept Buddypress and Events-Manager, and i put the default theme of wordpress, same result…
Hello,
Last versions
BuddyPress : 2.4.3
Events Manager : 5.6.2
WordPress : 4.4.2I want to Know the location owner in single location page with php or template
Just need a link like member/nameofbpprofil/ from location page, to bp member who create this location page…
May i have to create my own shortcode for that ?