Allanon27
Forum Replies Created
-
Hi Angelo,
In the meantime I found it in ticket-list.php.
Used this code to rewrite the displayed price:
<?php echo esc_attr(number_format($EM_Ticket->ticket_price,0,'','')) ?>Best Wishes,
MattHi Angelo,
Yes, html emails are enabled. The problem was with the br setting below it. If I set that to false, then everything looks as it should.
Best Wishes,
MattHi Angelo,
For example:
I create a Family ticket. The specific function of this ticket type is that more than 1 people can enter the event with it (like 3-4).
The available spaces for the whole event is 30 people.
What I want is that when someone purchases 1 Family ticket, the available spaces goes down by 4, to 26.Right now it seems that I actually need to force them to buy 3 or 4 tickets ( with the min/max setting ) of this type which is kind of confusing for the visitors, because they would like to buy 1 ticket, and not 4 quarters.
Thanks for Your reply! I really appreciate it!
Best Wishes,
MattHi,
My mistake. It was a recurring event. I read afterwards that when I modify a recurring event it isn’t updated but deleted and recreated. Thats why the bookings disappeared.
Thanks for the reply though!
Best Wishes,
MattI am using RT-Theme 10 for the site.
Forum: Fixing WordPress
In reply to: Random Internal Server error – But I didn't change a thing!Anyone? 🙂
This is the url to the blog:
http://blog.uzletiajanlatok.huThanks man. Only needed to run the debugger and now it works perfectly!
Great plugin! I just love it! 🙂
All I can say is WOW! That was pretty fast! I will try this out right now! 🙂
Forum: Fixing WordPress
In reply to: Registration only with Facebook connect – Is it possible?Anyone? 🙂
Forum: Fixing WordPress
In reply to: Excerpt won't change when I will the excerpt field after the postThanks Man!
It was Dragons Print Hint. Seems that I need to find another plugin for that function. 🙂
Well I would rather use a custom field if there is no other solution.
I don’t want to change the URL structure.
Thanks Man! Works perfectly! 🙂
Ok guys. Maybe I overlook something but still cannot make those 3 dots to disappear:
Here is my functions.php code:
<?php // Add RSS links to <head> section automatic_feed_links(); // Load jQuery if ( !is_admin() ) { wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"), false); wp_enqueue_script('jquery'); } // Clean up the <head> function removeHeadLinks() { remove_action('wp_head', 'rsd_link'); remove_action('wp_head', 'wlwmanifest_link'); } add_action('init', 'removeHeadLinks'); remove_action('wp_head', 'wp_generator'); // Declare sidebar widget zone if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Sidebar Widgets', 'id' => 'sidebar-widgets', 'description' => 'These are widgets for the sidebar.', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } if (function_exists('register_nav_menus')) { register_nav_menus( array( 'main_nav' => 'Main Navigation Menu' ) ); } // Featured image support add_theme_support( 'post-thumbnails' ); // Summary Length function new_excerpt_length($length) { return 25; } add_filter('excerpt_length', 'new_excerpt_length'); //This should remove the 3 dots at the end of the excerpt function new_excerpt_more($more) { return '[.....]'; } add_filter('excerpt_more', 'new_excerpt_more'); // THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED function insertThumbnailRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = '' . get_the_post_thumbnail( $post->ID, 'full', array( 'alt' => get_the_title(), 'title' => get_the_title(), 'style' => 'float: left;' ) ) . '' . $content; } return $content; } add_filter('the_excerpt_rss', 'insertThumbnailRSS'); add_filter('the_content_feed', 'insertThumbnailRSS'); ?>Any suggestions?
Hi Man,
No my theme doesn’t use the filter, and the dots are not hard-coded.
It is my own template. I started from a Blank Template though.
Still no solution… 🙁
Hi Alchymyth,
Thanks for the quick answer!
Yes, I tried that, and also other ones from the forum, but none of them worked…