• Hi
    why did my childtheme edits vanished after update to a new WP Version
    Please have a look at oor last conversation here:
    https://www.ads-software.com/support/topic/no-support-for-child-themes?replies=30

    1: Child theme is STILL in charge
    2: Our edits are still in the childtheme PHP-files
    3: backend does not show our edits

    See:
    https://www.photostudio-koepenick.de/

    And here we have the content of inc/fullframe-featured-slider.php)

    <?php
    /**
     * The template for displaying the Slider
     *
     * @package Catch Themes
     * @subpackage Full Frame
     * @since Full Frame 1.0
     */
    
    if ( ! defined( 'FULLFRAME_THEME_VERSION' ) ) {
    	header( 'Status: 403 Forbidden' );
    	header( 'HTTP/1.1 403 Forbidden' );
    	exit();
    }
    
    if( !function_exists( 'fullframe_featured_slider' ) ) :
    /**
     * Add slider.
     *
     * @uses action hook fullframe_before_content.
     *
     * @since Fullframe 1.0
     */
    function fullframe_featured_slider() {
    	global $post, $wp_query;
    	//fullframe_flush_transients();
    	// get data value from options
    	$options 		= fullframe_get_theme_options();
    	$enableslider 	= $options['featured_slider_option'];
    	$sliderselect 	= $options['featured_slider_type'];
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts'); 
    
    	if ( $enableslider == 'entire-site' || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == 'homepage' ) ) {
    		if( ( !$fullframe_featured_slider = get_transient( 'fullframe_featured_slider' ) ) ) {
    			echo '<!-- refreshing cache -->';
    
    			$fullframe_featured_slider = '
    				<section id="feature-slider">
    					<div class="wrapper">
    						<div class="cycle-slideshow"
    						    data-cycle-log="false"
    						    data-cycle-pause-on-hover="true"
    						    data-cycle-swipe="true"
    						    data-cycle-auto-height=container
    						    data-cycle-fx="'. $options['featured_slide_transition_effect'] .'"
    							data-cycle-speed="'. $options['featured_slide_transition_length'] * 1000 .'"
    							data-cycle-timeout="'. $options['featured_slide_transition_delay'] * 1000 .'"
    							data-cycle-slides="> article"
    							>
    
    						    <!-- prev/next links -->
    						    <div class="cycle-prev"></div>
    						    <div class="cycle-next"></div>
    
    						    <!-- empty element for pager links -->
    	    					<div class="cycle-pager"></div>';
    
    							// Select Slider
    							if ( $sliderselect == 'demo-featured-slider' && function_exists( 'fullframe_demo_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_demo_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-page-slider' && function_exists( 'fullframe_page_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_page_slider( $options );
    							}
    
    			$fullframe_featured_slider .= '
    						</div><!-- .cycle-slideshow -->
    					</div><!-- .wrapper -->
    				</section><!-- #feature-slider -->';
    
    			set_transient( 'fullframe_featured_slider', $fullframe_featured_slider, 86940 );
    		}
    		echo $fullframe_featured_slider;
    	}
    }
    endif;
    add_action( 'fullframe_before_content', 'fullframe_featured_slider', 10 );
    
    if ( ! function_exists( 'fullframe_demo_slider' ) ) :
    /**
     * This function to display featured posts slider
     *
     * @get the data value from customizer options
     *
     * @since Fullframe 1.0
     *
     */
    function fullframe_demo_slider( $options ) {
    	$fullframe_demo_slider ='
    								<article class="post hentry slides demo-image displayblock">
    									<figure class="slider-image">
    										<a title="Analoge Fotografie" href="'. esc_url( home_url( '/' ) ) .'">
    											<img src="'.get_template_directory_uri().'/images/gallery/slider1-1680x720.jpg" class="wp-post-image" alt="Analoge Fotografie" title="Analoge Fotografie">
    										</a>
    									</figure>
    									<div class="entry-container">
    										<header class="entry-header">
    											<h1 class="entry-title">
    												<a title="Analoge Fotografie" href="#"><span>Analoge Fotografie</span></a>
    											</h1>
    											</header>
    										<div class="entry-content">
    											<p>Für Liebhaber analogen Looks arbeiten wir mit analogen Kameras vom Kleinbild bis zum Gro?format - und dies sowohl in Farbe als auch in Schwarz-Weiss</p>
    										</div>
    									</div>
    								</article><!-- .slides --> 	
    
    								<article class="post hentry slides demo-image displaynone">
    									<figure class="Slider Image 2">
    										<a title="Digitale Fotografie aus allen Genre" href="'. esc_url( home_url( '/' ) ) .'">
    											<img src="'. get_template_directory_uri() . '/images/gallery/slider2-1680x720.jpg" class="wp-post-image" alt="Digitale Fotografie aus allen Genre" title="Digitale Fotografie">
    										</a>
    									</figure>
    									<div class="entry-container">
    										<header class="entry-header">
    											<h1 class="entry-title">
    												<a title="Digitale Fotografie aus allen Genre" href="#"><span>Beauty.......</span></a>
    											</h1>
    											</header>
    										<div class="entry-content">
    											<p>Wir lassen Sie gut aussehen. Angezogen oder nackt, drinnen oder draussen, in feinem Zwirn oder Lack & Leder auf, in oder unter Wasser...egal. Wir schaffen Bilder die Sie so zeigen wie Sie sind. Cool, fantastisch, seri?s, frech oder einfach liebenswert.</p>
    										</div>
    									</div>
    								</article><!-- .slides --> ';
    	return $fullframe_demo_slider;
    }
    endif; // fullframe_demo_slider
    
    if ( ! function_exists( 'fullframe_page_slider' ) ) :
    /**
     * This function to display featured page slider
     *
     * @param $options: fullframe_theme_options from customizer
     *
     * @since Fullframe 1.0
     */
    function fullframe_page_slider( $options ) {
    	$quantity		= $options['featured_slide_number'];
    	$more_link_text	=	$options['excerpt_more_text'];
    
        global $post;
    
        $fullframe_page_slider = '';
        $number_of_page 		= 0; 		// for number of pages
    	$page_list				= array();	// list of valid page ids
    
    	//Get number of valid pages
    	for( $i = 1; $i <= $quantity; $i++ ){
    		if( isset ( $options['featured_slider_page_' . $i] ) && $options['featured_slider_page_' . $i] > 0 ){
    			$number_of_page++;
    
    			$page_list	=	array_merge( $page_list, array( $options['featured_slider_page_' . $i] ) );
    		}
    
    	}
    
    	if ( !empty( $page_list ) && $number_of_page > 0 ) {
    		$get_featured_posts = new WP_Query( array(
    			'posts_per_page'	=> $quantity,
    			'post_type'			=> 'page',
    			'post__in'			=> $page_list,
    			'orderby' 			=> 'post__in'
    		));
    		$i=0; 
    
    		while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    			$title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) );
    			$excerpt = get_the_excerpt();
    			if ( $i == 1 ) { $classes = 'page pageid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'page pageid-'.$post->ID.' hentry slides displaynone'; }
    			$fullframe_page_slider .= '
    			<article class="'.$classes.'">
    				<figure class="slider-image">';
    				if ( has_post_thumbnail() ) {
    					$fullframe_page_slider .= '<a title="' . the_title_attribute( array( 'before' => __( 'Permalink to:', 'fullframe' ), 'echo' => false ) ) . '" href="' . get_permalink() . '">
    						'. get_the_post_thumbnail( $post->ID, 'fullframe_slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'pngfix' ) ).'
    					</a>';
    				}
    				else {
    					//Default value if there is no first image
    					$fullframe_image = '<img class="pngfix wp-post-image" src="'.get_template_directory_uri().'/images/gallery/no-featured-image-1680x720.jpg" >';
    
    					//Get the first image in page, returns false if there is no image
    					$fullframe_first_image = fullframe_get_first_image( $post->ID, 'fullframe-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) );
    
    					//Set value of image as first image if there is an image present in the page
    					if ( '' != $fullframe_first_image ) {
    						$fullframe_image =	$fullframe_first_image;
    					}
    
    					$fullframe_page_slider .= '<a title="' . the_title_attribute( array( 'before' => __( 'Permalink to:', 'fullframe' ), 'echo' => false ) ) . '" href="' . get_permalink() . '">
    						'. $fullframe_image .'
    					</a>';
    				}
    
    				$fullframe_page_slider .= '
    				</figure><!-- .slider-image -->
    				<div class="entry-container">
    					<header class="entry-header">
    						<h1 class="entry-title">
    							<a title="' . the_title_attribute( array( 'before' => __( 'Permalink to:', 'fullframe' ), 'echo' => false ) ) . '" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    						</h1>
    
    					</header>';
    					if( $excerpt !='') {
    						$fullframe_page_slider .= '<div class="entry-content">'. $excerpt.'</div>';
    					}
    					$fullframe_page_slider .= '
    				</div><!-- .entry-container -->
    			</article><!-- .slides -->';
    		endwhile; 
    
    		wp_reset_query();
      	}
    	return $fullframe_page_slider;
    }
    endif; // fullframe_page_slider

    Why doesnt your theme takes that content?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello,
    It would be really easy for us if you explained what were the changes that you made on the child theme ? Could you please share?

    best regards.

    Thread Starter bydlo

    (@bydlo)

    Hello
    yes, i can.
    For example this part:

    <div class="entry-container">
    										<header class="entry-header">
    											<h1 class="entry-title">
    												<a title="Digitale Fotografie aus allen Genre" href="#"><span>Beauty.......</span></a>
    											</h1>
    											</header>
    										<div class="entry-content">
    											<p>Wir lassen Sie gut aussehen. Angezogen oder nackt, drinnen oder draussen, in feinem Zwirn oder Lack & Leder auf, in oder unter Wasser...egal. Wir schaffen Bilder die Sie so zeigen wie Sie sind. Cool, fantastisch, seri?s, frech oder einfach liebenswert.</p>
    										</div>
    									</div>

    I solved it with a dirty trick now by pasting the content of inc/fullframe-featured-slider.php from my child theme into inc/fullframe-featured-slider.php of the parent theme.

    But this is, as mentioned, a dirty trick

    regards axel

    Hello,

    Seems like the new update has overridden all your changes in the child theme and since you have overridden the demo slider, it is quite possible that what you are facing here is hardly a theme bug, as the theme strictly suggests not to use the demo slider.

    You could just use other option of the slider on the theme.
    But if you want to make it work.
    Why don’t you contact the official support forum of the theme itself,
    here: https://catchthemes.com/support-forum

    Best regards.

    Thread Starter bydlo

    (@bydlo)

    “seems to….”,”could be…..” “possible that…..”
    quite unclear, dont you think…

    I use child-theme BECAUSE i want to keep my changes and not do it every time an update arises.
    And now there was an update. Result: I had to do all the work again

    Why don’t you contact the official support forum
    Because there is already a forum where its been said to get support. Its here.

    BTW: You told me in this posts that the actual “workaround” would work safe:

    https://www.ads-software.com/support/topic/no-support-for-child-themes?replies=30

    regards axel

    Hello again,

    Sorry If you were offended by my answers, I apologize

    The changes on the child theme are not reverted by any update if it follows WordPress standard.
    But making a child theme doesn’t mean that you can make changes on the parent theme.
    Direct Parent theme code changes are automatically reverted back to original even if you make a child theme.
    If you have changed any thing on the parent theme it is bound to change weather you have the child theme or not.

    And about the support forum,
    I was just advising you to check it,

    Again I am sorry for the misunderstandings.
    I am here to help.
    Have a good day
    Best regards

    Thread Starter bydlo

    (@bydlo)

    I did NOT make any changes to the parent theme before this issue arised.
    NOW i made changes to the parent theme because nothing else worked.
    PLEASE read this topic again:
    https://www.ads-software.com/support/topic/no-support-for-child-themes?replies=30

    Again: I only made changes to the child theme!
    Update: Changes fucked up after update
    Now: I had to do a “dirty trick” – changes to the parent theme

    What i want: A save child theme solution without getting my changes overriden with the next update

    Hello,

    Please post all of your child theme contents of functions.php
    That way we will be able to replicate the issue you are facing and can solve the issue for you.

    regards.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Child Theme Issue again’ is closed to new replies.