Barry

Forum Replies Created

Viewing 15 posts - 6,976 through 6,990 (of 17,936 total)
  • Author
    Posts
  • Barry
    Member

    Hi!

    We’re aware of and have worked through a few things like this (some recent refactoring work saw a number of components being moved from PRO to core and we inadvertently failed to update the text domains – apologies on that front).

    What I’d recommend here is waiting until the next release arrives when, hopefully, we’ll have resolved the majority of these issues. If you still find problems after that please don’t hesitate to post in our translations forum with further details and we’ll be happy to take another look πŸ™‚

    Thanks!

    in reply to: Disable "Events" from top wp admin menu #498246
    Barry
    Member

    Hi!

    You should be able to do this by adding the following line of code to your site’s wp-config.php file:

    define( 'TRIBE_DISABLE_TOOLBAR_ITEMS', true );

    Does that help here?

    in reply to: Custom Recuring Events #498207
    Barry
    Member

    Hi – I’m sorry to hear it isn’t looking like it will meet your needs in this area.

    One approach that might work is to use the closest matching pattern – one that fills all the days you need and more – and delete the superfluous instances. I do appreciate that isn’t always viable and/or may create more work than manually recreating events – but I thought I’d mention it in case it does help.

    You’re certainly welcome to propose new features though and can also show your support for suitable existing requests by upvoting them. In this case, the following request might be worth adding your support to:

    tribe.uservoice.com/forums/195723-feature-ideas/suggestions/3685762-random-free-form-recurring-events

    Thanks!

    in reply to: Adding SEO to any/all events pages #498192
    Barry
    Member

    Hi – great question!

    Since some views don’t live as posts in the database there is no particular way to achieve this. Often though themes and SEO-specific plugins provide a range of hooks that let you workaround situations like this and set titles, descriptions etc even if it’s impossible to do so via the post/page editor.

    Unfortunately I can’t guide you through the process for achieving this with Genesis, but we do have a range of helper functions that you can use to help detect what sort of page you are on that could be useful here:

    Does that help?

    in reply to: Hide information until after sale #498162
    Barry
    Member

    Hi!

    Looks like this was accidentally posted in the Eventbrite forum: I’ll move it across to the WooCommerce Tickets forum instead – but the thread URL should remain the same and you should still receive updates (if you chose to receive them).

    I would like to sell webinars and would like to know how to send the login details after the purchase has been made on the ticket. It shows this information before the sale has gone through.

    OK, so this is probably something where you would need to do a little customization work. I’m interested in the fact that you say the information displays before the sale has gone through, though – how are you currently recording this/where does it display?

    Barry
    Member

    Hi – hope you’re enjoying the plugin so far πŸ™‚

    For much of your questions some working knowledge of safely customizing the plugin is going to be needed – and so reading through our Themer’s Guide is definitely recommended.

    I would like to enlarge the β€œtitle” case and clear it by default

    I’m not quite clear about what element you wish to target here – is it the Titre (obligatoire)Β text for the title field, or the text within the field itself?

    in the text space i got some words that appear [tribe_community_events] by default and i would like to remove it.

    OK, I see. This is a bug and we hope to address it in a future release. That said, it only occurs if you have to embed the submission form using the shortcode.

    Would it be possible for you to switch to using so-called “pretty permalinks”, which avoids the need for a shortcode and so avoids this problem altogether?

    Finally i would like to remove the country and state fields.

    OK – so the key to this is setting up custom templates (the Themer’s Guide linked to above covers this). In this specific case, the community/modules/venue.php template is the one to look at and you would remove the following section:

    <tr class="venue">
    	<td>
    		<label for="EventCountry">
    			<?php _e( 'Country', 'tribe-events-community' ); ?>:
    		</label>
    	</td>
    	<td>
    		<select class="chosen" name="venue[Country]" id="EventCountry">
    			<?php
    			foreach (
    				TribeEventsViewHelpers::constructCountries() as $abbr => $fullname ) {
    				echo '<option value="'. esc_attr( $fullname ) .'" ';
    				if($abbr == '')
    					echo "disabled='disabled' ";
    
    				selected( $venue_country == $fullname );
    				echo '>'. esc_html( $fullname ) .'</option>';
    			} ?>
    		</select>
    	</td>
    </tr><!-- .venue -->
    
    <tr class="venue">
    	<?php if ( !isset( $venue_stateProvince ) || $venue_stateProvince == '' ) $venue_stateProvince = -1; ?>
    	<td>
    		<label for="StateProvinceText">
    			<?php _e( 'State or Province', 'tribe-events-calendar' ); ?>:
    		</label>
    	</td>
    	<td>
    		<input id="StateProvinceText" name="venue[Province]" type="text" name="" size="25" value="<?php echo ( isset( $venue_province ) && $venue_province != '' && $venue_province != -1 ) ? esc_attr($venue_province) : ''; ?>" />
    		<select class="chosen" id="StateProvinceSelect" name="venue[State]">
    			<option value=""><?php _e( 'Select a State', 'tribe-events-community' ); ?></option>
    			<?php foreach ( TribeEventsViewHelpers::loadStates() as $abbr => $fullname ) {
    				echo '<option value="' . esc_attr($abbr) .'" ';
    				selected( $venue_state == $abbr );
    				echo '>'. esc_html( $fullname ) .'</option>'. "\n";
    			} ?>
    		</select>
    	</td>
    </tr><!-- .venue -->

    Does that help?

    in reply to: Removing event title from photo & list view? #497986
    Barry
    Member

    Hi!

    Can you try this possible solution in the first instance and see if that helps? If it doesn’t just let me know and we can think about other strategies here πŸ™‚

    Thanks!

    in reply to: Events Calendar Pro, SSL resources #497962
    Barry
    Member

    Hi – sorry to hear you were effected by this one.

    Unfortunately we weren’t able to fit the fix into the very next upcoming release, but I’m hopeful we’ll slot it into one of the next release cycles instead.

    And, if so, will it cause a conflict with this snippet?

    No, I don’t believe any problems will crop up if you forget to remove the snippet. That said, once the fix is ready we’ll do our best to update this thread to let you know and ideally you would remove the snippet at that point – but it shouldn’t cause any particular difficulties if you don’t πŸ™‚

    Does that answer your question?

    in reply to: Moving the ticket Box #497781
    Barry
    Member

    Hi Steve,

    The only real problems that might surface are where you start using solutions, fixes or other extensions which assume that hook will be in the correct place – that said, it’s unlikely it will cause any serious issues and indeed it may be you never encounter any problems.

    As an alternative, though, what about adding a snippet like this to your theme’s functions.php file (or some other suitable place):

    add_action( 'init', 'move_eb_ticket_form' );
    
    function move_eb_ticket_form() {
    	$callback = array( Event_Tickets_PRO::instance(), 'displayEventBriteTicketForm' );
    	remove_action( 'tribe_events_single_event_after_the_meta', $callback, 9 );
    	add_action( 'tribe_events_single_event_before_the_content', $callback );
    }

    Would that work?

    in reply to: Order Info Input #497720
    Barry
    Member

    Hi!

    You can probably accomplish that with some CSS – but it’s really something that relates to WooCommerce itself rather than WooCommerce Tickets – so it would be best to seek help from the Woo team themselves (or via the WooCommerce community forum) for further help on this one.

    Good luck πŸ™‚

    Barry
    Member

    Hi: I’m sorry you’re hitting difficulties here.

    This should cease to be an issue in the next release of The Events Calendar … in the meantime, could you create a copy of:

    wootickets/views/wootickets/tickets.php

    And place it in:

    your-theme/tribe-events/wootickets/tickets.php

    Then locate the following line:

    <?php global $woocommerce; ?>

    Change this to:

    <?php
    global $woocommerce;
    if ( ! empty( $post->post_password ) ) return;
    ?>

    That should prevent this problem. Does that help?

    in reply to: Remove Event Times only #497548
    Barry
    Member

    Hi Phil, thanks for contacting us.

    if you look at http://www.fingerprintdigitalmedia.com/beaverstown/ the widget is in the right column. The Events are shown, each with a start time of 12am – which i want to either REMOVE or HIDE.
    i want to keep the dates in but have the TIME removed

    It looks like you’ve already resolved this part of the problem, is that correct?

    similarly on the Event Detail pages:
    http://www.fingerprintdigitalmedia.com/beaverstown/events/junior-comp-800-1100-9-hole-invitational-500-700-6/

    i want the TIME to be removed or HIDDEN

    Again it looks like you have already achieved this – at least in one place – but I see the start time is still displaying within the meta section the area headlined Details, within a grey box. Do you also wish to remove that entry?

    Thanks!

    in reply to: WooTickets display Price without VAT #497499
    Barry
    Member

    Hi! It’s been a while so I’m going to go ahead and close this thread (and so it will no longer be monitored by staff). If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!

    in reply to: Features: iCal Subscribe & Reports #497497
    Barry
    Member

    Hi! It’s been a while so I’m going to go ahead and close this thread (and so it will no longer be monitored by staff). If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!

    in reply to: Features: iCal Subscribe & Reports #497495
    Barry
    Member

    Hi! It’s been a while so I’m going to go ahead and close this thread (and so it will no longer be monitored by staff). If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!

Viewing 15 posts - 6,976 through 6,990 (of 17,936 total)