Themonic
Forum Replies Created
-
Theme doesn’t have any notification feature, please check other installed plugins.
to hide meta bar try this custom css
.below-title-meta { display: none; }Forum: Themes and Templates
In reply to: [Iconic One] how to show full posts on Category PagesYou could do that by removing the following
|| is_category()from line 44 in content.php, take backup of the file before modifying.
Forum: Themes and Templates
In reply to: [Iconic One] How to Hide Future ImageProvide screenshot of what you want to hide?
Forum: Themes and Templates
In reply to: [Iconic One] How to Hide Future ImagePlease refer the following image:
Forum: Themes and Templates
In reply to: [Iconic One] home page not working correctlyAlso double check your site address and WordPress address in WordPress settings, a mismatch there can also cause these issues.
Forum: Themes and Templates
In reply to: [Iconic One] home page not working correctlyHi
Please try the default Twenty Sixteen theme to rule out theme issues. If it is not a theme issue post here https://wordpress.org/support/forum/how-to-and-troubleshooting/
On the other note the type of issue you are facing could be simply fixed by clearing cookies and cache on your browser.
Forum: Themes and Templates
In reply to: [Iconic One] automatic up scrollYour question is not clear, free version doesn’t come with pagination as of now.
You could also use any pagination plugin.
- This reply was modified 9 years, 6 months ago by Themonic.
Forum: Themes and Templates
In reply to: [Iconic One] Show date and timePlease check out Customizer -> Post Settings and enable -> Show Date/Author
For pages, this option is not yet available, but it will be implemented in one of the upcoming version.
Forum: Reviews
In reply to: [Iconic One] Iconic One version 1.7.8 Crashed!!!This is the review section please keep it for theme review only, please contact us at support@themonic.com or create thread here https://wordpress.org/support/theme/iconic-one/ if you are facing any issue with the update and we will be more than happy to help you. Your issue seems to be with custom menu modification or there could also be plugin conflict, it is not possible to troubleshoot if you do not create a support topic with details.
On the official page https://wordpress.org/themes/iconic-one/ if you click on preview button it will load the latest theme version, that preview will crash too if there is an issue with the theme.
For Crash reporting you could also use our feedback form
Forum: Themes and Templates
In reply to: [Iconic One] Remove microformat hentry only in pagesIf you are asking how to use that function in theme, then paste the following at the bottom of function.php and assuming your function is correct it should work.
function remove_hentry( $classes ) { if ( is_page() ) { $classes = array_diff( $classes, array( 'hentry' ) ); } return $classes; } add_filter( 'post_class','remove_hentry' );Please take backup of function.php before trying this.
Forum: Themes and Templates
In reply to: [Iconic One] Unable to apply child theme to some css partsPlease provide a live link.
Alternatively, you can use also use https://wordpress.org/plugins/simple-custom-css/ if you are only modifying CSS, it also upgrade proof just like child theme.
Forum: Themes and Templates
In reply to: [Iconic One] How to display full blog posts on main page?Theme has inbuilt function for this, simply go to Live Customizer -> Post Settings to view available settings.
Forum: Themes and Templates
In reply to: [Iconic One] How to integrate social buttons in the header barThis type of customization will require custom work, you can email support@themonic.com for quote or you can upgrade to pro after which we would be able to provide such customization support.
Forum: Themes and Templates
In reply to: [Iconic One] Menu – long items are not wrapping to other rowUnfortunately, that kind of customization may require custom work, please contact support@themonic.com for quote. Or if you upgrade to Pro we may be able to provide such support for free.
Forum: Themes and Templates
In reply to: [Iconic One] Menu – long items are not wrapping to other rowYou have to use sub menus
https://codex.wordpress.org/WordPress_Menu_User_Guide#Creating_Multi-level_Menus
You could also try to reduce spacing between menu items, code for custom.css
.themonic-nav li a { padding: 0 10px; }