alexperegrine
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blogvi] Randomizer at Posts You Might Like SectionHello @belongplay ,
Glad you liked our theme.
Sorry the feature you asked is not available in lite version.
Let us know if you have any questions.Thank you
Forum: Themes and Templates
In reply to: [Blogvi] Excepts Only.. No full post?Hello @wordpquest ,
Sorry for the late reply.
There is not option to show full content on post list. You can show full content by customizing theme core files but it’s not a good idea because your changes would be lost whenever you will update the Blogvi theme.
Copy this file from parent theme /bloglo/template-parts/entry/entry-summary.php and paste it in child theme /blogvi/template-parts/entry/ directory ( create directories they are not exist already )
Now open the file /blogvi/template-parts/entry/entry-summary.php and look for the below line of code:
bloglo_excerpt();
and replace above code with this:
the_content();
Save the file.
Note that if you update your theme in future this changes would be lost and you will have to do it all again.
Thank you
Forum: Themes and Templates
In reply to: [Blogmate] Social Media IconsHello @marcushazelmcgown ,
We have added those social media icons in the theme. Please update **Bloglo** the parent theme to the latest version.
Thank you
Forum: Themes and Templates
In reply to: [Bloglo] Font sizes in categoryHello @victoriawinner ,
I’m not sure what you want.
If you just want to adjust the font-size of those headings I can provide you some CSS to achieve that.// For H1
#page .page-header .page-title{
font-size: 3.2rem !important;
}
// For H2
#page .page-header h2{
font-size: 2rem;
}Put above CSS rules inside Additional CSS field of customizer.
Thank you
Forum: Themes and Templates
In reply to: [BlogHash] How do I remove “Last updated on” in an article post?Can you provide your site URL? That CSS hide it completely from all screen size.
Forum: Themes and Templates
In reply to: [BlogHash] How do I remove “Last updated on” in an article post?Put below CSS in Additional CSS field of customizer:
.single .entry-footer .last-updated {
display: none;
}Forum: Themes and Templates
In reply to: [Blogvi] Top Bar is not displayed on mobileHello @dimendia ,
Please update parent theme Bloglo to the latest version. This will fix your issue.
Thank you
Forum: Themes and Templates
In reply to: [BlogHash] How do I remove “Last updated on” in an article post?Please share link to the article where “Last updated on” appear.
Forum: Themes and Templates
In reply to: [Blogmate] Social Media links (Top of Theme) DisappearedHello @marcushazelmcgown ,
I can see the social media icons in header on your website. I guess you fixed the issue.
Thank you
Forum: Themes and Templates
In reply to: [BlogHash] Article Font SizeHello @shoot2 ,
BlogHash Lite doesn’t have option to change typography of single post. However I can provide you the CSS to achieve this. Put below CSS rule in Additional CSS field of customizer.
.single-post .entry-content {
font-size: 2.3rem;
}Adjust the font-size according to your need.
Thank you
Forum: Themes and Templates
In reply to: [BlogHash] Social network sharing buttonsHello @lakatana
We don’t have any plugins. But you can try searching on Wp.org
You can change comment form behavior from Settings >> Discussion . See this thread
Thank you
Forum: Themes and Templates
In reply to: [Bloglo] Font sizes in categoryHello @victoriawinner ,
There is nothing to be fixed here.
Lite theme doesn’t have typography options for headings (h1-h6).
The title (h1) font-size in breadcrumbs section ( on archive page like category ) is set to 2.6rem.
Similarly other heading are set according to theme style e.g. h2 are set to 2.2remThank you
Forum: Themes and Templates
In reply to: [Bloglo] problem with adding a videoHello @victoriawinner ,
You are using Bloglo v-1.1.9 please update your theme to the latest version v-1.1.12
Thank you
Forum: Themes and Templates
In reply to: [Blogmate] List didn’t works properly in PageTry putting below CSS in Additional CSS field of customizer:
.page .bloglo-entry ol,
.page .bloglo-entry ul {
list-style: disc;
margin-left: 4rem;
margin-bottom: 2rem;
margin-top: 2rem;
}
.page .bloglo-entry>:first-child {
margin-top: 0;
}
.page .bloglo-entry>:last-child {
margin-bottom: 0;
}Forum: Themes and Templates
In reply to: [Blogmate] List didn’t works properly in PageHello @minhh2792 ,
I just checked BlogMate theme by putting nested under order list inside classic Gutenberg block and confirm that it’s working properly. See screenshot https://prnt.sc/mAgeVRq7H-Nr
Make sure you have put the list in correct format like:
<ul>
<li>Fruits
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Orange
<ul>
<li>Naval</li>
<li>Blood</li>
</ul>
</li>
</ul>
</li>
<li>Vegetables
<ul>
<li>Carrot</li>
<li>Broccoli</li>
<li>Spinach</li>
</ul>
</li>
<li>Grains
<ul>
<li>Rice</li>
<li>Wheat</li>
<li>Quinoa</li>
</ul>
</li>
</ul>If you have put the list in correct format and it still not showing properly please share your site URL ( where you use this list ) We’ll check it.
Thank you