Rita Kikani
Forum Replies Created
-
Hi @perezdans , we report your issue and we will fix it if there anythings needs to improve in this.
Thank you.
Hi @larryhir , As this issue resolved in current version, so please update plugin with latest version.
Thank you.
@unrealspeedy @larryhir @joncon62 , please update the plugin with latest version, issue would be solve.
Thank you.
Hi @fbarret ,
The issue you mention is resolved for our upcoming version and we will release updated version as soon as possible. If you want on urgent, then please take latest version 3.1.49 from our git repository https://github.com/wpeventmanager/wp-event-manager/tree/3_1_49.
Thank you.
Hi @fbarret ,
We resolved this issue for our upcoming version and we will release as soon as possible. If you want on urgent basis, then please take v.3.1.49 from our git repository https://github.com/wpeventmanager/wp-event-manager/tree/3_1_49.
Thank you.Hi @kevingosg ,
You just need to add your external link or internal link when you add event -> “Registration email/URL:” field. So, If you add external link as “Registration email/URL:” then when you click on “register for event” button on single event page, then that link will open new tab, if you add your site contactus page link then will open your contact-us page. You do not need to do any customization for this.
Thank you.Hi @sreed27 ,
I had test and it is working fine on our testing environment, so can you please share page link of your event listing page, so we can check, or you can generate support ticket for the issue, our team will assist you there.
Thank you.
Hi @julimuslia,
Yes, you can achieve this functionality by overriding template file and by this method, you will not loose your changes if plugin update.
To achieve this functionality using template override, you need to override template file called “content-event_listing.php” from “\wp-content\plugins\wp-event-manager\content-event_listing.php” to “\wp-content\themes\YOUR_CHILD_THEME\wp-event-manager\content-event_listing.php“. at your theme side file, you need to change code as per your requirement.
You can read more about template override from here : https://wp-eventmanager.com/knowledge-base/template-files-override/
In above file, on line no.17, you will find code like ‘<a href=”<?php display_event_permalink();?>”‘, here you need to add your permalink/link for redirection.
I hope this guidance will help you.If you need further guidance then please continue in this thread. We will help you to resolve your issue.
Thank you.
Hi @fxbyy,
If you want to just hide additional block from single event page, then you need to add below code in your child theme functions.php file.
add_filter('event_manager_show_additional_details', 'wpem_event_manager_show_additional_details'); function wpem_event_manager_show_additional_details($flag){ return false; }But, if you want to change place of additional info from single event page, then you need to override template file called “content-single-event_listing.php”, you need to just copy file from “wp-content\plugins\wp-event-manager\templates\content-single-event_listing.php” to “wp-content\themes\YUOR_CHILD_THEME\wp-event-manager\content-single-event_listing.php” and then at your theme side file, you need to cut code of additional info blog and paste it in same file where you want to show.
ex. cut code ” if ($show_additional_details) :” this entire if condition and paste it ” <?php do_action(‘single_event_sidebar_end’); ?>” before this line.
You can get more info about how to override template file from https://wp-eventmanager.com/knowledge-base/template-files-override/
I hope this will help you, but if yu have still any query then please continue in this thread, we will help you.
Thank you.
Hi @eventaus,
You can write below code in your overridden template file :
<td><strong><?php _e('Ticket QTY:', 'wp-event-manager-sell-tickets'); ?></strong><br><span style="font-family:au; font-size:14px; padding:5px; color:#000;"> <?php foreach ($order->get_items() as $item) { $order_product_id = $item->get_product_id(); if($product_id == $order_product_id){ echo $item->get_quantity() .'<br/>'; } } ?></td>If you have any further query then please continue in this thread.
Thank you.
Hi @gogata221,
The text for Load more button is coming from event-listings-end.php file, so to change the text, you need to override template file from wp-content\plugins\wp-event-manager\templates\event-listings-end.php to wp-content\themes\YOUR_THEME\wp-event-manager\event-listings-end.php and change at your theme side file.
You will get more about how to override template file from : https://wp-eventmanager.com/knowledge-base/template-files-override/
Thank you.
Hi @eventaus,
As registration is paid addon, you need to open support ticket on our site for related issue, our team will help to fix your issue regarding paid addon.
Thank you.
Hi @eventaus,
This is a woocommerce customization part, so I am not sure about above code, but I can guide you about to set product as private. As per my knowledge, you can not purchase any private product, so you must need to set it as a public first then only you can buy it. second, if you want to hide from normal users, then you need to set “Catalog visibility” as “Hidden” then you must need third party plugin to restrict the product to specific users or user roles. Plugins like WooCommerce Memberships or WooCommerce Private Store would be helpful to you.
After that, you need to override template file called, “content-tickets-details.php” from sell ticket plugin and in that file you need to add condition based on restriction to view ticket which you set in woo products.
I hope that this will help you to resolve your issue.
Thank you.
Hi @eventaus,
If you are getting an error “Sorry, this product cannot be purchased.”, then you need to check the product price, it may possible that product price is not added in cart and because of that you are getting this error.
Thank you.