Forum Replies Created
- AuthorPosts
- September 1, 2018 at 3:30 pm in reply to: How to remove the site and e-mail fields from the WordPress comment form. #5296
Themonic-Support
KeymasterEasiest 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');
August 12, 2018 at 8:49 am in reply to: Iconic One Pro Theme- remove credit link and default widgets #5287Themonic-Support
KeymasterHi,
1) To remove credit link, Go to Theme Control Panel -> Footer and uncheck credit link, screenshot below
If you are new, please do check all the screenshots available on documentation page
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.
Themonic-Support
KeymasterPlease try by filling the Title field in Customizer.
Themonic-Support
KeymasterHi 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.
Themonic-Support
KeymasterThank you for updating the thread, I am glad you found the solution.
Themonic-Support
KeymasterHi,
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.
Themonic-Support
KeymasterDoes 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.
Themonic-Support
KeymasterHi, Your question is not clear, please explain and provide screenshots with markings on what you want to do?
Themonic-Support
KeymasterHi,
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.
Themonic-Support
KeymasterIt will require a lot of custom CSS which comes under custom work, to get quote email us at [email protected] with your complete requirement.
- AuthorPosts