Themonic-Support

Forum Replies Created

Viewing 10 posts - 321 through 330 (of 1,486 total)
  • Author
    Posts
  • Easiest way:

    Paste this custom CSS in live customizer Additional CSS section

    
    .comment-form-email, .comment-form-url {
        display: none;
    }

    Also visit Settings > Discussion > Other Comment Settings to check if comments are allowed without providing email.

    Another way, removal from source code using a filter:

    Paste the following code in functions.php of Iconic One Pro at the bottom:

    
    function iop_custom_comment_form($fields) {
        if(isset($fields['email'])) unset($fields['email']);
    	if(isset($fields['url'])) unset($fields['url']);
        return $fields;
    }
    add_filter('comment_form_default_fields', 'iop_custom_comment_form');

    Hi,

    1) To remove credit link, Go to Theme Control Panel -> Footer and uncheck credit link, screenshot below

    remove footer link in iconic one

    If you are new, please do check all the screenshots available on documentation page

    Online Documentation & Usage Guide for Iconic One PRO

    2) Those are the default widgets, they will disappear once you drop any widget in the sidebar. Only the widgets that you drop in the sidebar (Dashboard -> Appearance -> Widgets) will appear in sidebar.

    https://codex.wordpress.org/WordPress_Widgets

    in reply to: Alt Tag in Logo Image #5284

    Please try by filling the Title field in Customizer.

    in reply to: No Content in Post after upgrade to WP 4.9.8 #5283

    Hi Antonio,

    Please check after disabling all plugins and then reverting to default theme like Twenty Seventeen, if still posts are appearing without content it means your issue is not dependent on theme. Let us know how it goes for further troubleshooting.

    in reply to: Favicon using http instead of https. How do I fix this? #5279

    Thank you for updating the thread, I am glad you found the solution.

    in reply to: Change Linkedin logo/image to Instagram #5276

    Hi,

    Upcoming theme update within 2-4 days will have Instagram support.

    It will require custom work which is charged a small amount extra, contact [email protected] with all the work required for quote.

    If you want to do this yourself (theme version 2.2 and logo is being used):

    First do a backup. After line 48 in header.php, create a new div element and inside it copy line 55(logo text title) and 56(Description text). Later style them in CSS.

    in reply to: URLs #5272

    Does all those pages have ?cat=-1 in the end? this means category with Id 1 is being filtered for that specific page. It is not being done by the theme.

    Are you using any category filter/permalink plugins? If you are then try asking their respective support channels.

    Also, please remove your redirect and check the following

    1) mywebsite.com/page/221/ if this opens a specific page on your site then

    2) mywebsite.com/page/221/?cat=-1 do not redirect this page to your home page, redirect it to the page that open in 1). In the current state you might be redirecting all your pages to your home page.

    in reply to: URLs #5270

    Hi, Your question is not clear, please explain and provide screenshots with markings on what you want to do?

    in reply to: How to Responsitve theme of my website #5252

    Hi,

    All the changes you have made regarding width, you have to also add them under the media queries and change the container width to 100% or as per the requirement.

    For eg. Try this in custom css

    
    @media screen and (max-width: 768px) {
    .site-content {
     width: 100%;
     }
     .widget-area {
     width: 100%;
     }
    }

    Please note that free support only covers setting up as the demo.

    Support on modified sites can also be provided but it will be charged small amount extra to cover support time, to request custom modification support email [email protected] with all required changes to get quote.

    in reply to: Dark Mode #5244

    It will require a lot of custom CSS which comes under custom work, to get quote email us at [email protected] with your complete requirement.

Viewing 10 posts - 321 through 330 (of 1,486 total)