• I am trying to change the footer credit text. But I can’t find the text anywhere in the back-end files.

    I can see different content in footer file.

    Plz check the following code.

    \wp-content\themes\dt-the7\template-parts\footer\bottom-bar.php

    <!-- !Bottom-bar -->
    <div id="bottom-bar" <?php echo presscore_bottom_bar_class(); ?> role="contentinfo">
        <div class="wf-wrap">
            <div class="wf-container-bottom">
    
    			<?php
    			$logo = presscore_get_the_bottom_bar_logo();
    			if ( $logo ) {
    				echo '<div id="branding-bottom">';
    				presscore_display_the_logo( $logo );
    				echo '</div>';
    			}
    
    			do_action( 'presscore_credits' );
    
    			$config     = presscore_config();
    			$copyrights = $config->get( 'template.bottom_bar.copyrights' );
    			$credits    = $config->get( 'template.bottom_bar.credits' );
    
    			if ( $copyrights || $credits ) : ?>
    
                    <div class="wf-float-left">
    
    					<?php
    					echo do_shortcode( $copyrights );
    
    					if ( $credits ) {
    						echo '&nbsp;Dream-Theme &mdash; truly <a href="https://dream-theme.com" target="_blank">premium WordPress themes</a>';
    					}
    					?>
    
                    </div>
    
    			<?php endif; ?>
    
                <div class="wf-float-right">
    
    				<?php
    				$extended_menu = new The7_Extended_Microwidgets_Menu();
    				$extended_menu->add_hooks();
    
    				presscore_nav_menu_list(
    					'bottom',
    					array(
    						'submenu_class' => implode( ' ', presscore_get_primary_submenu_class( 'footer-sub-nav' ) ),
    					)
    				);
    
    				$extended_menu->remove_hooks();
    
    				$bottom_text = $config->get( 'template.bottom_bar.text' );
    				if ( $bottom_text ) {
    					echo '<div class="bottom-text-block">' . do_shortcode( shortcode_unautop( wpautop( $bottom_text ) ) ) . '</div>';
    				}
    				?>
    
                </div>
    
            </div><!-- .wf-container-bottom -->
        </div><!-- .wf-wrap -->
    </div><!-- #bottom-bar -->

    Looking forward for a solution.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Can’t find the footer cotent file in ftp to change the text.’ is closed to new replies.