• Resolved Ziyouren

    (@ziyouren)


    hi there,

    i used your theme 1.5.6, and now i want to update to 1.5.7.
    but i have changed the file the functions.php.

    what shall i do ? update the theme and do not change the functions.php what i have edit? below is my code.

    $permalink = get_permalink($post->ID);
    					echo '<div class="related-thumb">' . "\n";
    					echo '<a href="' . $permalink . '" title="' . get_the_title() . '">' . "\n";
    					if (has_post_thumbnail()) {
    						the_post_thumbnail('thumbnail');
    					} else {
    						echo '<img src="' . get_template_directory_uri() . '/images/noimage_70x53.png' . '" alt="No Picture" />' . "\n";
    					}
    					echo '</a>' . "\n";
    					echo '<a href="' . $permalink . '" title="' . get_the_title() . '">' . "\n";
    					echo '<div class="related-thumb-title">' . get_the_title() . '</div>' . "\n";
    					echo '</a>' . "\n";
    					echo '</div>' . "\n";

    another when i use the plugin: Related Posts Thumbnails.
    there have some error on the single post bottom to show related post?
    and this plugin is ok to be used other themes.

    thanks,

Viewing 5 replies - 1 through 5 (of 5 total)
  • Michael

    (@mh-themes)

    Hello Ziyouren,

    if you update the theme and overwrite the old files with the new files, you will loose your changes and will have to do them again.

    It is recommended to always create a child theme first before you modify core theme files, otherwise you will always loose your changes after a theme update:

    https://codex.www.ads-software.com/Child_Themes

    But if you don’t use social buttons which are inserted in the slider, you don’t have to update anyway. This update only fixed a small issue with social buttons inside the slider caption.

    Regards
    Michael

    Thread Starter Ziyouren

    (@ziyouren)

    thanks for you reply so quikly.
    i have read how to creat child themes.
    and i added the MH child theme and actived the child theme.
    but the css has some error.

    /*
     Theme Name:     MH Magazine lit Child
     Theme URI:      https://www.mhthemes.com/
     Description:    MH Theme Css
     Author:         MH Theme
     Author URI:     https://www.mhthemes.com/
     Template:       mh-magazine-lite
     Version:        1.0.0
    */
    
    @import url("../mh-magazine-lite/style.css");
    
    /* =Theme customization starts here
    -------------------------------------------------------------- */
    .entry a:hover {
    	color: #ff519e;
    	text-decoration: none;
    	background-color: #ffe7ee;
    	border-bottom: 1px dotted #000000;}
    .entry img { margin-top:5px;}
    .entry .post-thumbnail { display:none;}
    Thread Starter Ziyouren

    (@ziyouren)

    Michael

    (@mh-themes)

    Hello Ziyouren,

    please note that we can’t provide support for theme customizations.

    We offer theme support if you have a question about the functionality of the theme, but we can’t customize your website for you, especially not for free.

    It is not possible to know what your issue is, just by reading a few lines of code…sorry.

    Regards
    Michael

    Thread Starter Ziyouren

    (@ziyouren)

    Oh, sorry.
    Any way i appreciate for you.
    Thanks a lot.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how to update?’ is closed to new replies.