Themonic-Support

Forum Replies Created

Viewing 10 posts - 201 through 210 (of 1,486 total)
  • Author
    Posts
  • in reply to: How to set limit of text summary in homepage ? #5817

    It is recommended to create new thread for new/different questions. After question is answered by the support, threads are closed.

    in reply to: How to set limit of text summary in homepage ? #5815

    Hi,

    line 72 of functions.php

    
    return 58;

    Decrease or increase that number as per requirement.

    in reply to: How to custom theme ? #5812

    1) Require php modification
    2) Meta info from plugin?

    Both of the above comes under custom work and charged separately. To discuss contact us via contact form.

    3) To learn about child theme refer: https://developer.wordpress.org/themes/advanced-topics/child-themes/
    A sample starter child theme is already available in member area. For eg. if a file with same name is present in child theme, front end will load content of that file first rather than from parent theme.

    Child themes are for advanced users and can be used when you have a lot of php modifications, mostly if you are hiring a developer to customize a theme.

    in reply to: How to custom theme ? #5809

    Hi,

    All of the code below can be pasted in Customizer -> Additional CSS or style.css in child theme, child theme not necessary for this.

    1) Find alternative Google fonts for those and then follow

    Customization Guide for Iconic One Pro with CSS Codes

    Calibri font license is $129 https://www.fonts.com/font/microsoft-corporation/calibri/packages

    Eg. when fonts are included
    Refer: https://themonic.com/customization-guide-for-iconic-one-pro-with-css-codes/ and then replace sans-serif with your font name

    
    .entry-header .entry-title {
        font-family: sans-serif;
    }

    2)

    
    .read-more a {
        display: none;
    }

    3) Iconic One Pro Control Panel – > Main Settings -> Author ID

    4) Search functions.php for // Sets Index Page Thumbnails
    200, 140, true

    change to

    125, 125, true
    After that run the following plugin to generate fresh thumbnails

    Regenerate Thumbnails

    5)

    
    .single .category {
        display: none;
    }

    6) Refer: https://themonic.com/customization-guide-for-iconic-one-pro-with-css-codes/ and then replace sans-serif with your font name

    
    .entry-content {
        font-family: sans-serif;
    }

    7)

    
    .relatedcontent {
        font-family: sans-serif;
    }
    in reply to: Change the color of the body border #5805

    Hi,

    Try the following:

    
    .wrapper {
        border: 1px solid #ffb347;
    }
    .site-content {
        border-right: 1px solid #ffb347;
    }
    .site-header {
        border-left: 1px solid #ffb347;
        border-right: 1px solid #ffb347;
        border-top: 1px solid #ffb347;
    }
    in reply to: How to change font size? #5803

    Hi,

    1) Paste the following lines in Customizer -> Additional CSS

    
    .entry-content table {
        font-size: 16px;
    }

    2) Similarly

    
    .entry-content h2 {
        font-size: 24px;
    }
    .entry-content h3 {
        font-size: 20px;
    }

    Change px values as per the requirement.

    in reply to: Two title tags in code [Child Theme] #5799

    Check out the header.php of child theme and remove the title tag. In the latest version Title tag is now handled by WordPress.

    Cross check with the header.php of child theme and latest parent theme in the member area.

    in reply to: Comment link? #5792

    Hi,

    The default comment display that come with theme

    Super Clean Comments Demo. You will love it.

    Currently you are using Jetpack comment system.

    On single posts/single pages you will have “Leave a comment?” option in both the above comment system at the end of article.

    On Home page, posts are displayed as excerpts, when reader wants to read full article they will click on read more or Article title which lands them on Single post page which has option to leave comment at the end of article.

    If you want you replace “1 comment” with “Leave a comment!” on home page then code that is required to do that has been sent to your email.

    in reply to: how to fix this? #5788

    Test at https://search.google.com/test/mobile-friendly

    if it is ok then you have nothing to worry about, you can ignore “Content wider than screen” it is false positive.

    Refer: https://support.google.com/webmasters/thread/7694770

    If you are changing orientation of the page on mobile, horizontal to vertical then you have reload page for Google to serve ads again based on the current device width.

    Please send your URL for inspection if you have any further issues to [email protected] so we can have a look.

    in reply to: how to fix this? #5786

    You will have to empty mobile browser caching (history -> clear browsing -> cache) to see latest changes.

    for eg. in Chrome mobile you can also try in the incognito window, it should show the latest changes.

Viewing 10 posts - 201 through 210 (of 1,486 total)