monkey-themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Smallblog] How not to display date, author category etcHi,
If I understand correctly you want to remove the bar information of Posts (.info-bar).
Go to Appearance > Editor, find content-infobar.php from the Template parts.
Commenting the file code /* … */ —-> (from line 7 to line 32)/* if ( 'post' == get_post_type() ) : ?>...<?php endif; */ ?>I hope I have been helpful
Forum: Themes and Templates
In reply to: [Smallblog] Fatal error: ods_setup.phpHey, you were right to comment on that piece of script. I’ll fix quickly to update the code.
Thank youForum: Themes and Templates
In reply to: [Smallblog] Is bbPress forum supported?π
Forum: Themes and Templates
In reply to: [Smallblog] My logo shrunk when I updated themeHello,
the image must have these measurement, width: 145px height: 40px.
If you want a retina image you have to double the measurement, so will be 290×80 pixels.Forum: Themes and Templates
In reply to: [Smallblog] Full content view in front page?π
Forum: Themes and Templates
In reply to: [Smallblog] Part 2 – Non-responsive headerSolved into the new version. Please update the theme.
Forum: Themes and Templates
In reply to: [Smallblog] ExcerptsSolved into the new version. Please update the theme.
Forum: Themes and Templates
In reply to: [Smallblog] embed problemSolved into the new version. Please update the theme.
Forum: Themes and Templates
In reply to: [Smallblog] Is bbPress forum supported?I’ve a solution of your problem.
Go to Appearance > Editor, find content-page.php from the Template.
Find the following lines:<?php if ( is_page() ) : ?> <?php the_content(); ?> <?php else: ?> <?php the_excerpt(); ?> <?php endif; ?>Replace the above line with the following:
<?php if ( function_exists( 'is_bbpress' ) ): ?> <?php if ( is_bbpress() ): ?> <?php the_content(); ?> <?php endif; ?> <?php else: ?> <?php if ( is_page() ) : ?> <?php the_content(); ?> <?php else: ?> <?php the_excerpt(); ?> <?php endif; ?> <?php endif; ?>Forum: Themes and Templates
In reply to: [Smallblog] Is bbPress forum supported?bbPress is not yet supported.
I’m working for it, and will be soon in the version 1.5.8.Forum: Themes and Templates
In reply to: [Smallblog] Full content view in front page?If you want to see a single page go to here:
BACKEND > Appearance > Customize > Static Front Page >
In Front page displays selects a static page.
———————————
If you want to change the list, go to Appearance > Editor, find Content.php from the Template.
Find the following line
<?php echo wp_filter_nohtml_kses( get_the_excerpt() ); ?>
Replace the above line with the following
<?php echo wp_filter_nohtml_kses( get_the_content() ); ?>
—————————–
With HTML content, replace so.
Find the following lines<?php if ( is_single() ) : ?> <?php the_content(); ?> <?php else: ?> <?php echo wp_filter_nohtml_kses( get_the_excerpt() ); ?> <?php endif; ?>Remove the above lines and replace with the following
<?php the_content(); ?>Forum: Themes and Templates
In reply to: [Smallblog] ExcerptsSorry for the long wait.
Currently there is no option as that, this option is now of works.
Will be available in the next version 1.5.7.Forum: Themes and Templates
In reply to: [Smallblog] Part 2 – Non-responsive headerI have updated the theme to version 1.5.6. I think I’ve solved all the problems.
In your site I see that the mobile version does not charge the right style.The ticket of the new version can be found here: https://themes.trac.wordpress.org/ticket/30736
ps .: I do not know when it will be approved, I hope as soon as possible.
Forum: Themes and Templates
In reply to: [Smallblog] embed problemFor now I show you what you can do to fix the problem.
Go into the file: smallblog/js/global.js
Remove from line 155 to 167 the script (Video wrap content).Now go into the file: smallblog/css/style.min.css
Write here this script: .the-content p iframe {width: 100%; }Forum: Themes and Templates
In reply to: [Smallblog] embed problemHi,
we will solve the problem as soon as possible and let you know.