Forum Replies Created

Viewing 30 posts - 1 through 30 (of 34 total)
  • Author
    Posts
  • in reply to: features images dont open in popup #1016749

    is fine thanks

    in reply to: lost settings in events calendar only on enfold #1015195

    yes. is even worse

    in reply to: features images dont open in popup #1015194

    Yes

    in reply to: features images dont open in popup #1014187

    the first picture is the problem, the features images

    in reply to: lost settings in events calendar only on enfold #1014185

    I do not understand why you think it’s better
    when I purchase enfold looked good and work well
    now the category dont work with enfold, work with other themes
    for example
    https://evenimentemuzeale.ro/evenimente-muzeale/categorie/noaptea-cercetatorilor-europeni/

    in reply to: lost settings in events calendar only on enfold #1013017

    https://ibb.co/fZfYCU

    https://ibb.co/g5vYCU

    • This reply was modified 6 years, 2 months ago by vasileandrei.
    in reply to: how do I put prev / next at the botton of the pages? #1012341

    I have somehow solved it in the meantime

    in reply to: how do I put prev / next at the botton of the pages? #1012197

    themes\enfold\config-events-calendar\views\single-event.php
    does not contain what I need, home navigation seems to be controlled elsewhere

    <?php
    /**
     * Single Event Template
     * A single event. This displays the event title, description, meta, and
     * optionally, the Google map for the event.
     * 
     * Override this template in your own theme by creating a file at [your-theme]/tribe-events/single-event.php
     *
     * @package TribeEventsCalendar
     *
     */
    
    if ( !defined('ABSPATH') ) { die('-1'); }
    
    $event_id = get_the_ID();
    
    ?>
    
    <div id="tribe-events-content" class="tribe-events-single vevent hentry">
    
    	<p class="tribe-events-back"><a href="<?php echo tribe_get_events_link() ?>"> <?php _e( '&laquo; All Events', 'avia_framework' ) ?></a></p>
    
    	<!-- Notices -->
    	<?php 
    		if(function_exists('tribe_the_notices') )
    		{
    			tribe_the_notices();
    		}
    		else
    		{
    			tribe_events_the_notices();
    		}
    		?>
    
    	<?php while ( have_posts() ) :  the_post(); ?>
    		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    			<!-- Event featured image, but exclude link -->
    						
    			<div class='av-single-event-content'>
    				
    				<?php the_title( '<h2 class="tribe-events-single-event-title summary entry-title">', '</h2>' ); ?>
    	
    				<div class="tribe-events-schedule updated published tribe-clearfix">
    					<?php echo tribe_events_event_schedule_details( $event_id, '<h3>', '</h3>'); ?>
    					<?php  if ( tribe_get_cost() ) :  ?>
    						<span class="tribe-events-divider">-</span>
    						<span class="tribe-events-cost"><?php echo tribe_get_cost( null, true ) ?></span>
    					<?php endif; ?>
    				</div>
    				
    				<!-- Event content -->
    				<?php do_action( 'tribe_events_single_event_before_the_content' ) ?>
    				<div class="tribe-events-single-event-description tribe-events-content entry-content description">
    					<?php echo tribe_event_featured_image($event_id, 'entry_with_sidebar', false); ?>
    					<?php the_content(); ?>
    				</div><!-- .tribe-events-single-event-description -->
    				<div class='av-single-event-meta-bar av-single-event-meta-bar-mobile'>
    					<div class='av-single-event-meta-bar-inner'>
    						<!-- Event meta  -->
    						<?php do_action( 'tribe_events_single_event_before_the_meta' ) ?>
    						<?php 
    							/**
    							 * See comment below - backwards comp. only
    							 * 
    							 * To allow a more logical order of content on mobile/desktop we add 2 copies of the meta data 
    							 * and show/hide with CSS
    							 */
    							if ( ! apply_filters( 'tribe_events_single_event_meta_legacy_mode', false ) )
    							{	
    								tribe_get_template_part( 'modules/meta' );
    							}
    							else 
    							{
    								echo tribe_events_single_event_meta();
    							}
    						?>
    						<?php do_action( 'tribe_events_single_event_after_the_meta' ) ?>
    					</div>		<!-- Event meta  -->
    				</div>
    				<?php do_action( 'tribe_events_single_event_after_the_content' ) ?>
    	
    				<?php if( get_post_type() == Tribe__Events__Main::POSTTYPE && tribe_get_option( 'showComments', false ) ) comments_template() ?>
    			
    			</div> <!-- av-single-event-content -->
    			
    			<div class='av-single-event-meta-bar av-single-event-meta-bar-desktop'>
    				
    					<div class='av-single-event-meta-bar-inner'>
    					
    					<!-- Event meta -->
    					<?php do_action( 'tribe_events_single_event_before_the_meta' ) ?>
    						<?php
    						/**
    						 * The tribe_events_single_event_meta() function has been deprecated and has been
    						 * left in place only to help customers with existing meta factory customizations
    						 * to transition: if you are one of those users, please review the new meta templates
    						 * and make the switch!
    						 * 
    						 * Function was removed in version 3.11 on 22.7.2015
    						 * 
    						 * To allow a more logical order of content on mobile/desktop we add 2 copies of the meta data 
    						 * and show/hide with CSS
    						 */
    						if ( ! apply_filters( 'tribe_events_single_event_meta_legacy_mode', false ) )
    						{	
    							tribe_get_template_part( 'modules/meta' );
    						}
    						else 
    						{
    							echo tribe_events_single_event_meta();
    						}
    						?>
    					<?php do_action( 'tribe_events_single_event_after_the_meta' ) ?>
    				
    				</div>
    			</div>
    			
    			
    			</div> <!-- #post-x -->
    		
    	<?php endwhile; ?>
    
    	<!-- Event footer -->
        <div id="tribe-events-footer">
    		<!-- Navigation -->
    		<!-- Navigation -->
    		<h3 class="tribe-events-visuallyhidden"><?php _e( 'Event Navigation', 'avia_framework' ) ?></h3>
    		<ul class="tribe-events-sub-nav">
    			<li class="tribe-events-nav-previous"><?php tribe_the_prev_event_link( '<span>&laquo;</span> %title%' ) ?></li>
    			<li class="tribe-events-nav-next"><?php tribe_the_next_event_link( '%title% <span>&raquo;</span>' ) ?></li>
    		</ul><!-- .tribe-events-sub-nav -->
    	</div><!-- #tribe-events-footer -->
    
    </div><!-- #tribe-events-content -->
    
    in reply to: how do I put prev / next at the botton of the pages? #1011789

    yes
    I also want to the bottom of page
    for greater visibility

    I also want to on every page of the event. I know you have but I do not know how it disappeared

    in reply to: Advanced Custom Fields #1002751

    yes

    in reply to: Advanced Custom Fields #1001700

    to show custom fields (acf) in posts

    like

    				<div class="book-meta">
    	<ul>
    		<li><strong>Author:</strong> <?php the_field( 'accession_no_[087]' ); ?></li>
    		<li><strong>Release Year:</strong> <?php the_field( 'collection_title_[490]' ); ?></li>
    		<li><strong>Book Rating:</strong> <?php the_field( 'reference_[091]' ); ?></li>
    	</ul>
    </div>
    in reply to: Advanced Custom Fields #1001058

    it has nothing to do with what i ask
    if i display the above code in get_footer is ok but if I put it in the main it does not work

    in reply to: rss/feed problems #965076

    Thank you!

    in reply to: rss/feed problems #964521

    some suggestions?

    in reply to: rss/feed problems #963786

    yes

    in reply to: sidebar for events #951830

    I got it. just do not help me
    I want to put a logo under the map. Events Calendar has additional fields but they do not want to understand that WYSIWYG Editor is needed

    you have idea if there is a plugin that can place a div there?

    in reply to: sidebar for events #950075

    yes but where is “You have to modify the defaults-template.php file. Remove everything then replace it with this code: “?

    in reply to: sidebar for events #947236

    I want to bring at events the sidebar

    in reply to: Previous / Next at the bottom #898458

    thank you

    in reply to: center image in mobile mode #898037

    is good, thank you

    in reply to: center image in mobile mode #897651

    lower. thank you

    in reply to: center image in mobile mode #897461

    does not seem to work

    in reply to: Featured image display the entire image #879415

    close

    in reply to: Featured image display the entire image #879391

    is ok , thank you

    in reply to: Featured image display the entire image #871838

    after using Resizing Existing Thumbnails will the new images go up correctly? or do I need to use Resizing Existing Thumbnails?

    in reply to: error blocking my web page #871229

    Hello
    I solved
    Thank you

    in reply to: Featured image display the entire image #870444

    I do not really need Resizing Existing Thumbnails
    I need images uploaded through event gallery, feature images, to be uploaded correctly.without being cut

    in reply to: error blocking my web page #870394

    posted wrong

    • This reply was modified 7 years ago by vasileandrei. Reason: posted wrong
    in reply to: error blocking my web page #870392

    I did not fix it
    the error occurs in PHP56_errors.log that is outside wordpress

    [30-Oct-2017 07:56:04 UTC] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘remove_limit’ not found or invalid function name in D:\Web\WWW\xxx.ro\wp-includes\class-wp-hook.php on line 298
    [30-Oct-2017 07:56:54 UTC] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘remove_limit’ not found or invalid function name in D:\Web\WWW\xxx.ro\wp-includes\class-wp-hook.php on line 298
    [30-Oct-2017 07:56:56 UTC] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘remove_limit’ not found or invalid function name in D:\Web\WWW\xxx.ro\wp-includes\class-wp-hook.php on line 298

    in reply to: Featured image display the entire image #869916

    So? how make as features images no longer be cut?
    Regenerate the thumbnails by clicking the button at the bottom.
    the plugin regenerates the already uploaded images.
    but how do I prevent this?

Viewing 30 posts - 1 through 30 (of 34 total)