Forum Replies Created
- AuthorPosts
Themonic-Support
KeymasterIt is recommended to create new thread for new/different questions. After question is answered by the support, threads are closed.
Themonic-Support
KeymasterHi,
line 72 of functions.php
return 58;
Decrease or increase that number as per requirement.
Themonic-Support
Keymaster1) 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.
Themonic-Support
KeymasterHi,
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
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 thumbnails5)
.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; }
Themonic-Support
KeymasterHi,
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; }
Themonic-Support
KeymasterHi,
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.
Themonic-Support
KeymasterCheck 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.
Themonic-Support
KeymasterHi,
The default comment display that come with theme
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.
Themonic-Support
KeymasterTest 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.
Themonic-Support
KeymasterYou 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.
- AuthorPosts