Tapan Kumer Das
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Select events data from phpHello @cchzhu
You can use shortcode to show events in any page. Please take a look here,
https://theeventscalendar.com/knowledgebase/k/shortcodes/Regards
TapanForum: Plugins
In reply to: [The Events Calendar] Fully bookedForum: Plugins
In reply to: [The Events Calendar] A non-numeric value encountered : I18n.phpIt seems like you are using PHP 7.1 and your WP_DEBUG is true. You can get rid of this warning by editing wp-config.php file and change
define( 'WP_DEBUG', true );
to
define( 'WP_DEBUG', false );
[or just add this line if you don’t find]Hope it might help you.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] All events on one pageHi @tilbu-soft
I just find that you can directly embed those links on a page or post.
Create a new page/post and paste those link one by one, WordPress will bring those event’s details (image and text) there.Regards
Tapan
Forum: Plugins
In reply to: [The Events Calendar] All events on one pageHi Ton,
I got your point. I am afraid this can’t achieve this free one.
In the pro version, they have shortcode support. With that, you can easily create a page and add your desire event shortcode to show those events on a page.Hope it might help you.
Regards
Tapan
Forum: Plugins
In reply to: [The Events Calendar] All events on one pageHello @tilbu-soft
There is an event list page where all the events will show as a list. This will be your URL,
https://prikkelsindepraktijk.nl/events/Do you searching for this or you want something else?
Regards
Tapan
Forum: Fixing WordPress
In reply to: cURL errorHello,
It clearly shows that your server has disabled the function curl_setopt. It’s easy to contact your hosting company and ask them to enable that.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Events have suddenly become full widthHello @kiaseven
I just check your site and found its display correctly in my end. Here is a screenshot
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Virtual EventsHello @chickoder
If I am not wrong, Virtual Events add-on is a premium product. You need to purchase that and then you can install it. You better take a look here,
https://theeventscalendar.com/products/wordpress-virtual-events/Hope it may help you.
ThanksForum: Fixing WordPress
In reply to: How to Remove only the Powered by WordPress Footer LinksHi,
This theme has no support of customizer for footer copyright text. I have checked and found there is no easy way to do that.
You can override the function which writes the footer text in functions.php file [it has a chance to overwrite upon next theme update, to avoid this you can use a child theme]
Add the following function in your functions.php file,function colormag_footer_copyright() { $site_link = '<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" ><span>' . get_bloginfo( 'name', 'display' ) . '</span></a>'; $default_footer_value = sprintf( /* Translators: %1$s: Current year, %2$s: Site link */ esc_html__( 'Copyright © %1$s %2$s. All rights reserved.', 'colormag' ), date( 'Y' ), $site_link ); $colormag_footer_copyright = '<div class="copyright">' . $default_footer_value . '</div>'; echo $colormag_footer_copyright; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped }
I hope this might help you.
Thanks
Forum: Fixing WordPress
In reply to: How to Remove only the Powered by WordPress Footer LinksHello @ritulbhople07
I am sorry but are you meaning that you only remove this line, “Theme: ColorMag by ThemeGrill. Powered by WordPress.”
Thanks
Forum: Fixing WordPress
In reply to: How do I add Featured Products section to Home PageHello,
This shortcode will show your featured products on any page where you want to show them,
[featured_products per_page=”10” columns=”2”]
I hope you get that the “per_page” and “columns” value is as per your requirements.
Thanks
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Variation doesn’t displayHello,
I try to check your site but it seems it is in maintenance mode.
Forum: Fixing WordPress
In reply to: Unable to reply to comments on frontendTo me, it seems like an issue with the Theme. Will you please check by changing the default theme and find if the problem still exists?
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Why is a RSVP event automatically freeHello @angiepunkt
To enable ticket price, go to Events > Settings > Tickets tab and at the bottom, you will find the “Tribe Commerce” section. Enable that and configure as per your requirements. It will enable your event price.
Thanks