alexperegrine
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blogmate] Traduzione Stringhe in ItalianoHello @vincenzocarcione ,
You can use Loco Translate plugin to translate those kind of strings. If you don’t found those strings in BlogMate theme try to translate parent theme Bloglo.
Thank you
Forum: Themes and Templates
In reply to: [Bloglo] How to get rid of the graphics?Hello @vocalexpress ,
You can change that background image from :
Customizing ? General Settings ? Base Colors ? Background ImageOr , Put below CSS into Additional CSS field of customizer to remove it.
html body {
background-image: none;
}Thank you
Forum: Themes and Templates
In reply to: [Blogmate] Search in topbarHello @marcushazelmcgown ,
Sorry for late reply.
The search icon in header is not linkable. It’s just toggle the Search form when click.
You can use Header Button to link to other post/page.Thank you
Forum: Themes and Templates
In reply to: [Bloglo] Editing page layoutHello @pesanze ,
Sorry for late reply.
What you asking is not possible. Photos is page while this one https://www.marco-rc-arena.com/category/photos/ is an archive template. Both are different.You can add element to the page like Photos from Gutenberg editor or using any page builders like Elementor. But there is no option to add elements of archive page like this one https://www.marco-rc-arena.com/category/photos/ ( unless you write custom code )
Thank you
Forum: Themes and Templates
In reply to: [BlogHash] Color Dark ModeHello @mcluna2k ,
Sorry for late reply.
Can you please be more specific? If possible provide screenshot of the changes you want.Thank you
Forum: Themes and Templates
In reply to: [BlogHash] Automate the Insertion of Focus KeywordHello @kotorce,
BlogHash is a classic theme. As per the tutorial, the file should be placed in the theme’s root directory, not within any sub-directory.
For future-proofing, I recommend creating a child theme to implement your changes. This way, your customization will remain intact even when the theme is updated.
Thank you!
Forum: Themes and Templates
In reply to: [BlogHash] Change Thumbnail SizeHello @isshmen ,
If you want to auto adjust the image container size according to the featured image size put below css into Additional CSS field of customizer:
@media only screen and (min-width: 869px) {
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-gallery,
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-thumb {
-ms-flex-preferred-size: auto;
flex-basis: auto;
max-width: 50%;
}
}And change the image resolution to 300×300 from the dropdown like shown in screenshot https://prnt.sc/c06kLyb7R4EE
If you want to hard-code the container size put below css rule into Additional CSS field of customizer:
@media only screen and (min-width: 869px) {
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-gallery,
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .bloghash-blog-entry-wrapper div.post-thumb {
-ms-flex-preferred-size: auto;
flex-basis: auto;
max-width: 300px;
max-height: 250px;
}
.bloghash-blog-horizontal .bloghash-article:not(.format-quote) .entry-media img {
min-height: 250px;
object-fit: cover;
}
}Thank you
Forum: Themes and Templates
In reply to: [BlogHash] Change Thumbnail SizeHello @isshmen ,
To change Post featured image size go to customizer >> Blog >> Blog page / Archive -> Featured Image Size and select it from the dropdown. See this screenshot for reference https://prnt.sc/c06kLyb7R4EE
Thank you
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