• Resolved tmbhumiasri

    (@tmbhumiasri)


    I love the featured image fuction in wordpress, but I have a little problem with Enigma theme. No matter what resolution or size that I choose for my image, it always looks pixellate and not good in desktop / pc. Can you help me solve this problem?

    What size / resolution should I choose?
    Do I need to edit the script to get the best look for PC and Desktop?

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

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter tmbhumiasri

    (@tmbhumiasri)

    I’m also finding troubles when translating the web into another language, I am using polylang. It seems the Strings translations are not complete, I can’t edit some of the sliders content and the button ‘read more’.

    Polylang can find the slide_title_1 and slide_title_3 but not slide_title_2.
    It can’t find the slide contents too.

    Hello tmbhumiasri,

    Go to Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> paste the below CSS in Custom CSS box and save –

    .enigma_blog_full .enigma_img_responsive {
        width: auto !important;
        height: auto !important;
    }

    No go to enigma theme directory -> open home-slideshow.php file and see line no. 37 –

    <li class="animated bounceInLeft"><?php echo get_theme_mod('slide_desc_'.$i , $wl_theme_options['slide_desc_'.$i])); ?></li>

    replace it with below code and save the file –

    <li class="animated bounceInLeft"><?php _e(get_theme_mod('slide_desc_'.$i , $wl_theme_options['slide_desc_'.$i]),'enigma'); ?></li>

    Thanks.

    Thread Starter tmbhumiasri

    (@tmbhumiasri)

    thanks for the answer, the image is looking better now, but how to make the picture centered? Can I put the code
    vertical-align: middle;
    Or should I use another script?

    and I still have problem with Polylang, I still can’t find it in Strings translations, for the slider and for the services.

    Hello tmbhumiasri,

    paste the below css in Custom CSS box and save –

    @media(min-width:1200px){
    .enigma_blog_full .enigma_blog-img img {
        padding-left: 18%;
    }
    }

    No go to enigma theme directory -> open home-slideshow.php file and see line no. 37 –

    replace the code with below code –

    <li class="animated bounceInLeft"><?php _e(get_theme_mod('slide_desc_'.$i , $wl_theme_options['slide_desc_'.$i]),'enigma'); ?></li>

    open home-services.php file and see line no. 23 –

    <?php if($wl_theme_options['service_'.$i.'_text'] !='') { ?><p><?php echo get_theme_mod('service_'.$i.'_text' , $wl_theme_options['service_'.$i.'_text']); ?><?php } ?></p>

    replace it with below code and save the file –

    <?php if($wl_theme_options['service_'.$i.'_text'] !='') { ?><p><?php _e(get_theme_mod('service_'.$i.'_text' , $wl_theme_options['service_'.$i.'_text']),'enigma'); ?><?php } ?></p>

    Thanks.

    Thread Starter tmbhumiasri

    (@tmbhumiasri)

    Okay the featured image is lookin good right now. You solved it.

    I have changed the codes but I still have no luck in PolyLang for both slideshow and services.

    I can’t find it in Strings translations. Can you help me and tell me what to do next?

    Hello tmbhumiasri,

    go to enigma theme directory -> open the home-slideshow.php file and see line no. 37 –

    replace the code with below code –

    <li class="animated bounceInLeft"><?php echo __(get_theme_mod('slide_desc_'.$i , $wl_theme_options['slide_desc_'.$i]),'enigma'); ?></li>

    now open home-services.php file and see line no. 23 and replace the code with below code and save the file –

    <?php if($wl_theme_options['service_'.$i.'_text'] !='') { ?><p><?php echo __(get_theme_mod('service_'.$i.'_text' , $wl_theme_options['service_'.$i.'_text']),'enigma'); ?><?php } ?></p>

    Thanks.

    Thread Starter tmbhumiasri

    (@tmbhumiasri)

    No good news guys, Still can’t find it in Strings translations.
    Do you ever find this kind of problem before?

    This work perfectly for us.

    Thanks.

    Thread Starter tmbhumiasri

    (@tmbhumiasri)

    Thank you team, I guess I will try another method to patch my website.
    I really appreciate your helps.

    Thanks You very much
    TMB

    Thread Starter tmbhumiasri

    (@tmbhumiasri)

    For anyone who have/ found the same problem like me about the polylang, I heard in polylang discussion board that the problem solved if you buy the polylang pro, but sadly there’s no answer to my question from the polylang dev, so there’s no guarantee if it would solve my problem or not.

    I choose to drop the polylang and build multisite instead.

    • This reply was modified 7 years, 3 months ago by tmbhumiasri.

    Your Welcome,

    Let us know for further query.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Featured Image Size’ is closed to new replies.