Forum Replies Created
- AuthorPosts
Themonic-Support
KeymasterTry this:
1) Disable all plugins temporarily and then do your stuff and enable plugins again. One of the plugins might be causing this.
2) Custom home page can also be set by going to Dashboard -> setttings -> Reading
If you are using a old version use latest version of everything theme and plugins. Latest version of theme can be downloaded from https://themonic.com/member-login/
If you are using the latest version of everything and want us to check, email login info and site details to [email protected] with link to this thread.
Themonic-Support
KeymasterHi,
That must be a false positive, you can check the contents of ie.css in any text editor yourself. The location is themes/iconic-one-pro/css/ie.css in the current theme version.
It is referenced in header.php it is only meant for older ie versions.
.css files are harmless. It is the .js files you should worry about if malware scanner reports any.
It seems you are using a very old version of theme, please upgrade to the latest version of theme from the member area.
Upgrade guide and changelog available inside.Themonic-Support
KeymasterPlease share your website link and login details, email to [email protected]
Themonic-Support
KeymasterChangelog in the member area has been updated to reflect latest changes. Thanks.
Themonic-Support
KeymasterThe last thing we can try is:
Move the buddypress.php from page templates folder to theme root directory and edit the parent functions.php to reflect the changes like below. I think buddypress will look for buddypress.php in theme root directory only.
if ( is_page_template( 'page-templates/full-width.php' ) || is_page_template( 'buddypress.php' ) || is_attachment() || ! is_active_sidebar( 'themonic-sidebar' ) ) {
Themonic-Support
KeymasterHi,
There are two ways:
1)
Line 71 and 72 of functions.php
function themonic_excerpt_length( $length ) { return 58;
Only change the number 58 to a lower number and save.
2) If you don’t want to modify excerpts words via functions.php then try this plugin
the manual read more tag via the WP editor and other html will work even in excerpts now.
Themonic-Support
KeymasterPlease try on a test installation with parent theme. Also, check template name inside buddypress.php , should be different from full-width.php template name.
Themonic-Support
KeymasterLine 381 functions.php
if ( is_page_template( 'page-templates/full-width.php' ) || is_attachment() || ! is_active_sidebar( 'themonic-sidebar' ) ) {
make it like this
if ( is_page_template( 'page-templates/full-width.php' ) || is_page_template( 'page-templates/buddypress.php' ) || is_attachment() || ! is_active_sidebar( 'themonic-sidebar' ) ) {
This is when buddypress.php is in a page-templates folder. If it doesn’t work, try without child theme.
Themonic-Support
KeymasterExpected release date of next version is between 10-20th of September 2018.
September 2, 2018 at 12:16 pm in reply to: How to remove the site and e-mail fields from the WordPress comment form. #5298Themonic-Support
KeymasterIt will require custom work, charged extra, contact [email protected] with full requirements for quote.
- AuthorPosts